Package org.eclipse.pde.core.plugin
Interface IPluginAttribute
- 
- All Superinterfaces:
- IAdaptable,- IPluginObject,- IWritable
 
 public interface IPluginAttribute extends IPluginObject An attribute of XML elements found in the plug-in.- Restriction:
- This interface is not intended to be implemented by clients.
- Restriction:
- This interface is not intended to be extended by clients.
 
- 
- 
Field SummaryFields Modifier and Type Field Description static StringP_VALUEThis property will be used to notify that the value of the attribute has changed.- 
Fields inherited from interface org.eclipse.pde.core.plugin.IPluginObjectP_NAME
 
- 
 - 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetValue()Returns the value of this attribute.voidsetValue(String value)Sets the value of this attribute.- 
Methods inherited from interface org.eclipse.core.runtime.IAdaptablegetAdapter
 - 
Methods inherited from interface org.eclipse.pde.core.plugin.IPluginObjectgetModel, getName, getParent, getPluginBase, getPluginModel, getResourceString, getTranslatedName, isInTheModel, isValid, setInTheModel, setName
 
- 
 
- 
- 
- 
Field Detail- 
P_VALUEstatic final String P_VALUE This property will be used to notify that the value of the attribute has changed.- See Also:
- Constant Field Values
 
 
- 
 - 
Method Detail- 
getValueString getValue() Returns the value of this attribute.- Returns:
- the string value of the attribute
 
 - 
setValuevoid setValue(String value) throws CoreException Sets the value of this attribute. This method will throw a CoreExeption if the model is not editable.- Parameters:
- value- the new attribute value
- Throws:
- CoreException- if the model is not editable
 
 
- 
 
-