Classpath Container Initializers

Identifier:
org.eclipse.jdt.core.classpathContainerInitializer

Since:
2.0

Description:
This extension point allows clients to contribute custom classpath container initializers, which are used to lazily bind classpath containers to instances of org.eclipse.jdt.core.IClasspathContainer.

Configuration Markup:

<!ELEMENT extension (classpathContainerInitializer*)>

<!ATTLIST extension

point CDATA #REQUIRED

id    CDATA #IMPLIED

name  CDATA #IMPLIED>


<!ELEMENT classpathContainerInitializer EMPTY>

<!ATTLIST classpathContainerInitializer

id    CDATA #REQUIRED

class CDATA #REQUIRED>


Examples:
Example of a declaration of a ClasspathContainerInitializer for a classpath container named "JDK":
                                                                       
<extension point="org.eclipse.jdt.core.classpathContainerInitializer">            
   <classpathContainerInitializer                                          
      id="JDK"                                                        
      class="com.example.MyInitializer"/>                           
</extension>


Copyright (c) 2000, 2004 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