XDoclet Runtime

org.eclipse.jst.j2ee.ejb.annotations.xdoclet.xdocletRuntime

This extension point is part of an interim API that is still under development and expected to change significantly before reaching stability. It is being made available at this early stage to solicit feedback from pioneering adopters on the understanding that any code that uses this API will almost certainly be broken (repeatedly) as the API evolves.

xDocletRuntime Extension allows us to add new xdoclet runtimes as extensions. For example to add XDoclet 2 support we will only need to define an extension.

<!ELEMENT extension (RuntimeVersion , RuntimeLib+)>

<!ATTLIST extension

point CDATA #REQUIRED

id    CDATA #IMPLIED

name  CDATA #IMPLIED>


<!ELEMENT RuntimeVersion EMPTY>

<!ATTLIST RuntimeVersion

xdoclet CDATA #IMPLIED

ejb     CDATA #IMPLIED

servlet CDATA #IMPLIED

jsp     CDATA #IMPLIED>


<!ELEMENT RuntimeLib EMPTY>

<!ATTLIST RuntimeLib

name     CDATA #IMPLIED

location CDATA #IMPLIED>


   

<extension id=

"org.eclipse.jst.j2ee.xdoclet.xdocletRuntime.121"

name=

"%xdoclet.121"

point=

"org.eclipse.jst.j2ee.ejb.annotations.xdoclet.xdocletRuntime"

>

<RuntimeVersion ejb=

"2.0"

jsp=

"1.1"

servlet=

"2.3"

xdoclet=

"1.2.1"

/>

<RuntimeLib location=

"xdoclet-1.2.1.jar"

name=

"xdoclet-1.2.1.jar"

/>

<RuntimeLib location=

"xjavadoc-1.0.3.jar"

name=

"xjavadoc-1.0.3.jar"

/>

</extension>

org.eclipse.jst.j2ee.ejb.annotations.xdoclet.runtime plugin