Interface ICConfigExtensionReference
-
public interface ICConfigExtensionReferenceHolds executable extension information in the project configuration. Like ICExtensionReference but has knowledge of its ICConfigurationDescription deprecated-@see ICExtensionReference
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ICConfigurationDescriptiongetConfiguration()Returns the project descriptor which this extension reference belongs to.java.lang.StringgetExtensionData(java.lang.String key)Gets a value of the key from the .cdtproject file set by setExtensionData()java.lang.StringgetExtensionPoint()Return the extension point of this reference.java.lang.StringgetID()Return the extension ID of this reference.voidsetExtensionData(java.lang.String key, java.lang.String value)Sets a name/value data pair on this reference in the .cdtproject file
-
-
-
Method Detail
-
getExtensionPoint
java.lang.String getExtensionPoint()
Return the extension point of this reference.- Returns:
- String
-
getID
java.lang.String getID()
Return the extension ID of this reference.- Returns:
- String
-
setExtensionData
void setExtensionData(java.lang.String key, java.lang.String value) throws org.eclipse.core.runtime.CoreExceptionSets a name/value data pair on this reference in the .cdtproject file- Throws:
org.eclipse.core.runtime.CoreException
-
getExtensionData
java.lang.String getExtensionData(java.lang.String key)
Gets a value of the key from the .cdtproject file set by setExtensionData()
-
getConfiguration
ICConfigurationDescription getConfiguration()
Returns the project descriptor which this extension reference belongs to.- Returns:
- the
ICConfigurationDescription
-
-