1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-09 18:15:23 +02:00

[166339] deprecating getVendorAttributes and setVendorAttributes

This commit is contained in:
David Dykstal 2007-04-05 02:32:10 +00:00
parent 8c8e37df5c
commit c1fd138673
2 changed files with 6 additions and 1 deletions

View file

@ -24,6 +24,7 @@ import org.eclipse.rse.core.filters.ISystemFilterPoolReferenceManagerProvider;
import org.eclipse.rse.core.filters.ISystemFilterReference; import org.eclipse.rse.core.filters.ISystemFilterReference;
import org.eclipse.rse.core.filters.ISystemFilterString; import org.eclipse.rse.core.filters.ISystemFilterString;
import org.eclipse.rse.core.model.IHost; 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.IRSECallback;
import org.eclipse.rse.core.model.IRSEModelObject; import org.eclipse.rse.core.model.IRSEModelObject;
import org.eclipse.rse.core.model.IRSEPersistableContainer; import org.eclipse.rse.core.model.IRSEPersistableContainer;
@ -158,6 +159,8 @@ public interface ISubSystem extends ISystemFilterPoolReferenceManagerProvider, I
* <li>Three equals signs ("===") * <li>Three equals signs ("===")
* <li>Three semicolons (";;;") * <li>Three semicolons (";;;")
* </ul> * </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); 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. * <li>Attribute name. The name of the attribute whose value is being queried.
* </ul> * </ul>
* @return value of the attribute being queried, or null if not found * @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); public String getVendorAttribute(String vendorName, String attributeName);

View file

@ -75,7 +75,7 @@ public abstract class ServerLauncher extends RSEModelObject implements IServerLa
} }
/** /**
* @deprecated * @deprecated use property sets
* @param vendorName * @param vendorName
* @param attributeName * @param attributeName
* @param attributeValue * @param attributeValue