Execution Environments
Identifier:
org.eclipse.jdt.launching.executionEnvironments
Since:
3.2
Description:
Allows execution environments and execution environment analyzers to be contributed. An execution environment represents a kind of JRE - for example J2SE5. Analyzers are contributed to categorize JREs according to environments.
Configuration Markup:
<!ELEMENT extension (environment* , analyzer*)>
<!ATTLIST extension
point CDATA #REQUIRED
id CDATA #IMPLIED
name CDATA #IMPLIED>
<!ELEMENT environment EMPTY>
<!ATTLIST environment
id CDATA #REQUIRED
description CDATA #IMPLIED>
- id - a unique identifier for this execution environment that is presented to the user - for example, "J2SE-1.4".
- description - a brief human-readable description of this execution environment
<!ELEMENT analyzer EMPTY>
<!ATTLIST analyzer
id CDATA #REQUIRED
class CDATA #REQUIRED>
- id - a unique identifier for this execution environment analyzer
- class - a fully qualified name of a Java class that implements
org.eclipse.jdt.launching.environments.IExecutionEnvironmentAnalyzer
Examples:
[Enter extension point usage example here.]
API Information:
[Enter API information here.]
Supplied Implementation:
[Enter information about supplied implementation of this extension point.]