XDoclet Runtime

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

Since:
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.

Description:
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.

Configuration Markup:

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


Examples:

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

Supplied Implementation:
org.eclipse.jst.j2ee.ejb.annotations.xdoclet.runtime plugin


Copyright (c) 2005 Eteration A.S. and others.
All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 which accompanies this distribution, and is available at http://www.eclipse.org/legal/epl-v10.html