Classpath Attribute Configuration

org.eclipse.jdt.ui.classpathAttributeConfiguration

3.3

This extension point allows to specify how contributed classpath attributes are presented and configured.

<!ELEMENT extension (classpathAttributeConfiguration+)>

<!ATTLIST extension

point CDATA #REQUIRED

id    CDATA #IMPLIED

name  CDATA #IMPLIED>


<!ELEMENT classpathAttributeConfiguration EMPTY>

<!ATTLIST classpathAttributeConfiguration

attributeName CDATA #REQUIRED

class         CDATA #REQUIRED>


The following is an example of a classpath entry container page:

 

<extension point=

"org.eclipse.jdt.ui.classpathAttributeConfiguration"

>

<classpathAttributeConfiguration key=

"com.example.myplugin.myClasspathAttributeKey"

name=

"Test property"

class=

"com.example.MyAttributeConfiguration"

>

</classpathAttributeConfiguration>

</extension>