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

runtimeClasspathEntryId 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, 2005 IBM Corporation and others.
This program and the accompanying materials are made available under the terms of the Eclipse Public License 2.0 which accompanies this distribution, and is available at https://www.eclipse.org/legal/epl-v20.html/ SPDX-License-Identifier: EPL-2.0