Ambienti di esecuzione

org.eclipse.jdt.launching.executionEnvironments

3.2

Constente di aggiungere ambienti di esecuzione e analizzatori degli ambienti di esecuzione. Un ambiente di esecuzione rappresenta un tipo di JRE, ad esempio J2SE5. Gli analizzatori vengono aggiunti per categorizzare JRE in base agli ambienti.

<!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>


<!ELEMENT analyzer EMPTY>

<!ATTLIST analyzer

id    CDATA #REQUIRED

class CDATA #REQUIRED>


Following is an example definition of an execution environment and analyzer.

<extension point=

"org.eclipse.jdt.launching.executionEnvironments"

>

<environment id=

"J2SE-1.4"

description=

"Java 2 Platform, Standard Edition 1.4"

/>

<analyzer class=

"com.example.ExecutionEnvironmentAnalyzer"

id=

"com.example.eeAnalyzer"

/>

</extension>

PDE (org.eclispe.pde.core) provides definitions and an analyzer for the following execution environments: