Java Runtime Classpath Entry Resolvers

Identifier: org.eclipse.jdt.launching.runtimeClasspathEntryResolvers

Description: This extension point allows clients to dynamically resolve entries used on the runtime classpath and source lookup path, for corresponding classpath variables and classpath containers.

Configuration Markup:

   <!ELEMENT extension (runtimeClasspathEntryResolver*)>

   <!ATTLIST extension
     point CDATA #REQUIRED
     id    CDATA #IMPLIED
     name  CDATA #IMPLIED
   >

   <!ELEMENT runtimeClasspathEntryResolver EMPTY>

   <!ATTLIST runtimeClasspathEntryResolver
     id        CDATA #REQUIRED
     class     CDATA #REQUIRED
     variable  CDATA #IMPLIED
     container CDATA #IMPLIED
   >

Examples: The following is an example of a resolver:

 <extension point="org.eclipse.jdt.launching.runtimeClasspathEntryResolvers">
  <runtimeClasspathEntryResolver
   class="com.example.ResolverImplementation"
   id="com.example.ResolverId"
   variable="CLASSPATH_VARIABLE">
  </runtimeClasspathEntryResolver>
 </extension>

Supplied Implementation: Implementations are provided for the standard JRE_LIB classpath variable and JRE_CONTAINER classpath container.

Copyright (c) 2000, 2003 IBM Corporation and others. All Rights Reserved.