mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-02 06:35:28 +02:00
[166339] deprecating getVendorAttributes and setVendorAttributes
This commit is contained in:
parent
8c8e37df5c
commit
c1fd138673
2 changed files with 6 additions and 1 deletions
|
@ -24,6 +24,7 @@ import org.eclipse.rse.core.filters.ISystemFilterPoolReferenceManagerProvider;
|
|||
import org.eclipse.rse.core.filters.ISystemFilterReference;
|
||||
import org.eclipse.rse.core.filters.ISystemFilterString;
|
||||
import org.eclipse.rse.core.model.IHost;
|
||||
import org.eclipse.rse.core.model.IPropertySet;
|
||||
import org.eclipse.rse.core.model.IRSECallback;
|
||||
import org.eclipse.rse.core.model.IRSEModelObject;
|
||||
import org.eclipse.rse.core.model.IRSEPersistableContainer;
|
||||
|
@ -158,6 +159,8 @@ public interface ISubSystem extends ISystemFilterPoolReferenceManagerProvider, I
|
|||
* <li>Three equals signs ("===")
|
||||
* <li>Three semicolons (";;;")
|
||||
* </ul>
|
||||
* @deprecated Subsystems can now take named property sets. These should be used instead.
|
||||
* See {@link IPropertySet}
|
||||
*/
|
||||
public void setVendorAttribute(String vendorName, String attributeName, String attributeValue);
|
||||
|
||||
|
@ -171,6 +174,8 @@ public interface ISubSystem extends ISystemFilterPoolReferenceManagerProvider, I
|
|||
* <li>Attribute name. The name of the attribute whose value is being queried.
|
||||
* </ul>
|
||||
* @return value of the attribute being queried, or null if not found
|
||||
* @deprecated Subsystems can now take named property sets. These should be used instead.
|
||||
* See {@link IPropertySet}
|
||||
*/
|
||||
public String getVendorAttribute(String vendorName, String attributeName);
|
||||
|
||||
|
|
|
@ -75,7 +75,7 @@ public abstract class ServerLauncher extends RSEModelObject implements IServerLa
|
|||
}
|
||||
|
||||
/**
|
||||
* @deprecated
|
||||
* @deprecated use property sets
|
||||
* @param vendorName
|
||||
* @param attributeName
|
||||
* @param attributeValue
|
||||
|
|
Loading…
Add table
Reference in a new issue