Classpath Container Page

Identifier: org.eclipse.jdt.ui.classpathContainerPage

Description: This extension point allows to add UI to the libraries tab of Java build path setting page to create or edit a classpath container. The extension point defines UI for an already in JDT core defined classpath container.

Configuration Markup:

   <!ELEMENT classpathContainerPage EMPTY>
   <!ATTLIST classpathContainerPage
      id     CDATA #IMPLIED
      name   CDATA #IMPLIED
      class  CDATA #IMPLIED
   >

Examples:

The following is an example of a classpath container page:

   <extension point="org.eclipse.jdt.ui.classpathContainerPage">
      <classpathContainerPage
         id="com.example.jre.classpathContainer"
         name="JRE System Libraries"
         class="com.example.NewJDKEntryPage"
      </classpathContainerPage>
   </extension>


 Copyright IBM Corporation 2000, 2002. All Rights Reserved.