Initial commit
diff --git a/archive/releng.builder/.project b/archive/releng.builder/.project
new file mode 100644
index 0000000..8aaac82
--- /dev/null
+++ b/archive/releng.builder/.project
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+ <name>releng.builder</name>
+ <comment></comment>
+ <projects>
+ </projects>
+ <buildSpec>
+ </buildSpec>
+ <natures>
+ </natures>
+</projectDescription>
diff --git a/archive/releng.builder/components/jst.perf.tests/build.properties b/archive/releng.builder/components/jst.perf.tests/build.properties
new file mode 100644
index 0000000..c006c1f
--- /dev/null
+++ b/archive/releng.builder/components/jst.perf.tests/build.properties
@@ -0,0 +1,75 @@
+###############################################################################
+# Copyright (c) 2003, 2004 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Common Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/cpl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+#####################
+# Parameters describing how and where to execute the build.
+# Typical users need only update the following properties:
+# baseLocation - where things you are building against are installed
+# bootclasspath - The base jars to compile against (typicaly rt.jar)
+# configs - the list of {os, ws, arch} configurations to build.
+#
+# Of course any of the settings here can be overridden by spec'ing
+# them on the command line (e.g., -DbaseLocation=d:/eclipse
+
+############# CVS CONTROL ################
+# The CVS tag to use when fetching the map files from the repository
+mapVersionTag=HEAD
+
+############## BUILD / GENERATION CONTROL ################
+# The directory into which the build elements will be fetched and where
+# the build will take place.
+buildDirectory=c:/dev/build
+
+# Type of build. Used in naming the build output. Typically this value is
+# one of I, N, M, S, ...
+buildType=I
+
+# ID of the build. Used in naming the build output.
+buildId=Build
+
+# Label for the build. Used in naming the build output
+buildLabel=${buildType}.${buildId}
+
+# Timestamp for the build. Used in naming the build output
+timestamp=007
+
+# Base location for anything the build needs to compile against. For example,
+# when building GEF, the baseLocation should be the location of a previously
+# installed Eclipse against which the GEF code will be compiled.
+baseLocation=c:/dev/eclipse
+
+
+
+# The location underwhich all of the build output will be collected.
+collectingFolder=eclipse
+
+# The prefix that will be used in the generated archive.
+archivePrefix=eclipse
+
+# The list of {os, ws, arch} configurations to build. This
+# value is a '&' separated list of ',' separate triples. For example,
+# configs=win32,win32,x86 & linux,motif,x86
+# By default the value is *,*,*
+#configs=*,*,*
+
+#Arguments to send to the zip executable
+#zipargs=
+
+############# JAVA COMPILER OPTIONS ##############
+# The location of the Java jars to compile against. Typically the rt.jar for your JDK/JRE
+bootclasspath=C:/j2sdk1.4.2_04/jre/lib/rt.jar
+
+# Whether or not to include debug info in the output jars
+javacDebugInfo=false
+
+# Whether or not to fail the build if there are compiler errors
+javacfailonerror=true
+
+zipargs=
diff --git a/archive/releng.builder/components/jst.perf.tests/customTargets.xml b/archive/releng.builder/components/jst.perf.tests/customTargets.xml
new file mode 100644
index 0000000..51cfe58
--- /dev/null
+++ b/archive/releng.builder/components/jst.perf.tests/customTargets.xml
@@ -0,0 +1,145 @@
+<project name="Build specific targets and properties" default="noDefault" >
+
+<!-- ===================================================================== -->
+<!-- Run a given ${target} on all elements being built -->
+<!-- Add on <ant> task for each top level element being built. -->
+<!-- ===================================================================== -->
+<target name="allElements">
+ <echo message="Target:${target} " />
+ <echo message="basedir: ${basedir}"/>
+ <echo message="component: ${component}"/>
+ <echo message="buildDirectory: ${buildDirectory}"/>
+ <echo message="baseLocation: ${baseLocation}" />
+ <ant antfile="${genericTargets}" target="${target}" >
+ <property name="type" value="feature" />
+ <property name="id" value="org.eclipse.jst.tests.performance.feature" />
+ </ant>
+</target>
+
+<!-- ===================================================================== -->
+<!-- Targets to assemble the built elements for particular configurations -->
+<!-- These generally call the generated assemble scripts (named in -->
+<!-- ${assembleScriptName}) but may also add pre and post processing -->
+<!-- Add one target for each root element and each configuration -->
+<!-- ===================================================================== -->
+
+<target name="assemble.org.eclipse.jst.tests.performance.feature">
+ <property name="archiveName" value="wtp-jst-perf-Tests-${buildId}.zip"/>
+ <ant antfile="${assembleScriptName}" dir="${buildDirectory}"/>
+</target>
+
+<!-- ===================================================================== -->
+<!-- Check out map files from correct repository -->
+<!-- Replace values for cvsRoot, package and mapVersionTag as desired. -->
+<!-- ===================================================================== -->
+ <target name="checkLocal">
+ <available property="mapsLocal" file="${buildDirectory}/maps" />
+ </target>
+ <target name="getMapFiles" depends="checkLocal" unless="mapsLocal">
+
+ <!-- *** change the repo info -->
+ <property name="mapCvsRoot" value=":${cvsProtocol}:${cvsUser}@${cvsServer}:${cvsRoot}" />
+ <property name="mapVersionTag" value="HEAD" />
+ <cvs cvsRoot="${mapCvsRoot}"
+
+ package="releng/maps"
+ dest="${buildDirectory}/maps"
+ tag="${mapVersionTag}"
+ />
+ <!--tag the map files project-->
+ <antcall target="tagMapFiles" />
+ </target>
+
+ <target name="tagMapFiles" if="tagMaps">
+ <cvs dest="${buildDirectory}/maps" command="tag v${timestamp}" />
+ </target>
+
+
+<!-- ===================================================================== -->
+<!-- Steps to do before setup -->
+<!-- ===================================================================== -->
+<target name="preSetup">
+</target>
+
+<!-- ===================================================================== -->
+<!-- Steps to do after setup but before starting the build proper -->
+<!-- ===================================================================== -->
+<target name="postSetup">
+</target>
+
+<!-- ===================================================================== -->
+<!-- Steps to do before fetching the build elements -->
+<!-- ===================================================================== -->
+<target name="preFetch">
+</target>
+
+<!-- ===================================================================== -->
+<!-- Steps to do after fetching the build elements -->
+<!-- ===================================================================== -->
+<target name="postFetch">
+</target>
+
+<!-- ===================================================================== -->
+<!-- Steps to do before generating the build scripts. -->
+<!-- ===================================================================== -->
+<target name="preGenerate">
+</target>
+
+<!-- ===================================================================== -->
+<!-- Steps to do after generating the build scripts. -->
+<!-- ===================================================================== -->
+<target name="postGenerate">
+</target>
+
+
+<!-- ===================================================================== -->
+<!-- Steps to do before running the build.xmls for the elements being built. -->
+<!-- ===================================================================== -->
+<target name="preProcess">
+</target>
+
+<!-- ===================================================================== -->
+<!-- Steps to do after running the build.xmls for the elements being built. -->
+<!-- ===================================================================== -->
+<target name="postProcess">
+</target>
+
+
+<!-- ===================================================================== -->
+<!-- Steps to do before running assemble. -->
+<!-- ===================================================================== -->
+<target name="preAssemble">
+</target>
+
+<!-- ===================================================================== -->
+<!-- Steps to do after running assemble. -->
+<!-- ===================================================================== -->
+<target name="postAssemble">
+</target>
+
+<!-- ===================================================================== -->
+<!-- Steps to do after the build is done. -->
+<!-- ===================================================================== -->
+<target name="postBuild">
+</target>
+
+<!-- ===================================================================== -->
+<!-- Steps to do to test the build results -->
+<!-- ===================================================================== -->
+<target name="test">
+</target>
+
+<!-- ===================================================================== -->
+<!-- Steps to do to publish the build results -->
+<!-- ===================================================================== -->
+<target name="publish">
+</target>
+
+<!-- ===================================================================== -->
+<!-- Default target -->
+<!-- ===================================================================== -->
+<target name="noDefault">
+ <echo message="You must specify a target when invoking this file" />
+</target>
+
+</project>
diff --git a/archive/releng.builder/components/jst.tests/build.properties b/archive/releng.builder/components/jst.tests/build.properties
new file mode 100644
index 0000000..c006c1f
--- /dev/null
+++ b/archive/releng.builder/components/jst.tests/build.properties
@@ -0,0 +1,75 @@
+###############################################################################
+# Copyright (c) 2003, 2004 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Common Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/cpl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+#####################
+# Parameters describing how and where to execute the build.
+# Typical users need only update the following properties:
+# baseLocation - where things you are building against are installed
+# bootclasspath - The base jars to compile against (typicaly rt.jar)
+# configs - the list of {os, ws, arch} configurations to build.
+#
+# Of course any of the settings here can be overridden by spec'ing
+# them on the command line (e.g., -DbaseLocation=d:/eclipse
+
+############# CVS CONTROL ################
+# The CVS tag to use when fetching the map files from the repository
+mapVersionTag=HEAD
+
+############## BUILD / GENERATION CONTROL ################
+# The directory into which the build elements will be fetched and where
+# the build will take place.
+buildDirectory=c:/dev/build
+
+# Type of build. Used in naming the build output. Typically this value is
+# one of I, N, M, S, ...
+buildType=I
+
+# ID of the build. Used in naming the build output.
+buildId=Build
+
+# Label for the build. Used in naming the build output
+buildLabel=${buildType}.${buildId}
+
+# Timestamp for the build. Used in naming the build output
+timestamp=007
+
+# Base location for anything the build needs to compile against. For example,
+# when building GEF, the baseLocation should be the location of a previously
+# installed Eclipse against which the GEF code will be compiled.
+baseLocation=c:/dev/eclipse
+
+
+
+# The location underwhich all of the build output will be collected.
+collectingFolder=eclipse
+
+# The prefix that will be used in the generated archive.
+archivePrefix=eclipse
+
+# The list of {os, ws, arch} configurations to build. This
+# value is a '&' separated list of ',' separate triples. For example,
+# configs=win32,win32,x86 & linux,motif,x86
+# By default the value is *,*,*
+#configs=*,*,*
+
+#Arguments to send to the zip executable
+#zipargs=
+
+############# JAVA COMPILER OPTIONS ##############
+# The location of the Java jars to compile against. Typically the rt.jar for your JDK/JRE
+bootclasspath=C:/j2sdk1.4.2_04/jre/lib/rt.jar
+
+# Whether or not to include debug info in the output jars
+javacDebugInfo=false
+
+# Whether or not to fail the build if there are compiler errors
+javacfailonerror=true
+
+zipargs=
diff --git a/archive/releng.builder/components/jst.tests/customTargets.xml b/archive/releng.builder/components/jst.tests/customTargets.xml
new file mode 100644
index 0000000..9286ced
--- /dev/null
+++ b/archive/releng.builder/components/jst.tests/customTargets.xml
@@ -0,0 +1,145 @@
+<project name="Build specific targets and properties" default="noDefault" >
+
+<!-- ===================================================================== -->
+<!-- Run a given ${target} on all elements being built -->
+<!-- Add on <ant> task for each top level element being built. -->
+<!-- ===================================================================== -->
+<target name="allElements">
+ <echo message="Target:${target} " />
+ <echo message="basedir: ${basedir}"/>
+ <echo message="component: ${component}"/>
+ <echo message="buildDirectory: ${buildDirectory}"/>
+ <echo message="baseLocation: ${baseLocation}" />
+ <ant antfile="${genericTargets}" target="${target}" >
+ <property name="type" value="feature" />
+ <property name="id" value="org.eclipse.jst.tests" />
+ </ant>
+</target>
+
+<!-- ===================================================================== -->
+<!-- Targets to assemble the built elements for particular configurations -->
+<!-- These generally call the generated assemble scripts (named in -->
+<!-- ${assembleScriptName}) but may also add pre and post processing -->
+<!-- Add one target for each root element and each configuration -->
+<!-- ===================================================================== -->
+
+<target name="assemble.org.eclipse.jst.tests">
+ <property name="archiveName" value="wtp-jst-Automated-Tests-${buildId}.zip"/>
+ <ant antfile="${assembleScriptName}" dir="${buildDirectory}"/>
+</target>
+
+<!-- ===================================================================== -->
+<!-- Check out map files from correct repository -->
+<!-- Replace values for cvsRoot, package and mapVersionTag as desired. -->
+<!-- ===================================================================== -->
+ <target name="checkLocal">
+ <available property="mapsLocal" file="${buildDirectory}/maps" />
+ </target>
+ <target name="getMapFiles" depends="checkLocal" unless="mapsLocal">
+
+ <!-- *** change the repo info -->
+ <property name="mapCvsRoot" value=":${cvsProtocol}:${cvsUser}@${cvsServer}:${cvsRoot}" />
+ <property name="mapVersionTag" value="HEAD" />
+ <cvs cvsRoot="${mapCvsRoot}"
+
+ package="releng/maps"
+ dest="${buildDirectory}/maps"
+ tag="${mapVersionTag}"
+ />
+ <!--tag the map files project-->
+ <antcall target="tagMapFiles" />
+ </target>
+
+ <target name="tagMapFiles" if="tagMaps">
+ <cvs dest="${buildDirectory}/maps" command="tag v${timestamp}" />
+ </target>
+
+
+<!-- ===================================================================== -->
+<!-- Steps to do before setup -->
+<!-- ===================================================================== -->
+<target name="preSetup">
+</target>
+
+<!-- ===================================================================== -->
+<!-- Steps to do after setup but before starting the build proper -->
+<!-- ===================================================================== -->
+<target name="postSetup">
+</target>
+
+<!-- ===================================================================== -->
+<!-- Steps to do before fetching the build elements -->
+<!-- ===================================================================== -->
+<target name="preFetch">
+</target>
+
+<!-- ===================================================================== -->
+<!-- Steps to do after fetching the build elements -->
+<!-- ===================================================================== -->
+<target name="postFetch">
+</target>
+
+<!-- ===================================================================== -->
+<!-- Steps to do before generating the build scripts. -->
+<!-- ===================================================================== -->
+<target name="preGenerate">
+</target>
+
+<!-- ===================================================================== -->
+<!-- Steps to do after generating the build scripts. -->
+<!-- ===================================================================== -->
+<target name="postGenerate">
+</target>
+
+
+<!-- ===================================================================== -->
+<!-- Steps to do before running the build.xmls for the elements being built. -->
+<!-- ===================================================================== -->
+<target name="preProcess">
+</target>
+
+<!-- ===================================================================== -->
+<!-- Steps to do after running the build.xmls for the elements being built. -->
+<!-- ===================================================================== -->
+<target name="postProcess">
+</target>
+
+
+<!-- ===================================================================== -->
+<!-- Steps to do before running assemble. -->
+<!-- ===================================================================== -->
+<target name="preAssemble">
+</target>
+
+<!-- ===================================================================== -->
+<!-- Steps to do after running assemble. -->
+<!-- ===================================================================== -->
+<target name="postAssemble">
+</target>
+
+<!-- ===================================================================== -->
+<!-- Steps to do after the build is done. -->
+<!-- ===================================================================== -->
+<target name="postBuild">
+</target>
+
+<!-- ===================================================================== -->
+<!-- Steps to do to test the build results -->
+<!-- ===================================================================== -->
+<target name="test">
+</target>
+
+<!-- ===================================================================== -->
+<!-- Steps to do to publish the build results -->
+<!-- ===================================================================== -->
+<target name="publish">
+</target>
+
+<!-- ===================================================================== -->
+<!-- Default target -->
+<!-- ===================================================================== -->
+<target name="noDefault">
+ <echo message="You must specify a target when invoking this file" />
+</target>
+
+</project>
diff --git a/archive/releng.builder/components/jst/build.properties b/archive/releng.builder/components/jst/build.properties
new file mode 100644
index 0000000..c006c1f
--- /dev/null
+++ b/archive/releng.builder/components/jst/build.properties
@@ -0,0 +1,75 @@
+###############################################################################
+# Copyright (c) 2003, 2004 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Common Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/cpl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+#####################
+# Parameters describing how and where to execute the build.
+# Typical users need only update the following properties:
+# baseLocation - where things you are building against are installed
+# bootclasspath - The base jars to compile against (typicaly rt.jar)
+# configs - the list of {os, ws, arch} configurations to build.
+#
+# Of course any of the settings here can be overridden by spec'ing
+# them on the command line (e.g., -DbaseLocation=d:/eclipse
+
+############# CVS CONTROL ################
+# The CVS tag to use when fetching the map files from the repository
+mapVersionTag=HEAD
+
+############## BUILD / GENERATION CONTROL ################
+# The directory into which the build elements will be fetched and where
+# the build will take place.
+buildDirectory=c:/dev/build
+
+# Type of build. Used in naming the build output. Typically this value is
+# one of I, N, M, S, ...
+buildType=I
+
+# ID of the build. Used in naming the build output.
+buildId=Build
+
+# Label for the build. Used in naming the build output
+buildLabel=${buildType}.${buildId}
+
+# Timestamp for the build. Used in naming the build output
+timestamp=007
+
+# Base location for anything the build needs to compile against. For example,
+# when building GEF, the baseLocation should be the location of a previously
+# installed Eclipse against which the GEF code will be compiled.
+baseLocation=c:/dev/eclipse
+
+
+
+# The location underwhich all of the build output will be collected.
+collectingFolder=eclipse
+
+# The prefix that will be used in the generated archive.
+archivePrefix=eclipse
+
+# The list of {os, ws, arch} configurations to build. This
+# value is a '&' separated list of ',' separate triples. For example,
+# configs=win32,win32,x86 & linux,motif,x86
+# By default the value is *,*,*
+#configs=*,*,*
+
+#Arguments to send to the zip executable
+#zipargs=
+
+############# JAVA COMPILER OPTIONS ##############
+# The location of the Java jars to compile against. Typically the rt.jar for your JDK/JRE
+bootclasspath=C:/j2sdk1.4.2_04/jre/lib/rt.jar
+
+# Whether or not to include debug info in the output jars
+javacDebugInfo=false
+
+# Whether or not to fail the build if there are compiler errors
+javacfailonerror=true
+
+zipargs=
diff --git a/archive/releng.builder/components/jst/customTargets.xml b/archive/releng.builder/components/jst/customTargets.xml
new file mode 100644
index 0000000..431129c
--- /dev/null
+++ b/archive/releng.builder/components/jst/customTargets.xml
@@ -0,0 +1,220 @@
+<project name="Build specific targets and properties" default="noDefault" >
+
+<!-- ===================================================================== -->
+<!-- Run a given ${target} on all elements being built -->
+<!-- Add on <ant> task for each top level element being built. -->
+<!-- ===================================================================== -->
+<target name="allElements">
+ <echo message="Target:${target} " />
+ <echo message="basedir: ${basedir}"/>
+ <echo message="component: ${component}"/>
+ <echo message="buildDirectory: ${buildDirectory}"/>
+ <echo message="baseLocation: ${baseLocation}" />
+ <ant antfile="${genericTargets}" target="${target}" >
+ <property name="type" value="feature" />
+ <property name="id" value="org.eclipse.jst" />
+ </ant>
+</target>
+
+<!-- ===================================================================== -->
+<!-- Targets to assemble the built elements for particular configurations -->
+<!-- These generally call the generated assemble scripts (named in -->
+<!-- ${assembleScriptName}) but may also add pre and post processing -->
+<!-- Add one target for each root element and each configuration -->
+<!-- ===================================================================== -->
+
+<target name="assemble.org.eclipse.jst">
+ <property name="archiveName" value="wtp-${buildId}.zip"/>
+ <ant antfile="${assembleScriptName}" dir="${buildDirectory}"/>
+</target>
+
+<!-- ===================================================================== -->
+<!-- Check out map files from correct repository -->
+<!-- Replace values for cvsRoot, package and mapVersionTag as desired. -->
+<!-- ===================================================================== -->
+ <target name="checkLocal">
+ <available property="mapsLocal" file="${buildDirectory}/maps" />
+ </target>
+ <target name="getMapFiles" depends="checkLocal" unless="mapsLocal">
+
+ <!-- *** change the repo info -->
+ <property name="mapCvsRoot" value=":${cvsProtocol}:${cvsUser}@${cvsServer}:${cvsRoot}" />
+ <property name="mapVersionTag" value="HEAD" />
+ <cvs cvsRoot="${mapCvsRoot}"
+ package="releng/maps"
+ dest="${buildDirectory}/maps"
+ tag="${mapVersionTag}"
+ />
+ <!--tag the map files project-->
+ <antcall target="tagMapFiles" />
+ </target>
+
+ <target name="tagMapFiles" if="tagMaps">
+ <cvs dest="${buildDirectory}/maps" command="tag v${timestamp}" />
+ </target>
+
+
+<!-- ===================================================================== -->
+<!-- Steps to do before setup -->
+<!-- ===================================================================== -->
+<target name="preSetup">
+</target>
+
+<!-- ===================================================================== -->
+<!-- Steps to do after setup but before starting the build proper -->
+<!-- ===================================================================== -->
+<target name="postSetup">
+</target>
+
+<!-- ===================================================================== -->
+<!-- Steps to do before fetching the build elements -->
+<!-- ===================================================================== -->
+<target name="preFetch">
+</target>
+
+<!-- ===================================================================== -->
+<!-- Steps to do after fetching the build elements -->
+<!-- ===================================================================== -->
+<target name="postFetch">
+</target>
+
+<!-- ===================================================================== -->
+<!-- Steps to do before generating the build scripts. -->
+<!-- ===================================================================== -->
+<target name="preGenerate">
+</target>
+
+<!-- ===================================================================== -->
+<!-- Steps to do after generating the build scripts. -->
+<!-- ===================================================================== -->
+<target name="postGenerate">
+</target>
+
+
+<!-- ===================================================================== -->
+<!-- Steps to do before running the build.xmls for the elements being built. -->
+<!-- ===================================================================== -->
+<target name="preProcess">
+ <replace dir="${buildDirectory}/plugins" value="${timestamp}" token="@build@">
+ <include name="**/about.mappings" />
+ </replace>
+</target>
+
+<!-- ===================================================================== -->
+<!-- Steps to do after running the build.xmls for the elements being built. -->
+<!-- ===================================================================== -->
+<target name="postProcess">
+ <condition property="logsAvailable">
+ <istrue value="${javacVerbose}" />
+ </condition>
+ <antcall target="gatherLogs" />
+</target>
+
+
+<!-- ===================================================================== -->
+<!-- Steps to do before running assemble. -->
+<!-- ===================================================================== -->
+<target name="preAssemble">
+ <!--
+ <ant antfile="${relengDir}/fetchVendorContent.xml" target="cleanup">
+ <property name="basedir" value="${relengDir}"/>
+ <property name="buildDirectory" value="${buildDirectory}/plugins"/>
+ <property name="sdk" value="true"/>
+ </ant>
+ -->
+</target>
+
+<!-- ===================================================================== -->
+<!-- Steps to do after running assemble. -->
+<!-- ===================================================================== -->
+<target name="postAssemble">
+ <!--
+ <ant antfile="${relengDir}/fetchVendorContent.xml">
+ <property name="basedir" value="${relengDir}"/>
+ <property name="buildDirectory" value="${buildDirectory}/plugins"/>
+ <property name="sdk" value="true"/>
+ </ant>
+ -->
+</target>
+
+<!-- ===================================================================== -->
+<!-- Steps to do after the build is done. -->
+<!-- ===================================================================== -->
+<target name="postBuild">
+ <antcall target="postBuild-${buildType}"/>
+</target>
+
+<target name="postBuild-I">
+</target>
+
+<target name="postBuild-N">
+</target>
+
+<target name="postBuild-M">
+</target>
+
+<target name="postBuild-R">
+</target>
+
+<target name="postBuild-S">
+ <property name="assemble-all" value="${buildDirectory}/assemble-all" />
+ <unzip dest="${assemble-all}" src="${buildDirectory}/${buildLabel}/wtp-${buildId}.zip" overwrite="true" />
+ <unzip dest="${assemble-all}" src="${localDownloads}/${emfFile}" overwrite="true" />
+ <unzip dest="${assemble-all}" src="${localDownloads}/${gefFile}" overwrite="true" />
+ <unzip dest="${assemble-all}" src="${localDownloads}/${jemFile}" overwrite="true" />
+ <zip destfile="${buildDirectory}/${buildLabel}/wtp-prereqs-sdk-${buildId}.zip" basedir="${assemble-all}" />
+ <available file="${localDownloads}/${eclipseFileWindows}" property="eclipsefilewin.exists" />
+ <antcall target="getEclipseWindows" />
+ <unzip dest="${assemble-all}" src="${localDownloads}/${eclipseFileWindows}" overwrite="true" />
+ <zip destfile="${buildDirectory}/${buildLabel}/wtp-eclipse-prereqs-sdk-${buildId}-win32.zip" basedir="${assemble-all}" />
+</target>
+
+<target name="postBuild-T">
+</target>
+
+<target name="getEclipseWindows" unless="eclipsefilewin.exists" >
+ <get src="${eclipseURL.win32}" dest="${localDownloads}/${eclipseFile.win32}" />
+</target>
+
+<!-- ===================================================================== -->
+<!-- Steps to do to test the build results -->
+<!-- ===================================================================== -->
+<target name="test">
+</target>
+
+<!-- ===================================================================== -->
+<!-- Steps to do to publish the build results -->
+<!-- ===================================================================== -->
+<target name="publish">
+</target>
+
+<!-- ===================================================================== -->
+<!-- Helper targets -->
+<!-- ===================================================================== -->
+<target name="gatherLogs" if="logsAvailable">
+ <mkdir dir="${buildDirectory}/${buildLabel}/compilelogs" />
+ <antcall target="allElements">
+ <param name="target" value="gatherLogs" />
+ </antcall>
+
+ <unzip dest="${buildDirectory}/${buildLabel}/compilelogs" overwrite="true">
+ <fileset dir="${buildDirectory}/features/org.eclipse.jst">
+ <include name="*.log.zip" />
+ </fileset>
+ </unzip>
+</target>
+
+<target name="clean" unless="noclean">
+ <antcall target="allElements">
+ <param name="target" value="cleanElement" />
+ </antcall>
+</target>
+
+<!-- ===================================================================== -->
+<!-- Default target -->
+<!-- ===================================================================== -->
+<target name="noDefault">
+ <echo message="You must specify a target when invoking this file" />
+</target>
+
+</project>
diff --git a/archive/releng.builder/components/releng/customTargets.xml b/archive/releng.builder/components/releng/customTargets.xml
new file mode 100644
index 0000000..9c4dbae
--- /dev/null
+++ b/archive/releng.builder/components/releng/customTargets.xml
@@ -0,0 +1,153 @@
+<project name="Build specific targets and properties" default="getMapFiles" >
+
+
+
+ <target name="getMapFiles" >
+
+ <!-- *** change the repo info -->
+ <property name="mapCvsRoot" value=":${cvsProtocol}:${cvsUser}@${cvsServer}:${cvsRoot}" />
+ <property name="mapVersionTag" value="HEAD" />
+ <cvs cvsRoot="${mapCvsRoot}"
+ package="releng/maps"
+ dest="${buildDirectory}/maps"
+ tag="${mapVersionTag}"
+ />
+ <!--tag the map files project-->
+ <antcall target="tagMapFiles" />
+ </target>
+
+ <target name="tagMapFiles">
+ <cvs dest="${buildDirectory}/maps" command="tag v${buildType}${timestamp}" />
+ </target>
+
+
+ <!-- ===================================================================== -->
+ <!-- Run a given ${target} on all elements being built -->
+ <!-- Add on <ant> task for each top level element being built. -->
+ <!-- ===================================================================== -->
+ <target name="allElements">
+ <echo message="Target:${target} " />
+ <echo message="basedir: ${basedir}"/>
+ <echo message="component: ${component}"/>
+ <echo message="buildDirectory: ${buildDirectory}"/>
+ <echo message="baseLocation: ${baseLocation}" />
+ <antcall target="getMapFiles" />
+ </target>
+
+ <!-- ===================================================================== -->
+ <!-- Targets to assemble the built elements for particular configurations -->
+ <!-- These generally call the generated assemble scripts (named in -->
+ <!-- ${assembleScriptName}) but may also add pre and post processing -->
+ <!-- Add one target for each root element and each configuration -->
+ <!-- ===================================================================== -->
+
+ <target name="assemble.releng">
+ </target>
+
+ <!-- ===================================================================== -->
+ <!-- Check out map files from correct repository -->
+ <!-- Replace values for cvsRoot, package and mapVersionTag as desired. -->
+ <!-- ===================================================================== -->
+ <target name="checkLocal">
+ </target>
+
+
+
+ <!-- ===================================================================== -->
+ <!-- Steps to do before setup -->
+ <!-- ===================================================================== -->
+ <target name="preSetup">
+ </target>
+
+ <!-- ===================================================================== -->
+ <!-- Steps to do after setup but before starting the build proper -->
+ <!-- ===================================================================== -->
+ <target name="postSetup">
+ </target>
+
+ <!-- ===================================================================== -->
+ <!-- Steps to do before fetching the build elements -->
+ <!-- ===================================================================== -->
+ <target name="preFetch">
+ </target>
+
+ <!-- ===================================================================== -->
+ <!-- Steps to do after fetching the build elements -->
+ <!-- ===================================================================== -->
+ <target name="postFetch">
+ </target>
+
+ <!-- ===================================================================== -->
+ <!-- Steps to do before generating the build scripts. -->
+ <!-- ===================================================================== -->
+ <target name="preGenerate">
+ </target>
+
+ <!-- ===================================================================== -->
+ <!-- Steps to do after generating the build scripts. -->
+ <!-- ===================================================================== -->
+ <target name="postGenerate">
+ </target>
+
+
+ <!-- ===================================================================== -->
+ <!-- Steps to do before running the build.xmls for the elements being built. -->
+ <!-- ===================================================================== -->
+ <target name="preProcess">
+ </target>
+
+ <!-- ===================================================================== -->
+ <!-- Steps to do after running the build.xmls for the elements being built. -->
+ <!-- ===================================================================== -->
+ <target name="postProcess">
+ </target>
+
+
+ <!-- ===================================================================== -->
+ <!-- Steps to do before running assemble. -->
+ <!-- ===================================================================== -->
+ <target name="preAssemble">
+ </target>
+
+ <!-- ===================================================================== -->
+ <!-- Steps to do after running assemble. -->
+ <!-- ===================================================================== -->
+ <target name="postAssemble">
+ </target>
+
+ <!-- ===================================================================== -->
+ <!-- Steps to do after the build is done. -->
+ <!-- ===================================================================== -->
+ <target name="postBuild">
+ </target>
+
+ <!-- ===================================================================== -->
+ <!-- Steps to do to test the build results -->
+ <!-- ===================================================================== -->
+ <target name="test">
+ </target>
+
+ <!-- ===================================================================== -->
+ <!-- Steps to do to publish the build results -->
+ <!-- ===================================================================== -->
+ <target name="publish">
+ </target>
+
+
+ <!-- ===================================================================== -->
+ <!-- Helper targets -->
+ <!-- ===================================================================== -->
+ <target name="gatherLogs" if="logsAvailable">
+ </target>
+
+ <target name="clean" unless="noclean">
+ </target>
+
+ <!-- ===================================================================== -->
+ <!-- Default target -->
+ <!-- ===================================================================== -->
+ <target name="noDefault">
+ </target>
+
+
+</project>
diff --git a/archive/releng.builder/components/testManifest.xml b/archive/releng.builder/components/testManifest.xml
new file mode 100644
index 0000000..e759a82
--- /dev/null
+++ b/archive/releng.builder/components/testManifest.xml
@@ -0,0 +1,103 @@
+<?xml version="1.0"?>
+<topLevel>
+ <zipTypes>
+ <zipType name="wtpruntime">
+ <platform
+ id="WTPRUN"
+ name="All"
+ fileName='<a href="@mirror@wtp-@build@.zip">wtp-@build@.zip</a>(<a href="wtp-@build@.zip.MD5">md5</a>) <font size="2"></font>'>
+ </platform>
+ </zipType>
+ <zipType name="wtpsdk">
+ <platform
+ id="WTPSDK"
+ name="All"
+ fileName='<a href="@mirror@wtp-sdk-@build@.zip">wtp-sdk-@build@.zip</a>(<a href="wtp-sdk-@build@.zip.MD5">md5</a>) <font size="2"></font>'>
+ </platform>
+ </zipType>
+ <zipType name="wst">
+ <platform
+ id="WST"
+ name="All"
+ fileName='<a href="@mirror@wtp-wst-@build@.zip">wtp-wst-@build@.zip</a> (<a href="wtp-wst-@build@.zip.MD5">md5</a>) <font size="2"></font>'>
+ </platform>
+ </zipType>
+ <zipType name="wst-sdk">
+ <platform
+ id="WST-SDK"
+ name="All"
+ fileName='<a href="@mirror@wtp-wst-sdk-@build@.zip">wtp-wst-sdk@build@.zip</a> (<a href="wtp-wst-sdk@build@.zip.MD5">md5</a>) <font size="2"></font>'>
+ </platform>
+ </zipType>
+ <zipType name="wst-tests">
+ <platform
+ id="WST-TESTS"
+ name="All"
+ fileName='<a href="@mirror@wtp-wst-Automated-Tests-@build@.zip">wtp-wst-Automated-Tests-@build@.zip</a> (<a href="wtp-wst-Automated-Tests-@build@.zip.MD5">md5</a>) <font size="2"></font>'>
+ </platform>
+ </zipType>
+ <zipType name="jst-tests">
+ <platform
+ id="JST-TESTS"
+ name="All"
+ fileName='<a href="@mirror@wtp-jst-Automated-Tests-@build@.zip">wtp-jst-Automated-Tests-@build@.zip</a> (<a href="wtp-jst-Automated-Tests-@build@.zip.MD5">md5</a>) <font size="2"></font>'>
+ </platform>
+ </zipType>
+ <zipType name="wst-perf-tests">
+ <platform
+ id="WST-PERF-TESTS"
+ name="All"
+ fileName='<a href="@mirror@wtp-wst-perf-Tests-@build@.zip">wtp-wst-perf-Tests-@build@.zip</a> (<a href="wtp-wst-perf-Tests-@build@.zip.MD5">md5</a>) <font size="2"></font>'>
+ </platform>
+ </zipType>
+ <zipType name="jst-perf-tests">
+ <platform
+ id="JST-PERF-TESTS"
+ name="All"
+ fileName='<a href="@mirror@wtp-jst-perf-Tests-@build@.zip">wtp-jst-perf-Tests-@build@.zip</a> (<a href="wtp-jst-perf-Tests-@build@.zip.MD5">md5</a>) <font size="2"></font>'>
+ </platform>
+ </zipType>
+ </zipTypes>
+
+ <logFiles>
+
+ <logFile name="plugins/org.eclipse.wst.internet.monitor.core_*/*.bin.log">
+ <effectedFile id="WTPRUN"></effectedFile>
+ <effectedFile id="WST"></effectedFile>
+ </logFile>
+ <logFile name="plugins/org.eclipse.wst.internet.monitor.ui_*/*.bin.log">
+ <effectedFile id="WTPRUN"></effectedFile>
+ <effectedFile id="WST"></effectedFile>
+ </logFile>
+ <logFile name="plugins/org.eclipse.wst.internet.webbrowser_*/*.bin.log">
+ <effectedFile id="WTPRUN"></effectedFile>
+ <effectedFile id="WST"></effectedFile>
+ </logFile>
+ <logFile name="plugins/org.eclipse.wst.server.core_*/*.bin.log">
+ <effectedFile id="WTPRUN"></effectedFile>
+ <effectedFile id="WST"></effectedFile>
+ </logFile>
+ <logFile name="plugins/org.eclipse.jst.server.core_*/*.bin.log">
+ <effectedFile id="WTPRUN"></effectedFile>
+ </logFile>
+ <logFile name="plugins/org.eclipse.jst.server.ui_*/*.bin.log">
+ <effectedFile id="WTPRUN"></effectedFile>
+ </logFile>
+ <logFile name="plugins/org.eclipse.jst.server.tomcat.ui_*/*.bin.log">
+ <effectedFile id="WTPRUN"></effectedFile>
+ </logFile>
+ <logFile name="plugins/org.eclipse.jst.server.tomcat.core_*/*.bin.log">
+ <effectedFile id="WTPRUN"></effectedFile>
+ </logFile>
+ <logFile name="plugins/org.eclipse.wst.server.ui_*/*.bin.log">
+ <effectedFile id="WTPRUN"></effectedFile>
+ <effectedFile id="WST"></effectedFile>
+ </logFile>
+
+ <logFile name="plugins/org.eclipse.wst.server.util_*/*.bin.log">
+ <effectedFile id="WTPRUN"></effectedFile>
+ <effectedFile id="WST"></effectedFile>
+ </logFile>
+
+ </logFiles>
+</topLevel>
diff --git a/archive/releng.builder/components/wst-sdk/build.properties b/archive/releng.builder/components/wst-sdk/build.properties
new file mode 100644
index 0000000..c006c1f
--- /dev/null
+++ b/archive/releng.builder/components/wst-sdk/build.properties
@@ -0,0 +1,75 @@
+###############################################################################
+# Copyright (c) 2003, 2004 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Common Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/cpl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+#####################
+# Parameters describing how and where to execute the build.
+# Typical users need only update the following properties:
+# baseLocation - where things you are building against are installed
+# bootclasspath - The base jars to compile against (typicaly rt.jar)
+# configs - the list of {os, ws, arch} configurations to build.
+#
+# Of course any of the settings here can be overridden by spec'ing
+# them on the command line (e.g., -DbaseLocation=d:/eclipse
+
+############# CVS CONTROL ################
+# The CVS tag to use when fetching the map files from the repository
+mapVersionTag=HEAD
+
+############## BUILD / GENERATION CONTROL ################
+# The directory into which the build elements will be fetched and where
+# the build will take place.
+buildDirectory=c:/dev/build
+
+# Type of build. Used in naming the build output. Typically this value is
+# one of I, N, M, S, ...
+buildType=I
+
+# ID of the build. Used in naming the build output.
+buildId=Build
+
+# Label for the build. Used in naming the build output
+buildLabel=${buildType}.${buildId}
+
+# Timestamp for the build. Used in naming the build output
+timestamp=007
+
+# Base location for anything the build needs to compile against. For example,
+# when building GEF, the baseLocation should be the location of a previously
+# installed Eclipse against which the GEF code will be compiled.
+baseLocation=c:/dev/eclipse
+
+
+
+# The location underwhich all of the build output will be collected.
+collectingFolder=eclipse
+
+# The prefix that will be used in the generated archive.
+archivePrefix=eclipse
+
+# The list of {os, ws, arch} configurations to build. This
+# value is a '&' separated list of ',' separate triples. For example,
+# configs=win32,win32,x86 & linux,motif,x86
+# By default the value is *,*,*
+#configs=*,*,*
+
+#Arguments to send to the zip executable
+#zipargs=
+
+############# JAVA COMPILER OPTIONS ##############
+# The location of the Java jars to compile against. Typically the rt.jar for your JDK/JRE
+bootclasspath=C:/j2sdk1.4.2_04/jre/lib/rt.jar
+
+# Whether or not to include debug info in the output jars
+javacDebugInfo=false
+
+# Whether or not to fail the build if there are compiler errors
+javacfailonerror=true
+
+zipargs=
diff --git a/archive/releng.builder/components/wst-sdk/customTargets.xml b/archive/releng.builder/components/wst-sdk/customTargets.xml
new file mode 100644
index 0000000..c3b17d6
--- /dev/null
+++ b/archive/releng.builder/components/wst-sdk/customTargets.xml
@@ -0,0 +1,194 @@
+<project name="Build specific targets and properties" default="noDefault" >
+
+<!-- ===================================================================== -->
+<!-- Run a given ${target} on all elements being built -->
+<!-- Add on <ant> task for each top level element being built. -->
+<!-- ===================================================================== -->
+<target name="allElements">
+ <echo message="Target:${target} " />
+ <echo message="basedir: ${basedir}"/>
+ <echo message="component: ${component}"/>
+ <echo message="buildDirectory: ${buildDirectory}"/>
+ <echo message="baseLocation: ${baseLocation}" />
+ <ant antfile="${genericTargets}" target="${target}" >
+ <property name="type" value="feature" />
+ <property name="id" value="org.eclipse.wst.sdk" />
+ </ant>
+</target>
+
+<!-- ===================================================================== -->
+<!-- Targets to assemble the built elements for particular configurations -->
+<!-- These generally call the generated assemble scripts (named in -->
+<!-- ${assembleScriptName}) but may also add pre and post processing -->
+<!-- Add one target for each root element and each configuration -->
+<!-- ===================================================================== -->
+
+<target name="assemble.org.eclipse.wst.sdk">
+ <property name="archiveName" value="wtp-wst-sdk-${buildId}.zip"/>
+ <ant antfile="${assembleScriptName}" dir="${buildDirectory}"/>
+</target>
+
+<!-- ===================================================================== -->
+<!-- Check out map files from correct repository -->
+<!-- Replace values for cvsRoot, package and mapVersionTag as desired. -->
+<!-- ===================================================================== -->
+ <target name="checkLocal">
+ <available property="mapsLocal" file="${buildDirectory}/maps" />
+ </target>
+ <target name="getMapFiles" depends="checkLocal" unless="mapsLocal">
+
+ <!-- *** change the repo info -->
+ <property name="mapCvsRoot" value=":${cvsProtocol}:${cvsUser}@${cvsServer}:${cvsRoot}" />
+ <property name="mapVersionTag" value="HEAD" />
+ <cvs cvsRoot="${mapCvsRoot}"
+
+ package="releng/maps"
+ dest="${buildDirectory}/maps"
+ tag="${mapVersionTag}"
+ />
+ <!--tag the map files project-->
+ <antcall target="tagMapFiles" />
+ </target>
+
+ <target name="tagMapFiles" if="tagMaps">
+ <cvs dest="${buildDirectory}/maps" command="tag v${timestamp}" />
+ </target>
+
+
+<!-- ===================================================================== -->
+<!-- Steps to do before setup -->
+<!-- ===================================================================== -->
+<target name="preSetup">
+</target>
+
+<!-- ===================================================================== -->
+<!-- Steps to do after setup but before starting the build proper -->
+<!-- ===================================================================== -->
+<target name="postSetup">
+</target>
+
+<!-- ===================================================================== -->
+<!-- Steps to do before fetching the build elements -->
+<!-- ===================================================================== -->
+<target name="preFetch">
+</target>
+
+<!-- ===================================================================== -->
+<!-- Steps to do after fetching the build elements -->
+<!-- ===================================================================== -->
+<target name="postFetch">
+</target>
+
+<!-- ===================================================================== -->
+<!-- Steps to do before generating the build scripts. -->
+<!-- ===================================================================== -->
+<target name="preGenerate">
+</target>
+
+<!-- ===================================================================== -->
+<!-- Steps to do after generating the build scripts. -->
+<!-- ===================================================================== -->
+<target name="postGenerate">
+</target>
+
+
+<!-- ===================================================================== -->
+<!-- Steps to do before running the build.xmls for the elements being built. -->
+<!-- ===================================================================== -->
+<target name="preProcess">
+ <replace dir="${buildDirectory}/plugins" value="${timestamp}" token="@build@">
+ <include name="**/about.mappings" />
+ </replace>
+</target>
+
+<!-- ===================================================================== -->
+<!-- Steps to do after running the build.xmls for the elements being built. -->
+<!-- ===================================================================== -->
+<target name="postProcess">
+ <condition property="logsAvailable">
+ <istrue value="${javacVerbose}" />
+ </condition>
+ <antcall target="gatherLogs" />
+</target>
+
+
+<!-- ===================================================================== -->
+<!-- Steps to do before running assemble. -->
+<!-- ===================================================================== -->
+<target name="preAssemble">
+ <ant antfile="${buildDirectory}/plugins/org.eclipse.wst.ws.explorer/build-war.xml">
+ <property name="baseLocation" value="${baseLocation}"/>
+ <property name="basedir" value="${buildDirectory}/plugins/org.eclipse.wst.ws.explorer"/>
+ <property name="buildDirectory" value="${buildDirectory}"/>
+ </ant>
+ <!--
+ <ant antfile="${relengDir}/fetchVendorContent.xml" target="cleanup">
+ <property name="basedir" value="${relengDir}"/>
+ <property name="buildDirectory" value="${buildDirectory}/plugins"/>
+ <property name="sdk" value="true"/>
+ </ant>
+ -->
+</target>
+
+<!-- ===================================================================== -->
+<!-- Steps to do after running assemble. -->
+<!-- ===================================================================== -->
+<target name="postAssemble">
+ <!--
+ <ant antfile="${relengDir}/fetchVendorContent.xml">
+ <property name="basedir" value="${relengDir}"/>
+ <property name="buildDirectory" value="${buildDirectory}/plugins"/>
+ <property name="sdk" value="true"/>
+ </ant>
+ -->
+</target>
+
+<!-- ===================================================================== -->
+<!-- Steps to do after the build is done. -->
+<!-- ===================================================================== -->
+<target name="postBuild">
+</target>
+
+<!-- ===================================================================== -->
+<!-- Steps to do to test the build results -->
+<!-- ===================================================================== -->
+<target name="test">
+</target>
+
+<!-- ===================================================================== -->
+<!-- Steps to do to publish the build results -->
+<!-- ===================================================================== -->
+<target name="publish">
+</target>
+
+
+<!-- ===================================================================== -->
+<!-- Helper targets -->
+<!-- ===================================================================== -->
+<target name="gatherLogs" if="logsAvailable">
+ <mkdir dir="${buildDirectory}/${buildLabel}/compilelogs" />
+ <antcall target="allElements">
+ <param name="target" value="gatherLogs" />
+ </antcall>
+
+ <unzip dest="${buildDirectory}/${buildLabel}/compilelogs" overwrite="true">
+ <fileset dir="${buildDirectory}/features/org.eclipse.wst.sdk">
+ <include name="*.log.zip" />
+ </fileset>
+ </unzip>
+</target>
+
+<target name="clean" unless="noclean">
+ <antcall target="allElements">
+ <param name="target" value="cleanElement" />
+ </antcall>
+</target>
+
+<!-- ===================================================================== -->
+<!-- Default target -->
+<!-- ===================================================================== -->
+<target name="noDefault">
+ <echo message="You must specify a target when invoking this file" />
+</target>
+
+</project>
diff --git a/archive/releng.builder/components/wst.perf.tests/build.properties b/archive/releng.builder/components/wst.perf.tests/build.properties
new file mode 100644
index 0000000..c006c1f
--- /dev/null
+++ b/archive/releng.builder/components/wst.perf.tests/build.properties
@@ -0,0 +1,75 @@
+###############################################################################
+# Copyright (c) 2003, 2004 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Common Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/cpl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+#####################
+# Parameters describing how and where to execute the build.
+# Typical users need only update the following properties:
+# baseLocation - where things you are building against are installed
+# bootclasspath - The base jars to compile against (typicaly rt.jar)
+# configs - the list of {os, ws, arch} configurations to build.
+#
+# Of course any of the settings here can be overridden by spec'ing
+# them on the command line (e.g., -DbaseLocation=d:/eclipse
+
+############# CVS CONTROL ################
+# The CVS tag to use when fetching the map files from the repository
+mapVersionTag=HEAD
+
+############## BUILD / GENERATION CONTROL ################
+# The directory into which the build elements will be fetched and where
+# the build will take place.
+buildDirectory=c:/dev/build
+
+# Type of build. Used in naming the build output. Typically this value is
+# one of I, N, M, S, ...
+buildType=I
+
+# ID of the build. Used in naming the build output.
+buildId=Build
+
+# Label for the build. Used in naming the build output
+buildLabel=${buildType}.${buildId}
+
+# Timestamp for the build. Used in naming the build output
+timestamp=007
+
+# Base location for anything the build needs to compile against. For example,
+# when building GEF, the baseLocation should be the location of a previously
+# installed Eclipse against which the GEF code will be compiled.
+baseLocation=c:/dev/eclipse
+
+
+
+# The location underwhich all of the build output will be collected.
+collectingFolder=eclipse
+
+# The prefix that will be used in the generated archive.
+archivePrefix=eclipse
+
+# The list of {os, ws, arch} configurations to build. This
+# value is a '&' separated list of ',' separate triples. For example,
+# configs=win32,win32,x86 & linux,motif,x86
+# By default the value is *,*,*
+#configs=*,*,*
+
+#Arguments to send to the zip executable
+#zipargs=
+
+############# JAVA COMPILER OPTIONS ##############
+# The location of the Java jars to compile against. Typically the rt.jar for your JDK/JRE
+bootclasspath=C:/j2sdk1.4.2_04/jre/lib/rt.jar
+
+# Whether or not to include debug info in the output jars
+javacDebugInfo=false
+
+# Whether or not to fail the build if there are compiler errors
+javacfailonerror=true
+
+zipargs=
diff --git a/archive/releng.builder/components/wst.perf.tests/customTargets.xml b/archive/releng.builder/components/wst.perf.tests/customTargets.xml
new file mode 100644
index 0000000..53f36b6
--- /dev/null
+++ b/archive/releng.builder/components/wst.perf.tests/customTargets.xml
@@ -0,0 +1,145 @@
+<project name="Build specific targets and properties" default="noDefault" >
+
+<!-- ===================================================================== -->
+<!-- Run a given ${target} on all elements being built -->
+<!-- Add on <ant> task for each top level element being built. -->
+<!-- ===================================================================== -->
+<target name="allElements">
+ <echo message="Target:${target} " />
+ <echo message="basedir: ${basedir}"/>
+ <echo message="component: ${component}"/>
+ <echo message="buildDirectory: ${buildDirectory}"/>
+ <echo message="baseLocation: ${baseLocation}" />
+ <ant antfile="${genericTargets}" target="${target}" >
+ <property name="type" value="feature" />
+ <property name="id" value="org.eclipse.wst.tests.performance.feature" />
+ </ant>
+</target>
+
+<!-- ===================================================================== -->
+<!-- Targets to assemble the built elements for particular configurations -->
+<!-- These generally call the generated assemble scripts (named in -->
+<!-- ${assembleScriptName}) but may also add pre and post processing -->
+<!-- Add one target for each root element and each configuration -->
+<!-- ===================================================================== -->
+
+<target name="assemble.org.eclipse.wst.tests.performance.feature">
+ <property name="archiveName" value="wtp-wst-perf-Tests-${buildId}.zip"/>
+ <ant antfile="${assembleScriptName}" dir="${buildDirectory}"/>
+</target>
+
+<!-- ===================================================================== -->
+<!-- Check out map files from correct repository -->
+<!-- Replace values for cvsRoot, package and mapVersionTag as desired. -->
+<!-- ===================================================================== -->
+ <target name="checkLocal">
+ <available property="mapsLocal" file="${buildDirectory}/maps" />
+ </target>
+ <target name="getMapFiles" depends="checkLocal" unless="mapsLocal">
+
+ <!-- *** change the repo info -->
+ <property name="mapCvsRoot" value=":${cvsProtocol}:${cvsUser}@${cvsServer}:${cvsRoot}" />
+ <property name="mapVersionTag" value="HEAD" />
+ <cvs cvsRoot="${mapCvsRoot}"
+
+ package="releng/maps"
+ dest="${buildDirectory}/maps"
+ tag="${mapVersionTag}"
+ />
+ <!--tag the map files project-->
+ <antcall target="tagMapFiles" />
+ </target>
+
+ <target name="tagMapFiles" if="tagMaps">
+ <cvs dest="${buildDirectory}/maps" command="tag v${timestamp}" />
+ </target>
+
+
+<!-- ===================================================================== -->
+<!-- Steps to do before setup -->
+<!-- ===================================================================== -->
+<target name="preSetup">
+</target>
+
+<!-- ===================================================================== -->
+<!-- Steps to do after setup but before starting the build proper -->
+<!-- ===================================================================== -->
+<target name="postSetup">
+</target>
+
+<!-- ===================================================================== -->
+<!-- Steps to do before fetching the build elements -->
+<!-- ===================================================================== -->
+<target name="preFetch">
+</target>
+
+<!-- ===================================================================== -->
+<!-- Steps to do after fetching the build elements -->
+<!-- ===================================================================== -->
+<target name="postFetch">
+</target>
+
+<!-- ===================================================================== -->
+<!-- Steps to do before generating the build scripts. -->
+<!-- ===================================================================== -->
+<target name="preGenerate">
+</target>
+
+<!-- ===================================================================== -->
+<!-- Steps to do after generating the build scripts. -->
+<!-- ===================================================================== -->
+<target name="postGenerate">
+</target>
+
+
+<!-- ===================================================================== -->
+<!-- Steps to do before running the build.xmls for the elements being built. -->
+<!-- ===================================================================== -->
+<target name="preProcess">
+</target>
+
+<!-- ===================================================================== -->
+<!-- Steps to do after running the build.xmls for the elements being built. -->
+<!-- ===================================================================== -->
+<target name="postProcess">
+</target>
+
+
+<!-- ===================================================================== -->
+<!-- Steps to do before running assemble. -->
+<!-- ===================================================================== -->
+<target name="preAssemble">
+</target>
+
+<!-- ===================================================================== -->
+<!-- Steps to do after running assemble. -->
+<!-- ===================================================================== -->
+<target name="postAssemble">
+</target>
+
+<!-- ===================================================================== -->
+<!-- Steps to do after the build is done. -->
+<!-- ===================================================================== -->
+<target name="postBuild">
+</target>
+
+<!-- ===================================================================== -->
+<!-- Steps to do to test the build results -->
+<!-- ===================================================================== -->
+<target name="test">
+</target>
+
+<!-- ===================================================================== -->
+<!-- Steps to do to publish the build results -->
+<!-- ===================================================================== -->
+<target name="publish">
+</target>
+
+<!-- ===================================================================== -->
+<!-- Default target -->
+<!-- ===================================================================== -->
+<target name="noDefault">
+ <echo message="You must specify a target when invoking this file" />
+</target>
+
+</project>
diff --git a/archive/releng.builder/components/wst.tests/build.properties b/archive/releng.builder/components/wst.tests/build.properties
new file mode 100644
index 0000000..c006c1f
--- /dev/null
+++ b/archive/releng.builder/components/wst.tests/build.properties
@@ -0,0 +1,75 @@
+###############################################################################
+# Copyright (c) 2003, 2004 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Common Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/cpl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+#####################
+# Parameters describing how and where to execute the build.
+# Typical users need only update the following properties:
+# baseLocation - where things you are building against are installed
+# bootclasspath - The base jars to compile against (typicaly rt.jar)
+# configs - the list of {os, ws, arch} configurations to build.
+#
+# Of course any of the settings here can be overridden by spec'ing
+# them on the command line (e.g., -DbaseLocation=d:/eclipse
+
+############# CVS CONTROL ################
+# The CVS tag to use when fetching the map files from the repository
+mapVersionTag=HEAD
+
+############## BUILD / GENERATION CONTROL ################
+# The directory into which the build elements will be fetched and where
+# the build will take place.
+buildDirectory=c:/dev/build
+
+# Type of build. Used in naming the build output. Typically this value is
+# one of I, N, M, S, ...
+buildType=I
+
+# ID of the build. Used in naming the build output.
+buildId=Build
+
+# Label for the build. Used in naming the build output
+buildLabel=${buildType}.${buildId}
+
+# Timestamp for the build. Used in naming the build output
+timestamp=007
+
+# Base location for anything the build needs to compile against. For example,
+# when building GEF, the baseLocation should be the location of a previously
+# installed Eclipse against which the GEF code will be compiled.
+baseLocation=c:/dev/eclipse
+
+
+
+# The location underwhich all of the build output will be collected.
+collectingFolder=eclipse
+
+# The prefix that will be used in the generated archive.
+archivePrefix=eclipse
+
+# The list of {os, ws, arch} configurations to build. This
+# value is a '&' separated list of ',' separate triples. For example,
+# configs=win32,win32,x86 & linux,motif,x86
+# By default the value is *,*,*
+#configs=*,*,*
+
+#Arguments to send to the zip executable
+#zipargs=
+
+############# JAVA COMPILER OPTIONS ##############
+# The location of the Java jars to compile against. Typically the rt.jar for your JDK/JRE
+bootclasspath=C:/j2sdk1.4.2_04/jre/lib/rt.jar
+
+# Whether or not to include debug info in the output jars
+javacDebugInfo=false
+
+# Whether or not to fail the build if there are compiler errors
+javacfailonerror=true
+
+zipargs=
diff --git a/archive/releng.builder/components/wst.tests/customTargets.xml b/archive/releng.builder/components/wst.tests/customTargets.xml
new file mode 100644
index 0000000..643b932
--- /dev/null
+++ b/archive/releng.builder/components/wst.tests/customTargets.xml
@@ -0,0 +1,145 @@
+<project name="Build specific targets and properties" default="noDefault" >
+
+<!-- ===================================================================== -->
+<!-- Run a given ${target} on all elements being built -->
+<!-- Add on <ant> task for each top level element being built. -->
+<!-- ===================================================================== -->
+<target name="allElements">
+ <echo message="Target:${target} " />
+ <echo message="basedir: ${basedir}"/>
+ <echo message="component: ${component}"/>
+ <echo message="buildDirectory: ${buildDirectory}"/>
+ <echo message="baseLocation: ${baseLocation}" />
+ <ant antfile="${genericTargets}" target="${target}" >
+ <property name="type" value="feature" />
+ <property name="id" value="org.eclipse.wst.tests.feature" />
+ </ant>
+</target>
+
+<!-- ===================================================================== -->
+<!-- Targets to assemble the built elements for particular configurations -->
+<!-- These generally call the generated assemble scripts (named in -->
+<!-- ${assembleScriptName}) but may also add pre and post processing -->
+<!-- Add one target for each root element and each configuration -->
+<!-- ===================================================================== -->
+
+<target name="assemble.org.eclipse.wst.tests.feature">
+ <property name="archiveName" value="wtp-wst-Automated-Tests-${buildId}.zip"/>
+ <ant antfile="${assembleScriptName}" dir="${buildDirectory}"/>
+</target>
+
+<!-- ===================================================================== -->
+<!-- Check out map files from correct repository -->
+<!-- Replace values for cvsRoot, package and mapVersionTag as desired. -->
+<!-- ===================================================================== -->
+ <target name="checkLocal">
+ <available property="mapsLocal" file="${buildDirectory}/maps" />
+ </target>
+ <target name="getMapFiles" depends="checkLocal" unless="mapsLocal">
+
+ <!-- *** change the repo info -->
+ <property name="mapCvsRoot" value=":${cvsProtocol}:${cvsUser}@${cvsServer}:${cvsRoot}" />
+ <property name="mapVersionTag" value="HEAD" />
+ <cvs cvsRoot="${mapCvsRoot}"
+
+ package="releng/maps"
+ dest="${buildDirectory}/maps"
+ tag="${mapVersionTag}"
+ />
+ <!--tag the map files project-->
+ <antcall target="tagMapFiles" />
+ </target>
+
+ <target name="tagMapFiles" if="tagMaps">
+ <cvs dest="${buildDirectory}/maps" command="tag v${timestamp}" />
+ </target>
+
+
+<!-- ===================================================================== -->
+<!-- Steps to do before setup -->
+<!-- ===================================================================== -->
+<target name="preSetup">
+</target>
+
+<!-- ===================================================================== -->
+<!-- Steps to do after setup but before starting the build proper -->
+<!-- ===================================================================== -->
+<target name="postSetup">
+</target>
+
+<!-- ===================================================================== -->
+<!-- Steps to do before fetching the build elements -->
+<!-- ===================================================================== -->
+<target name="preFetch">
+</target>
+
+<!-- ===================================================================== -->
+<!-- Steps to do after fetching the build elements -->
+<!-- ===================================================================== -->
+<target name="postFetch">
+</target>
+
+<!-- ===================================================================== -->
+<!-- Steps to do before generating the build scripts. -->
+<!-- ===================================================================== -->
+<target name="preGenerate">
+</target>
+
+<!-- ===================================================================== -->
+<!-- Steps to do after generating the build scripts. -->
+<!-- ===================================================================== -->
+<target name="postGenerate">
+</target>
+
+
+<!-- ===================================================================== -->
+<!-- Steps to do before running the build.xmls for the elements being built. -->
+<!-- ===================================================================== -->
+<target name="preProcess">
+</target>
+
+<!-- ===================================================================== -->
+<!-- Steps to do after running the build.xmls for the elements being built. -->
+<!-- ===================================================================== -->
+<target name="postProcess">
+</target>
+
+
+<!-- ===================================================================== -->
+<!-- Steps to do before running assemble. -->
+<!-- ===================================================================== -->
+<target name="preAssemble">
+</target>
+
+<!-- ===================================================================== -->
+<!-- Steps to do after running assemble. -->
+<!-- ===================================================================== -->
+<target name="postAssemble">
+</target>
+
+<!-- ===================================================================== -->
+<!-- Steps to do after the build is done. -->
+<!-- ===================================================================== -->
+<target name="postBuild">
+</target>
+
+<!-- ===================================================================== -->
+<!-- Steps to do to test the build results -->
+<!-- ===================================================================== -->
+<target name="test">
+</target>
+
+<!-- ===================================================================== -->
+<!-- Steps to do to publish the build results -->
+<!-- ===================================================================== -->
+<target name="publish">
+</target>
+
+<!-- ===================================================================== -->
+<!-- Default target -->
+<!-- ===================================================================== -->
+<target name="noDefault">
+ <echo message="You must specify a target when invoking this file" />
+</target>
+
+</project>
diff --git a/archive/releng.builder/components/wst/build.properties b/archive/releng.builder/components/wst/build.properties
new file mode 100644
index 0000000..c006c1f
--- /dev/null
+++ b/archive/releng.builder/components/wst/build.properties
@@ -0,0 +1,75 @@
+###############################################################################
+# Copyright (c) 2003, 2004 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Common Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/cpl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+#####################
+# Parameters describing how and where to execute the build.
+# Typical users need only update the following properties:
+# baseLocation - where things you are building against are installed
+# bootclasspath - The base jars to compile against (typicaly rt.jar)
+# configs - the list of {os, ws, arch} configurations to build.
+#
+# Of course any of the settings here can be overridden by spec'ing
+# them on the command line (e.g., -DbaseLocation=d:/eclipse
+
+############# CVS CONTROL ################
+# The CVS tag to use when fetching the map files from the repository
+mapVersionTag=HEAD
+
+############## BUILD / GENERATION CONTROL ################
+# The directory into which the build elements will be fetched and where
+# the build will take place.
+buildDirectory=c:/dev/build
+
+# Type of build. Used in naming the build output. Typically this value is
+# one of I, N, M, S, ...
+buildType=I
+
+# ID of the build. Used in naming the build output.
+buildId=Build
+
+# Label for the build. Used in naming the build output
+buildLabel=${buildType}.${buildId}
+
+# Timestamp for the build. Used in naming the build output
+timestamp=007
+
+# Base location for anything the build needs to compile against. For example,
+# when building GEF, the baseLocation should be the location of a previously
+# installed Eclipse against which the GEF code will be compiled.
+baseLocation=c:/dev/eclipse
+
+
+
+# The location underwhich all of the build output will be collected.
+collectingFolder=eclipse
+
+# The prefix that will be used in the generated archive.
+archivePrefix=eclipse
+
+# The list of {os, ws, arch} configurations to build. This
+# value is a '&' separated list of ',' separate triples. For example,
+# configs=win32,win32,x86 & linux,motif,x86
+# By default the value is *,*,*
+#configs=*,*,*
+
+#Arguments to send to the zip executable
+#zipargs=
+
+############# JAVA COMPILER OPTIONS ##############
+# The location of the Java jars to compile against. Typically the rt.jar for your JDK/JRE
+bootclasspath=C:/j2sdk1.4.2_04/jre/lib/rt.jar
+
+# Whether or not to include debug info in the output jars
+javacDebugInfo=false
+
+# Whether or not to fail the build if there are compiler errors
+javacfailonerror=true
+
+zipargs=
diff --git a/archive/releng.builder/components/wst/customTargets.xml b/archive/releng.builder/components/wst/customTargets.xml
new file mode 100644
index 0000000..a3d7a70
--- /dev/null
+++ b/archive/releng.builder/components/wst/customTargets.xml
@@ -0,0 +1,208 @@
+<project name="Build specific targets and properties" default="noDefault" >
+
+<!-- ===================================================================== -->
+<!-- Run a given ${target} on all elements being built -->
+<!-- Add on <ant> task for each top level element being built. -->
+<!-- ===================================================================== -->
+<target name="allElements">
+ <echo message="Target:${target} " />
+ <echo message="basedir: ${basedir}"/>
+ <echo message="component: ${component}"/>
+ <echo message="buildDirectory: ${buildDirectory}"/>
+ <echo message="baseLocation: ${baseLocation}" />
+ <ant antfile="${genericTargets}" target="${target}" >
+ <property name="type" value="feature" />
+ <property name="id" value="org.eclipse.wst" />
+ </ant>
+</target>
+
+<!-- ===================================================================== -->
+<!-- Targets to assemble the built elements for particular configurations -->
+<!-- These generally call the generated assemble scripts (named in -->
+<!-- ${assembleScriptName}) but may also add pre and post processing -->
+<!-- Add one target for each root element and each configuration -->
+<!-- ===================================================================== -->
+
+<target name="assemble.org.eclipse.wst">
+ <property name="archiveName" value="wtp-wst-${buildId}.zip"/>
+ <ant antfile="${assembleScriptName}" dir="${buildDirectory}"/>
+</target>
+
+<!-- ===================================================================== -->
+<!-- Check out map files from correct repository -->
+<!-- Replace values for cvsRoot, package and mapVersionTag as desired. -->
+<!-- ===================================================================== -->
+ <target name="checkLocal">
+ <available property="mapsLocal" file="${buildDirectory}/maps" />
+ </target>
+ <target name="getMapFiles" depends="checkLocal" unless="mapsLocal">
+
+ <!-- *** change the repo info -->
+ <property name="mapCvsRoot" value=":${cvsProtocol}:${cvsUser}@${cvsServer}:${cvsRoot}" />
+ <property name="mapVersionTag" value="HEAD" />
+ <cvs cvsRoot="${mapCvsRoot}"
+
+ package="releng/maps"
+ dest="${buildDirectory}/maps"
+ tag="${mapVersionTag}"
+ />
+ <!--tag the map files project-->
+ <antcall target="tagMapFiles" />
+ </target>
+
+ <target name="tagMapFiles" if="tagMaps">
+ <cvs dest="${buildDirectory}/maps" command="tag v${timestamp}" />
+ </target>
+
+
+<!-- ===================================================================== -->
+<!-- Steps to do before setup -->
+<!-- ===================================================================== -->
+<target name="preSetup">
+</target>
+
+<!-- ===================================================================== -->
+<!-- Steps to do after setup but before starting the build proper -->
+<!-- ===================================================================== -->
+<target name="postSetup">
+</target>
+
+<!-- ===================================================================== -->
+<!-- Steps to do before fetching the build elements -->
+<!-- ===================================================================== -->
+<target name="preFetch">
+</target>
+
+<!-- ===================================================================== -->
+<!-- Steps to do after fetching the build elements -->
+<!-- ===================================================================== -->
+<target name="postFetch">
+ <!--
+ <ant antfile="${relengDir}/fetchVendorContent.xml">
+ <property name="basedir" value="${relengDir}"/>
+ <property name="buildDirectory" value="${buildDirectory}/plugins"/>
+ <property name="sdk" value="true"/>
+ </ant>
+ -->
+</target>
+
+<!-- ===================================================================== -->
+<!-- Steps to do before generating the build scripts. -->
+<!-- ===================================================================== -->
+<target name="preGenerate">
+</target>
+
+<!-- ===================================================================== -->
+<!-- Steps to do after generating the build scripts. -->
+<!-- ===================================================================== -->
+<target name="postGenerate">
+</target>
+
+
+<!-- ===================================================================== -->
+<!-- Steps to do before running the build.xmls for the elements being built. -->
+<!-- ===================================================================== -->
+<target name="preProcess">
+ <replace dir="${buildDirectory}/plugins" value="${timestamp}" token="@build@">
+ <include name="**/about.mappings" />
+ </replace>
+</target>
+
+<!-- ===================================================================== -->
+<!-- Steps to do after running the build.xmls for the elements being built. -->
+<!-- ===================================================================== -->
+<target name="postProcess">
+ <condition property="logsAvailable">
+ <istrue value="${javacVerbose}" />
+ </condition>
+ <antcall target="gatherLogs" />
+</target>
+
+
+<!-- ===================================================================== -->
+<!-- Steps to do before running assemble. -->
+<!-- ===================================================================== -->
+<target name="preAssemble">
+ <ant antfile="${buildDirectory}/plugins/org.eclipse.wst.ws.explorer/build-war.xml">
+ <property name="baseLocation" value="${baseLocation}"/>
+ <property name="basedir" value="${buildDirectory}/plugins/org.eclipse.wst.ws.explorer"/>
+ <property name="buildDirectory" value="${buildDirectory}"/>
+ </ant>
+
+<!--
+ <ant antfile="${buildDirectory}/plugins/org.eclipse.wst.ws.explorer/build-war.xml">
+ <property name="baseLocation" value="${baseLocation}"/>
+ <property name="buildDirectory" value="${buildDirectory}"/>
+ </ant>
+-->
+ <!--
+ <ant antfile="${relengDir}/fetchVendorContent.xml" target="cleanup">
+ <property name="basedir" value="${relengDir}"/>
+ <property name="buildDirectory" value="${buildDirectory}/plugins"/>
+ <property name="sdk" value="true"/>
+ </ant>
+ -->
+</target>
+
+<!-- ===================================================================== -->
+<!-- Steps to do after running assemble. -->
+<!-- ===================================================================== -->
+<target name="postAssemble">
+ <!--
+ <ant antfile="${relengDir}/fetchVendorContent.xml">
+ <property name="basedir" value="${relengDir}"/>
+ <property name="buildDirectory" value="${buildDirectory}/plugins"/>
+ <property name="sdk" value="true"/>
+ </ant>
+ -->
+</target>
+
+<!-- ===================================================================== -->
+<!-- Steps to do after the build is done. -->
+<!-- ===================================================================== -->
+<target name="postBuild">
+</target>
+
+<!-- ===================================================================== -->
+<!-- Steps to do to test the build results -->
+<!-- ===================================================================== -->
+<target name="test">
+</target>
+
+<!-- ===================================================================== -->
+<!-- Steps to do to publish the build results -->
+<!-- ===================================================================== -->
+<target name="publish">
+</target>
+
+
+<!-- ===================================================================== -->
+<!-- Helper targets -->
+<!-- ===================================================================== -->
+<target name="gatherLogs" if="logsAvailable">
+ <mkdir dir="${buildDirectory}/${buildLabel}/compilelogs" />
+ <antcall target="allElements">
+ <param name="target" value="gatherLogs" />
+ </antcall>
+
+ <unzip dest="${buildDirectory}/${buildLabel}/compilelogs" overwrite="true">
+ <fileset dir="${buildDirectory}/features/org.eclipse.wst">
+ <include name="*.log.zip" />
+ </fileset>
+ </unzip>
+</target>
+
+<target name="clean" unless="noclean">
+ <antcall target="allElements">
+ <param name="target" value="cleanElement" />
+ </antcall>
+</target>
+
+<!-- ===================================================================== -->
+<!-- Default target -->
+<!-- ===================================================================== -->
+<target name="noDefault">
+ <echo message="You must specify a target when invoking this file" />
+</target>
+
+</project>
diff --git a/archive/releng.builder/docs/faq.html b/archive/releng.builder/docs/faq.html
new file mode 100644
index 0000000..a60e8ce
--- /dev/null
+++ b/archive/releng.builder/docs/faq.html
@@ -0,0 +1,106 @@
+<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
+<html>
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
+<link rel="stylesheet" href="http://dev.eclipse.org/default_style.css" type="text/css">
+<title>Download</title>
+<style type="text/css">
+<!--
+.style1 {
+ font-size: 12px;
+ font-weight: bold;
+}
+-->
+</style>
+</head>
+
+<body>
+ <table BORDER=0 CELLSPACING=5 CELLPADDING=2 WIDTH="100%" ><tr><td ALIGN=LEFT width="80%">
+<p><b><font face="Verdana" size="+3">WTP Build FAQ </font></b><br>
+Last Updated: October 20, 2004</p>
+<p><b>Table
+of Contents</b><br>
+<br>
+<a href="#newplugin"><b>How to add a plugin project</b></a><br>
+<a href="#newtestplugin"><b>How to add a test plugin project</b></a><br>
+<a href="#newfeature"><b>How to add a new feature</b></a><br>
+<br>
+</p></td></tr>
+</table>
+
+
+<table border=0 cellspacing=5 cellpadding=2 width="100%" ><tr>
+<td align=LEFT valign=TOP colspan="3" bgcolor="#0080C0"> <b><font face="Arial,Helvetica" color="#FFFFFF"><a name="newplugin"></a><B>How to add a plugin project?</B></FONT></b></td>
+</tr>
+<TR><TD height="150" colspan="3" align="LEFT" valign="TOP">
+
+
+<OL>
+ <LI>
+ <P>Commit your plugin into a feature which it belongs to (wst or jst) </p>
+ <LI>Add your plugin project to the according map file.(Map file of wst feature is <a href="http://dev.eclipse.org/viewcvs/indexwebtools.cgi/org.eclipse.wtp.releng/maps/wst.map?rev=1.8&content-type=text/vnd.viewcvs-markup">wst.map</a>, jst feature is <a href="http://dev.eclipse.org/viewcvs/indexwebtools.cgi/org.eclipse.wtp.releng/maps/jst.map?rev=1.7&content-type=text/vnd.viewcvs-markup">jst.map</a>)
+ <br>
+ <LI>Put required plugin zip files to localdownloads dir. Add these zip files to <a href="http://dev.eclipse.org/viewcvs/indexwebtools.cgi/org.eclipse.wtp.releng/maps/build.cfg?rev=1.1&content-type=text/vnd.viewcvs-markup">build.cfg</a> file.
+ <BR>
+ <LI>Unzip required plugins at unzipEclipse and unzipTestEclipse tasks in <a href="http://dev.eclipse.org/viewcvs/indexwebtools.cgi/org.eclipse.wtp.releng/buildAll.xml?rev=1.6&content-type=text/vnd.viewcvs-markup">buildAll.xml</a> file.
+ </OL></td></tr></table>
+
+<table border=0 cellspacing=5 cellpadding=2 width="100%" ><tr>
+<td align=LEFT valign=TOP colspan="3" bgcolor="#0080C0"> <b><font face="Arial,Helvetica" color="#FFFFFF">
+<a name="newtestplugin"></a>How to add a test plugin project?</font></b></td>
+</tr>
+
+<TR><TD height="61" colspan="3" align="LEFT" valign="TOP">
+ <OL>
+ <LI>
+ <P>Commit your plugin into a feature which it belongs to (wst or jst)
+ <LI><p>Add your plugin project to the according map file.(Map file of wst feature is <a href="http://dev.eclipse.org/viewcvs/indexwebtools.cgi/org.eclipse.wtp.releng/maps/wst-server-tests.map?rev=1.7&content-type=text/vnd.viewcvs-markup">wst-server-tests.map</a>, jst feature is <a href="http://dev.eclipse.org/viewcvs/indexwebtools.cgi/org.eclipse.wtp.releng/maps/jst-server-tests.map?rev=1.3&content-type=text/vnd.viewcvs-markup">jst-server-tests.map</a>)
+ </OL>
+ </TD>
+</TR></table>
+
+<table border=0 cellspacing=5 cellpadding=2 width="100%" ><tr>
+<td align=LEFT valign=TOP colspan="3" bgcolor="#0080C0"> <b><font face="Arial,Helvetica" color="#FFFFFF">
+<a name="newfeature"></a>How to add a new feature</font></b></td>
+</tr>
+
+<TR><TD height="156" colspan="3" align="LEFT" valign="TOP">
+ <OL>
+ <LI><p>Commit your feature project in (It must be under a feature folder Ex: <a href="http://dev.eclipse.org/viewcvs/indexwebtools.cgi/wst/components/server/features/org.eclipse.wst.server/">org.eclipse.wst.server</a>)
+<LI>
+ <p>In the <a href="http://dev.eclipse.org/viewcvs/indexwebtools.cgi/wst/components/server/features/org.eclipse.wst.server/feature.xml?rev=1.3&content-type=text/vnd.viewcvs-markup">feature.xml</a>, include your plugin projects in <plugin> tag.
+<LI>
+ <p> In the <a href="http://dev.eclipse.org/viewcvs/indexwebtools.cgi/wst/components/server/features/org.eclipse.wst.server/feature.xml?rev=1.3&content-type=text/vnd.viewcvs-markup">feature.xml</a>, include required plugins in <requires> tag.
+<LI>
+ <p> Create your feature map file under <a href="http://dev.eclipse.org/viewcvs/indexwebtools.cgi/org.eclipse.wtp.releng/maps/">org.eclipse.wtp.releng/maps</a> folder (Ex : <a href="http://dev.eclipse.org/viewcvs/indexwebtools.cgi/org.eclipse.wtp.releng/maps/wst.map?rev=1.8&content-type=text/vnd.viewcvs-markup">wst.map</a>) <br>
+ Creating map files are described <a href="readme.html#mapfile">here</a>
+<LI>Create a directory under org.eclipse.wtp.releng for your feature. (Ex: <a href="http://dev.eclipse.org/viewcvs/indexwebtools.cgi/org.eclipse.wtp.releng/wst/">wst</a>)<br>
+ Put build.properties and customTargets.xml to your feature folder. (Simply copy from other feature's folder)<br>
+ Edit your customTargets.xml file and arrange your allElements, assemble..., gatherLogs targets.<br>
+ <LI>
+ Edit <a href="http://dev.eclipse.org/viewcvs/indexwebtools.cgi/org.eclipse.wtp.releng/buildAll.xml?rev=1.6&content-type=text/vnd.viewcvs-markup">buildAll.xml</a> file and put your feature in buildAll target.
+ </OL>
+ </TD>
+</TR>
+</table>
+
+
+
+
+
+<p></p>
+<table border=0 cellspacing=5 cellpadding=2 width="100%" >
+ <tr>
+<td align=LEFT valign=TOP colspan="3" bgcolor="#999999">
+<b><font face="Arial,Helvetica" color="#FFFFFF">
+<a name="team"></a>WTP Release Engineering Team</font></b></td>
+</tr>
+
+<TR>
+<TD height="23" colspan="3" align="LEFT" valign="TOP">
+Deniz Secilir (deniz.secilir_at_eteration.com)<br>
+Dominique Devito (dominique.devito_at_objectweb.org)</TD>
+</TR></table>
+
+
+</html>
diff --git a/archive/releng.builder/docs/project_plan.html b/archive/releng.builder/docs/project_plan.html
new file mode 100644
index 0000000..7a4eb04
--- /dev/null
+++ b/archive/releng.builder/docs/project_plan.html
@@ -0,0 +1,498 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<html>
+<head>
+ <meta http-equiv="Content-Type"
+ content="text/html; charset=iso-8859-1">
+ <link rel="stylesheet" href="http://dev.eclipse.org/default_style.css"
+ type="text/css">
+ <title>Project Plan</title>
+ <style type="text/css">
+<!--
+.style1 {
+ font-size: 12px;
+ font-weight: bold;
+}
+-->
+ </style>
+</head>
+<body>
+<div>
+<p><span style="font-weight: bold;"></span></p>
+<table style="width: 100%; text-align: left;" border="0" cellpadding="2"
+ cellspacing="2">
+ <tbody>
+ <tr>
+ <td style="vertical-align: top;" bgcolor="#0080c0"><font
+ color="#ffffff" face="Arial,Helvetica"><span style="font-weight: bold;">Build
+Plan For WTP</span><b><b><br>
+ </b></b></font></td>
+ </tr>
+ <tr>
+ <td style="vertical-align: top;">Here are the general principles:<br>
+1) We follows Eclipse 3.1 builds by a 1 week lag-time (which are on
+Fridays)<br>
+2) We will have integration builds on every Thursday<br>
+3) WTP 1.0M* builds will be on the friday following an eclipse build.<br>
+4) There will be a nightly build from the HEAD every other night.<br>
+5) Notify the wtp releng team if you have build requirements (i.e.
+prereq software,
+other project dependencies etc.) </td>
+ </tr>
+ <tr>
+ <td style="vertical-align: top;">The committers are recommended
+to
+follow the build workflow: </td>
+ </tr>
+ <tr>
+ <td style="vertical-align: top;">1) The fridays/weekend leading
+to the Monday build build test your
+code with the new Eclipse M build.<br>
+2) Label your code in CVS with the .map files labels for the Thursday
+integration build.<br>
+3) Add remove any new features/plugins to feature.xml / .map files at
+releng.<br>
+4) Wednesday at 6 PM GMT+2 integration build will trigger. Check the
+results of this build and your tests. You will have until wednesday to
+remedy any problems.<br>
+5) Label your code in CVS with the .map files labels for the Thursday
+integration build.<br>
+6) Thursday
+at 6 PM GMT+2 integration build will trigger. Check the
+results of this build and your tests. You will have until friday to
+remedy any problems.<br>
+7) Friday at 6 PM GMT+2 Milestone build will trigger. Check the results
+of this build and your tests. <br>
+8) If there are problems with this build let me know, We will have
+patch build for Saturday to remedy any problems. This is only an
+EMERGENCY step. </td>
+ </tr>
+ <tr>
+ <td style="vertical-align: top;">The following documents in CVS
+outline the build process, and what
+committers need to do in order to be a part of the build process, and
+add tests, etc.<br>
+ <a class="moz-txt-link-freetext"
+ href="https://dev.eclipse.org/viewcvs/indexwebtools.cgi/%7Echeckout%7E/org.eclipse.wtp.releng/readme.html">https://dev.eclipse.org/viewcvs/indexwebtools.cgi/~checkout~/org.eclipse.wtp.releng/readme.html</a><br>
+ <a class="moz-txt-link-freetext"
+ href="https://dev.eclipse.org/viewcvs/indexwebtools.cgi/%7Echeckout%7E/org.eclipse.wtp.releng/faq.html">https://dev.eclipse.org/viewcvs/indexwebtools.cgi/~checkout~/org.eclipse.wtp.releng/faq.html</a>
+ </td>
+ </tr>
+ </tbody>
+</table>
+<br>
+<br>
+<table style="width: 100%; text-align: left;" border="1" cellpadding="2"
+ cellspacing="2">
+ <tbody>
+ <tr>
+ <td colspan="3" rowspan="1" style="vertical-align: top;"
+ bgcolor="#0080c0"><font color="#ffffff" face="Arial,Helvetica"><span
+ style="font-weight: bold;">Calendar
+And Labels For CVS Builds</span><b><b><br>
+ </b></b></font></td>
+ </tr>
+ <tr>
+ <td style="vertical-align: top;"><span style="font-weight: bold;">Build
+Type</span><br>
+ </td>
+ <td style="vertical-align: top;"><span style="font-weight: bold;">Date</span><br>
+ </td>
+ <td style="vertical-align: top;"><span style="font-weight: bold;">Requirements</span><br>
+ </td>
+ </tr>
+ <tr>
+ <td style="vertical-align: top;">WTP
+1.0M2
+Integration Build I20041118</td>
+ <td style="vertical-align: top;">Thursday, November 18, 2004</td>
+ <td style="vertical-align: top;">Eclipse 3.1 M3 Release<br>
+EMF I200410220709 Release<br>
+GEF-SDK-3.1M3 Release<br>
+JEM-runtime-1.0.1.1 Release<br>
+ </td>
+ </tr>
+ <tr>
+ <td
+ style="vertical-align: top; background-color: rgb(221, 221, 221);">WTP
+1.0M2
+Integration Build I20041125</td>
+ <td
+ style="vertical-align: top; background-color: rgb(221, 221, 221);">Thursday,
+November 25, 2004</td>
+ <td
+ style="vertical-align: top; background-color: rgb(221, 221, 221);">Eclipse
+3.1 M3 Release<br>
+EMF I200410220709 Release<br>
+GEF-SDK-3.1M3 Release<br>
+JEM-runtime-1.0.1.1 Release</td>
+ </tr>
+ <tr>
+ <td style="vertical-align: top;">WTP
+1.0M2
+Integration Build I20041202</td>
+ <td style="vertical-align: top;">Thursday, December 2, 2004</td>
+ <td style="vertical-align: top;">Eclipse 3.1 M3 Release<br>
+EMF Ixxxx Release<br>
+GEF-SDK-xxxx Release<br>
+JEM-runtime-xxxx Release<br>
+ </td>
+ </tr>
+ <tr>
+ <td
+ style="vertical-align: top; background-color: rgb(221, 221, 221);">WTP
+1.0M2
+Integration Build I20041209</td>
+ <td
+ style="vertical-align: top; background-color: rgb(221, 221, 221);">Thursday,
+December 9, 2004</td>
+ <td
+ style="vertical-align: top; background-color: rgb(221, 221, 221);">Eclipse
+3.1 M3 Release<br>
+EMF Ixxxx Release<br>
+GEF-SDK-xxxx Release<br>
+JEM-runtime-xxxx Release<br>
+ </td>
+ </tr>
+ <tr>
+ <td style="vertical-align: top;">WTP
+1.0M2
+Integration Build I20041216</td>
+ <td style="vertical-align: top;">Thursday, December 16, 2004</td>
+ <td style="vertical-align: top;">Eclipse 3.1 M3 Release<br>
+EMF Ixxxx Release<br>
+GEF-SDK-xxxx Release<br>
+JEM-runtime-xxxx Release<br>
+ </td>
+ </tr>
+ <tr>
+ <td style="vertical-align: top;"><font color="#ff0000"><b>Eclipse
+3.1M4 Release</b><b><br>
+ </b></font> </td>
+ <td style="vertical-align: top; width: 30%;"><font color="#ff0000"><b>Friday,
+December 17, 2004</b></font></td>
+ <td style="vertical-align: top; width: 20%;"><br>
+ </td>
+ </tr>
+ <tr>
+ <td
+ style="vertical-align: top; background-color: rgb(255, 255, 255);">WTP
+1.0M2
+Integration Build I20041223<br>
+ <b><br>
+ </b> </td>
+ <td
+ style="vertical-align: top; width: 30%; background-color: rgb(255, 255, 255);">Thursday,
+December 23, 2004</td>
+ <td
+ style="vertical-align: top; width: 20%; background-color: rgb(255, 255, 255);">Eclipse
+3.1M4 Release <br>
+EMF Ixxxx Release<br>
+GEF-SDK-xxxx Release<br>
+JEM-runtime-xxxx Release</td>
+ </tr>
+ <tr>
+ <td
+ style="vertical-align: top; background-color: rgb(221, 221, 221);"><b><font
+ color="#330099">WTP 1.0M2<br>
+ <br>
+ </font></b> </td>
+ <td
+ style="vertical-align: top; width: 30%; background-color: rgb(221, 221, 221);"><b><font
+ color="#330099">Friday, December 24, 2004</font></b></td>
+ <td
+ style="vertical-align: top; width: 20%; background-color: rgb(221, 221, 221);"><b><font
+ color="#330099">Eclipse 3.1M4 Release <br>
+EMF Ixxxx Release</font></b></td>
+ </tr>
+ <tr>
+ <td style="vertical-align: top;">WTP
+1.0M3
+Integration Build I20041230</td>
+ <td style="vertical-align: top;">Thursday,
+December 30, 2004</td>
+ <td style="vertical-align: top;">Eclipse
+3.1M4 Release <br>
+EMF Ixxxx Release<br>
+GEF-SDK-xxxx Release<br>
+JEM-runtime-xxxx Release</td>
+ </tr>
+ <tr>
+ <td
+ style="vertical-align: top; background-color: rgb(221, 221, 221);">WTP
+1.0M3
+Integration Build I20050106</td>
+ <td
+ style="vertical-align: top; background-color: rgb(221, 221, 221);">Thursday,
+January 6, 2005</td>
+ <td
+ style="vertical-align: top; background-color: rgb(221, 221, 221);">Eclipse
+3.1M4 Release <br>
+EMF Ixxxx Release<br>
+GEF-SDK-xxxx Release<br>
+JEM-runtime-xxxx Release</td>
+ </tr>
+ <tr>
+ <td style="vertical-align: top;">WTP
+1.0M3
+Integration Build I20050113</td>
+ <td style="vertical-align: top;">Thursday, January 13, 2005</td>
+ <td style="vertical-align: top;">Eclipse
+3.1M4 Release <br>
+EMF Ixxxx Release<br>
+GEF-SDK-xxxx Release<br>
+JEM-runtime-xxxx Release</td>
+ </tr>
+ <tr>
+ <td
+ style="vertical-align: top; background-color: rgb(221, 221, 221);">WTP
+1.0M3
+Integration Build I20050120</td>
+ <td
+ style="vertical-align: top; background-color: rgb(221, 221, 221);">Thursday,
+January 20, 2005</td>
+ <td
+ style="vertical-align: top; background-color: rgb(221, 221, 221);">Eclipse
+3.1M4 Release <br>
+EMF Ixxxx Release<br>
+GEF-SDK-xxxx Release<br>
+JEM-runtime-xxxx Release</td>
+ </tr>
+ <tr>
+ <td style="vertical-align: top;">WTP
+1.0M3
+Integration Build I20050127</td>
+ <td style="vertical-align: top;">Thursday, January 27, 2005</td>
+ <td style="vertical-align: top;">Eclipse
+3.1M4 Release <br>
+EMF Ixxxx Release<br>
+GEF-SDK-xxxx Release<br>
+JEM-runtime-xxxx Release</td>
+ </tr>
+ <tr>
+ <td
+ style="vertical-align: top; background-color: rgb(221, 221, 221);">WTP
+1.0M3
+Integration Build I20050203</td>
+ <td
+ style="vertical-align: top; background-color: rgb(221, 221, 221);">Thursday,
+February 03, 2005</td>
+ <td
+ style="vertical-align: top; background-color: rgb(221, 221, 221);">Eclipse
+3.1M4 Release <br>
+EMF Ixxxx Release<br>
+GEF-SDK-xxxx Release<br>
+JEM-runtime-xxxx Release</td>
+ </tr>
+ <tr>
+ <td style="vertical-align: top;">WTP
+1.0M3
+Integration Build I20050210</td>
+ <td style="vertical-align: top;">Thursday, February 10, 2005</td>
+ <td style="vertical-align: top;">Eclipse
+3.1M4 Release <br>
+EMF Ixxxx Release<br>
+GEF-SDK-xxxx Release<br>
+JEM-runtime-xxxx Release</td>
+ </tr>
+ <tr>
+ <td
+ style="vertical-align: top; background-color: rgb(221, 221, 221);">WTP
+1.0M3
+Integration Build I20050217</td>
+ <td
+ style="vertical-align: top; background-color: rgb(221, 221, 221);">Thursday,
+February 17, 2005</td>
+ <td
+ style="vertical-align: top; background-color: rgb(221, 221, 221);">Eclipse
+3.1M4 Release <br>
+EMF Ixxxx Release<br>
+GEF-SDK-xxxx Release<br>
+JEM-runtime-xxxx Release</td>
+ </tr>
+ <tr>
+ <td style="vertical-align: top;"><font color="#ff0000"><b>Eclipse
+3.1M5 Release</b><b><br>
+ </b></font></td>
+ <td style="vertical-align: top; width: 30%;"><font color="#ff0000"><b>Friday,
+February 18, 2005</b></font></td>
+ <td style="vertical-align: top; width: 20%;"><br>
+ </td>
+ </tr>
+ <tr>
+ <td
+ style="vertical-align: top; background-color: rgb(221, 221, 221);">WTP
+1.0M3
+Integration Build I20050224<br>
+ <b><br>
+ </b></td>
+ <td
+ style="vertical-align: top; width: 30%; background-color: rgb(221, 221, 221);">Monday,
+February 24, 2005</td>
+ <td
+ style="vertical-align: top; width: 20%; background-color: rgb(221, 221, 221);">Eclipse
+3.1M5 Release <br>
+EMF Ixxxx Release<br>
+GEF-SDK-xxxx Release<br>
+JEM-runtime-xxxx Release</td>
+ </tr>
+ <tr>
+ <td
+ style="vertical-align: top; background-color: rgb(255, 255, 255);"><b><font
+ color="#330099">WTP 1.0M3<br>
+ <br>
+ </font></b></td>
+ <td
+ style="vertical-align: top; width: 30%; background-color: rgb(255, 255, 255);"><b><font
+ color="#330099">Friday, February 25, 2005</font></b></td>
+ <td
+ style="vertical-align: top; width: 20%; background-color: rgb(255, 255, 255);"><b><font
+ color="#330099">Eclipse 3.1M5 Release<br>
+EMF Ixxxx Release</font></b></td>
+ </tr>
+ <tr>
+ <td
+ style="vertical-align: top; background-color: rgb(221, 221, 221);"><b><font
+ color="#ff0000">Eclipse
+3.1M6 Release<br>
+ </font> </b></td>
+ <td
+ style="vertical-align: top; width: 30%; background-color: rgb(221, 221, 221);"><b><font
+ color="#ff0000">Friday, April 01, 2005</font></b></td>
+ <td
+ style="vertical-align: top; width: 20%; background-color: rgb(221, 221, 221);"><br>
+ </td>
+ </tr>
+ <tr>
+ <td
+ style="vertical-align: top; background-color: rgb(255, 255, 255);">WTP
+1.0M4
+Integration Build I20050303<br>
+ <b><br>
+ </b></td>
+ <td
+ style="vertical-align: top; width: 30%; background-color: rgb(255, 255, 255);">Monday,
+March 03, 2005</td>
+ <td
+ style="vertical-align: top; width: 20%; background-color: rgb(255, 255, 255);">Eclipse
+3.1M6 Release<br>
+EMF Ixxxx Release<br>
+GEF-SDK-xxxx Release<br>
+JEM-runtime-xxxx Release</td>
+ </tr>
+ <tr>
+ <td
+ style="vertical-align: top; background-color: rgb(221, 221, 221);">WTP
+1.0M4
+Integration Build I20050310<br>
+ <b><br>
+ </b></td>
+ <td
+ style="vertical-align: top; width: 30%; background-color: rgb(221, 221, 221);">Monday,
+March 10, 2005</td>
+ <td
+ style="vertical-align: top; width: 20%; background-color: rgb(221, 221, 221);">Eclipse
+3.1M6 Release<br>
+EMF Ixxxx Release<br>
+GEF-SDK-xxxx Release<br>
+JEM-runtime-xxxx Release</td>
+ </tr>
+ <tr>
+ <td
+ style="vertical-align: top; background-color: rgb(255, 255, 255);">WTP
+1.0M4
+Integration Build I20050317<br>
+ <b><br>
+ </b></td>
+ <td
+ style="vertical-align: top; width: 30%; background-color: rgb(255, 255, 255);">Monday,
+March 17, 2005</td>
+ <td
+ style="vertical-align: top; width: 20%; background-color: rgb(255, 255, 255);">Eclipse
+3.1M6 Release<br>
+EMF Ixxxx Release<br>
+GEF-SDK-xxxx Release<br>
+JEM-runtime-xxxx Release</td>
+ </tr>
+ <tr>
+ <td
+ style="vertical-align: top; background-color: rgb(221, 221, 221);">WTP
+1.0M4
+Integration Build I20050324<br>
+ <b><br>
+ </b></td>
+ <td
+ style="vertical-align: top; width: 30%; background-color: rgb(221, 221, 221);">Monday,
+March 24, 2005</td>
+ <td
+ style="vertical-align: top; width: 20%; background-color: rgb(221, 221, 221);">Eclipse
+3.1M6 Release<br>
+EMF Ixxxx Release<br>
+GEF-SDK-xxxx Release<br>
+JEM-runtime-xxxx Release</td>
+ </tr>
+ <tr>
+ <td
+ style="vertical-align: top; background-color: rgb(255, 255, 255);">WTP
+1.0M4
+Integration Build I20050331<br>
+ <b><br>
+ </b></td>
+ <td
+ style="vertical-align: top; width: 30%; background-color: rgb(255, 255, 255);">Monday,
+March 31, 2005</td>
+ <td
+ style="vertical-align: top; width: 20%; background-color: rgb(255, 255, 255);">Eclipse
+3.1M6 Release<br>
+EMF Ixxxx Release<br>
+GEF-SDK-xxxx Release<br>
+JEM-runtime-xxxx Release</td>
+ </tr>
+ <tr>
+ <td
+ style="vertical-align: top; background-color: rgb(221, 221, 221);">WTP
+1.0M4
+Integration Build I20050407<br>
+ <b><br>
+ </b></td>
+ <td
+ style="vertical-align: top; width: 30%; background-color: rgb(221, 221, 221);">Monday,
+April 07, 2005</td>
+ <td
+ style="vertical-align: top; width: 20%; background-color: rgb(221, 221, 221);">Eclipse
+3.1M6 Release<br>
+EMF Ixxxx Release<br>
+GEF-SDK-xxxx Release<br>
+JEM-runtime-xxxx Release</td>
+ </tr>
+ <tr>
+ <td
+ style="vertical-align: top; background-color: rgb(255, 255, 255);"><b><font
+ color="#330099">WTP 1.0M4<br>
+ </font> </b></td>
+ <td
+ style="vertical-align: top; width: 30%; background-color: rgb(255, 255, 255);"><b><font
+ color="#330099">Friday, April 08, 2005</font></b></td>
+ <td
+ style="vertical-align: top; width: 20%; background-color: rgb(255, 255, 255);"><br>
+ </td>
+ </tr>
+ </tbody>
+</table>
+<br>
+<table border="0" cellpadding="2" cellspacing="5" width="100%">
+ <tbody>
+ <tr>
+ <td colspan="3" align="left" bgcolor="#999999" valign="top"><b><font
+ color="#ffffff" face="Arial,Helvetica">WTP Release Engineering Team</font></b></td>
+ </tr>
+ <tr>
+ <td colspan="3" align="left" height="23" valign="top">Deniz
+Secilir (deniz.secilir_at_eteration.com)<br>
+Dominique Devito (dominique.devito_at_objectweb.org)</td>
+ </tr>
+ </tbody>
+</table>
+<br>
+</div>
+</body>
+</html>
diff --git a/archive/releng.builder/docs/readme.html b/archive/releng.builder/docs/readme.html
new file mode 100644
index 0000000..dcf3934
--- /dev/null
+++ b/archive/releng.builder/docs/readme.html
@@ -0,0 +1,695 @@
+<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
+<html>
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
+<link rel="stylesheet" href="http://dev.eclipse.org/default_style.css" type="text/css">
+<title>Download</title>
+<style type="text/css">
+<!--
+.style1 {
+ font-size: 12px;
+ font-weight: bold;
+}
+-->
+</style>
+</head>
+
+<body>
+ <table BORDER=0 CELLSPACING=5 CELLPADDING=2 WIDTH="100%" ><tr><td ALIGN=LEFT width="80%">
+<p><b><font face="Verdana" size="+3">WTP Builds</font></b><br>
+Last Updated: October 20, 2004</p>
+<p>This document describes the build policy and how to build WTP components from
+ the command line using Ant scripts.</p>
+<p><b>Table
+of Contents</b><br>
+<br>
+<a href="#policy">Build Policy</a><br>
+<a href="#tools">Tools</a><br>
+<a href="#setup">Setup</a><br>
+<a href="#build">Run the Build</a><br>
+<a href="#antbuildproperties">Ant
+properties defined build.properties</a><br>
+<a href="#infra">Build Infrastructure</a><br>
+<a href="#cvs">CVS Structure</a><br>
+<a href="#mapfile">Map File</a><br>
+<A href="gensource">Generating source features and plug-ins at build time</a><br>
+<a href="#team">Release Team</a><br>
+<br>
+</p></td></tr>
+</table>
+
+
+<table border=0 cellspacing=5 cellpadding=2 width="100%" ><tr>
+<td align=LEFT valign=TOP colspan="3" bgcolor="#0080C0"> <b><font face="Arial,Helvetica" color="#FFFFFF"><a name="policy"></a>Build
+ Policy</font></b></td>
+</tr>
+<TR><TD align="LEFT" valign="TOP" colspan="3">
+
+<P>The process described here is modeled after other eclipse build processes,
+ and borrows general principles from other sources, some of which are described
+in detail by the document http://www.martinfowler.com/articles/continuousIntegration.html.</P>
+<strong>General principles:</strong><ol><li><strong>Automatic and continuos: </strong>A build must be a fully automated and reproducible,
+ must include quality assurance (i.e. testing), and must be able to run as often
+ as possible. Automatic build processes are more reliable and higher quality
+ than manually and ensure that most obvious errors during a build. It is less
+ risky, it is independent of a human builder, it is repeatable and communicable.
+ It is typically faster than a manual build. Finally it allows for built-in
+ QA process by integration tests and post-processing such as potentially running
+ metrics on the code. A build must be a fully automated and reproducible, must
+ include quality assurance (i.e. testing), and must be able to run as often
+ as possible.that runs many times a day.
+
+This imposes some constraints:
+Storage - CVS Provides a common place where all code lives and anyone can obtain
+ the current sources from.
+Scripting: Use a single command to build the system from the sources. An automated
+ build process and scripting suitable for eclipse projects is described in http://dev.eclipse.org/viewcvs/index.cgi/~checkout~/org.eclipse.releng.basebuilder/readme.html?rev=1.21&content-type=text/plain.
+ We should follow similar principles as they have already build the tools and
+ the scripts to automate eclipse builds. Testing: Automate the testing so that
+ you can run a good suite of tests on the system at any time with a single command.
+
+
+A frequency of minimum one build a day seems often enough for geographically
+ and logistically challenging projects such as WTP. It is also important to
+ describe what will happen when a build fails. Typically, it is assumed that
+sending an email will suffice as an action. This is not so. A build must succeed!</li>
+<li><strong>A build must succeed, it should not be an attempt.</strong> A build
+ is a success if:
+ <ul>
+ <li>All the sources are checked out of the configuration management system
+ as described by the .map (not necessarily the latest) files. Every file
+ is compiled
+ from
+ scratch
+ The resulting object files (Java classes in our case) and linked and
+ deployed for execution (put into jars). </li>
+ <li>The system is started and suite
+ of tests
+ (JUnit and PDE JUnits Tests) is run against the system.
+ If all of these steps execute without error or human intervention and
+ every test passes, then we have a successful build</li>
+ <li>It is expected that
+ all "smooth" builds can be managed this way. The
+ problem is when things go wrong. WTP release engineering team intervenes
+ with the process for managing build errors! </li>
+ </ul>
+</li>
+<li><strong>Build Management:</strong> An automated build provides the most
+ return when it can produce a master build with as little human intervention
+ as possible. Although
+ there are arguments that there should be a human in the loop for a build, it
+ should not be the act of producing a build. Build automation makes a lot of
+ sense
+ for individual developers, they can test a build before it is "checked in" to
+ CVS. But the most critical activity of human intervention is to facilitate
+ a procedure to bring the team together in resolving integration and build problems.
+ WTP is a geographically and logistically challenging so (put the team together
+ to fix problems). Build manager is responsible for the builds/infrastructure
+ (scripts and environment) so a build can run. S/he facilitates to bring the
+ teams/people together to fix build
+ errors
+ (sending
+ automated emails from scripts is not sufficient).
+ Make sure that when there are problems, there is a process describing
+ every stage to fix it, work out what went wrong when the process fails.
+ Make sure
+ the mind
+ of the process captured in automated script code, rather than people's
+ head so that it can be dealt with minimal interaction the next time. Manage
+ major
+ builds
+ and release process (For major integration builds (milestones), release
+ candidates and releases.</li>
+<li><strong>Keeping in sync: </strong>With an automated build we should integrate regularly
+ (once a week perhaps - with an integration build). For an integration build
+ to be meaningful, there must be a critical mass of code checked-in. Being able to run the master
+ build locally will also give developers a chance to minimize build errors and
+ they will have to do less at integration time.
+ </td></tr></table>
+
+<table border=0 cellspacing=5 cellpadding=2 width="100%" ><tr>
+<td align=LEFT valign=TOP colspan="3" bgcolor="#999999">
+<b><font face="Arial,Helvetica" color="#FFFFFF">
+<a name="tools"></a>Tools used to manage the build process</font></b></td>
+</tr>
+
+<TR><TD align="LEFT" valign="TOP" colspan="3">
+ <p>1. <a href="http://www.cvshome.org/">CVS</a> version 1.10 or higher.<br>
+ 2. <a href="http://java.sun.com/j2se/1.4/download.html">1.4 level JDK</a>.<br>
+ 3. <a href="http://www.info-zip.org/pub/infozip/">Info-Zip
+ zip and unzip</a><br>
+ 4. org.eclipse.releng.basebuilder
+ and org.eclipse.releng.eclipsebuilder from <a href="http://dev.eclipse.org/viewcvs/">dev.eclipse.org</a>.<br>
+ 5. Ant optional tasks (ftp) This task depends on external libraries not included
+ in the Ant distribution. See ant <a href="http://ant.apache.org/manual/install.html#commons-net">library
+ dependencies</a> for ftp, rexec and telnet tasks<br>
+ for
+ more information.</p>
+ <p>For more information on eclipse release engineering tool, refer to the <a href="http://dev.eclipse.org/viewcvs/index.cgi/~checkout~/org.eclipse.pde.build/notes/usingPDEBuild.html">plugin</a>
+ itself.</p>
+ <p>For examples, refer to the <a href="http://dev.eclipse.org/viewcvs/index.cgi/org.eclipse.releng.eclipsebuilder/">org.eclips.releng.eclipsebuilder</a>
+ itself. <a href="https://dev.eclipse.org/viewcvs/index.cgi/~checkout~/org.eclipse.releng.eclipsebuilder/readme.html">Readme</a></p></TD>
+</TR></table>
+
+<table border=0 cellspacing=5 cellpadding=2 width="100%" ><tr>
+<td align=LEFT valign=TOP colspan="3" bgcolor="#999999">
+<b><font face="Arial,Helvetica" color="#FFFFFF">
+<a name="setup"></a>Setup</font></b></td>
+</tr>
+
+<TR><TD align="LEFT" valign="TOP" colspan="3">
+ <p>
+ <ol><li>Add the zip, unzip, and cvs executables to your PATH environment variable.</li>
+
+ <li>Add the jre/bin directory of the installed JDK to your PATH environment variable.</li>
+
+ <li>Add the ant/bin directory of the installed Ant to your PATH environment variable.</li>
+
+ <li>Create a directory for the build, e.g.
+ <ul><li><code><pre>mkdir /tmp/wtpbuild</pre></code></li></ul>
+ </li>
+
+ <li>Install the eclipse builder (this installation will be used to run the build tools,
+ it is not itself a WebTools installation): Check out <b>org.eclipse.releng.basebuilder</b> and
+ <b>org.eclipse.releng.basebuilder</b> from the CVS repository <b>/home/eclipse</b> (note:
+ <b>not</b> /home/webtools) into the build directory, e.g.
+ <ul><li><code><pre>cd /tmp/wtpbuild
+cvs -d :pserver:anonymous@dev.eclipse.org:/home/eclipse co org.eclipse.releng.basebuilder
+cvs -d :pserver:anonymous@dev.eclipse.org:/home/eclipse co org.eclipse.releng.eclipsebuilder
+ </pre></code></li></ul>
+ </li>
+
+ <li>Checkout org.eclipse.wtp.releng into the build directory.
+ <ul><li><code><pre>cvs -d :pserver:anonymous@dev.eclipse.org:/home/webtools co org.eclipse.wtp.releng</pre></code></li></ul>
+ </li></p>
+
+ <li>You have also to adjust some build properties in the org.eclipse.wtp.releng/buildAll.properties (see below).</li>
+ </TD>
+</TR></table>
+
+
+<table border=0 cellspacing=5 cellpadding=2 width="100%" ><tr>
+<td align=LEFT valign=TOP colspan="3" bgcolor="#999999">
+<b><font face="Arial,Helvetica" color="#FFFFFF">
+<a name="build"></a>Run the Build</font></b></td>
+</tr>
+
+<TR><TD align="LEFT" valign="TOP" colspan="3">
+ <p>
+ <b>Run
+the Build</b></p>
+ <p> cd to org.eclipse.wtp.releng directory and execute the following
+ command. Alternatively, you can checkout the module org.eclipse.wtp.releng
+ in an eclipse workspace and use the ant run tools.</p>
+ <p>"ant -f cruise.xml" </p>
+ <p>There are three ant targets in cruise.xml (an ant build file): build, publish</p>
+ <p> </p>
+ <table width="75%" border="1">
+ <tr>
+ <td width="20%">Ant Target</td>
+ <td width="80%">Description</td>
+ </tr>
+ <tr>
+ <td width="20%">all</td>
+ <td width="80%">Default. Builds WTP from scratch (all plugins and features),
+ runs tests, and publishes to a ftp site. For ftp push two propserties
+ ftpUser and ftpPassowrd must be defined. </td>
+ </tr>
+ <tr>
+ <td width="20%">build</td>
+ <td width="80%">Builds WTP from scratch (all plugins and features), does
+ not run tests, and does not publish to a ftp site.</td>
+ </tr>
+ <tr>
+ <td width="20%">publish</td>
+ <td width="80%">Must have run all, or build with no "clean" option prior
+ to running this task. It creates drop files and uploads them to an ftp
+ site. For ftp push two propserties
+ ftpUser and ftpPassowrd must be defined. </td>
+ </tr>
+ </table>
+ <p></p>
+ <p>[Ant properties to override
+ in <a href="#antbuildproperties">buildAll.properties</a>] ".
+ To override a property you must use a syntax like "ant -f cruise.xml
+ -Dclean=true"</p>
+ <p><b><br>
+ </b></p></TD>
+</TR></table>
+
+
+<table border=0 cellspacing=5 cellpadding=2 width="100%" ><tr>
+<td align=LEFT valign=TOP colspan="3" bgcolor="#999999">
+<b><font face="Arial,Helvetica" color="#FFFFFF">
+<a name="antbuildproperties"></a>Ant Properties Settings in buildAll.properties</font></b></td>
+</tr>
+
+<TR><TD align="LEFT" valign="TOP" colspan="3">
+ <p>The following properties are pre-defined in the <a href="http://dev.eclipse.org/viewcvs/indexwebtools.cgi/~checkout~/org.eclipse.wtp.releng/buildAll.properties">buildAll.properties</a> file
+ for the build. They can be overridden by setting them at the
+ command line at build time or by changing them directly in the component's
+ build.properties file.</p>
+ <table width="100%" border="1">
+ <tr>
+ <td>Name</td>
+ <td>Description</td>
+ </tr>
+ <tr>
+ <td height="26">baseLocation</td>
+ <td height="26"><p>A directory separate from buildDirectory which contains
+ pre-built plugins and features against which to compile. The basedirectory
+ must not contain any features, plugins or fragments which are already
+ or will be located in the buildDirectory (see below).</p>
+ <p>Build script unzips previosly downloaded eclipse, plugisn and features
+ to use for the build. This configuration is maintained in <a href="http://dev.eclipse.org/viewcvs/indexwebtools.cgi/~checkout~/org.eclipse.wtp.releng/maps/build.cfg">build.cfg</a>.</p></td>
+ </tr>
+ <tr>
+ <td >baseLocationRoot</td>
+ <td >A directory that hosts the current built. baseLocation
+ be created under this folder.
+ </td>
+ </tr>
+ <tr>
+ <td>localDownloads</td>
+ <td>A directory that contains pre-downloaded zip files
+ defined in the <a href="http://dev.eclipse.org/viewcvs/indexwebtools.cgi/~checkout~/org.eclipse.wtp.releng/maps/build.cfg">build configuration</a>. </td>
+ </tr>
+ <tr>
+ <td>bootclasspath</td>
+ <td>Sets the value for the attribute "bootclasspath" in calls
+ to the <a href="http://ant.apache.org/manual/CoreTasks/javac.html">Ant <javac> task</a> in
+ a plugins' build.xml. Default set to ${java.home}/lib/rt.jar.</td>
+ </tr>
+ <tr>
+ <td height="36">buildDirectory</td>
+ <td height="36">The absolute path to a working directory where the source
+ for the build will be exported, where scripts will be generated and where
+ the end products of the build will be located. On Windows systems, the
+ path length should not exceed thirty characters due to path length limitations
+ when compiling some classes in eclipse.</td>
+ </tr>
+ <tr>
+ <td>buildId</td>
+ <td>The build name. Default set to "build".</td>
+ </tr>
+ <tr>
+ <td>buildLabel</td>
+ <td>Refers to the name of the directory which will contain the end result
+ of the build. Default set to ${buildType}.${buildId}, ie."I.build".
+ This directory will be created inside the location specified by the ${buildDirectory}
+ property.</td>
+ </tr>
+ <tr>
+ <td>buildType</td>
+ <td>
+ <p>Letters I, N, S, R or M are used in Eclipse builds to identify builds
+ as being one of the following:<br>
+ <br>
+ I - Integration<br>
+ N - Nightly<br>
+ S - Stable<br>
+ R - Release<br>
+ M - Maintenance<br>
+ </p>
+ <p> If set to N, all source will be checked out from the HEAD stream.
+ In all other cases, tags as specifed in map files will be used when
+ exporting plugins to the buildDirectory. </p>
+ </td>
+ </tr>
+ <tr>
+ <td>archivePrefix</td>
+ <td>The name of the top level directory which should exist in the produced
+ zip file. Typically set to "eclipse".</td>
+ </tr>
+ <tr>
+ <td> collectingFolder</td>
+ <td>The name of the top level directory where the built features and plugins
+ will be gathered. This is typically set to "eclipse".</td>
+ </tr>
+ <tr>
+ <td>configs</td>
+ <td>
+ <p>An ampersand separated list of configurations to build where a configuration
+ is specified as <os>,<ws>,<arch>.<br>
+ ie.configs="win32,win32,x86 & linux, motif, x86 & linux,
+ gtk, x86". See list of <a href="#buildconfigs">build configurations</a> below.</p>
+ </td>
+ </tr>
+ <tr>
+ <td>javacDebugInfo</td>
+ <td>Sets the value for the attribute "debug" in calls to the <a href="http://ant.apache.org/manual/CoreTasks/javac.html">Ant <javac> task </a>in
+ a plugins' build.xml. Default set to on.</td>
+ </tr>
+ <tr>
+ <td>javacFailOnError</td>
+ <td>Sets the value for the attribute "failonerror" in calls to
+ the <a href="http://ant.apache.org/manual/CoreTasks/javac.html">Ant <javac> task</a> in
+ a plugins' build.xml. Build will continue even if there are compilation
+ errors when this is set to false.</td>
+ </tr>
+ <tr>
+ <td>javacSource</td>
+ <td>Sets the value for the attribute "source" in calls to the <a href="http://ant.apache.org/manual/CoreTasks/javac.html">Ant <javac> task</a> in
+ a plugins' build.xml. Default set to 1.3.</td>
+ </tr>
+ <tr>
+ <td>javacTarget</td>
+ <td>Sets the value for the attribute "target" in calls to the <a href="http://ant.apache.org/manual/CoreTasks/javac.html">Ant <javac> task</a> in
+ a plugins' build.xml. Default set to 1.1.</td>
+ </tr>
+ <tr>
+ <td>javacVerbose</td>
+ <td>Sets the value for the attribute "verbose" in calls to the <a href="http://ant.apache.org/manual/CoreTasks/javac.html">Ant <javac> task</a> in
+ a plugins' build.xml. Default set to true.</td>
+ </tr>
+ <tr>
+ <td>mapVersionTag</td>
+ <td>
+ <p>Sets the tag attribute in a call to the <a href="http://ant.apache.org/manual/CoreTasks/cvs.html">Ant <cvs> task </a>to
+ check out org.eclipse.releng, the map file project on dev.eclipse.org
+ used in the build.</p>
+ <p>Can be set to a specific tag to download the map files used for a
+ previous integration build. Typically, these tags are in the form "v<date/timestamp>" for
+ example "v200307110800" will checkout the map files used
+ to run the integration at the specified date/time. These scripts work
+ with 3.0 stream builds > 20030701.<br>
+ </p>
+ </td>
+ </tr>
+ <tr>
+ <td>timestamp</td>
+ <td>A timestamp used to fill in value for buildid in about.mappings files.
+ The timestamp is also used to tag the org.eclipse.releng project on dev.eclipse.org
+ only when an appropriate value for mapCvsRoot is provided and when the
+ tagMaps Ant property is set. </td>
+ </tr>
+ <tr>
+ <td>eclipseBuilderDirectory</td>
+ <td>A directory separate from buildDirectory and baseLocation, which contains
+ eclipse releng base builder, plugins and features that is used to run
+ the PDE build tools and locate the template scripts.</td>
+ </tr>
+ <tr>
+ <td>cvsRoot</td>
+ <td>CVS root (i.e. /home/webtools)</td>
+ </tr>
+ <tr>
+ <td>cvsServer</td>
+ <td>Address of the CVS server (i.e. dev.eclipse.org)</td>
+ </tr>
+ <tr>
+ <td>cvsProtocol</td>
+ <td>CVS protocol (i.e. pserver, local)</td>
+ </tr>
+ <tr>
+ <td>cvsUser</td>
+ <td>User id used for CVS authentication. You will need to run cvs -d <cvs-root>
+ login prior to build so that authentication information is cached.</td>
+ </tr>
+ <tr>
+ <td>ftpUser</td>
+ <td>ftp user id</td>
+ </tr> <tr>
+ <td>ftpPassword</td>
+ <td>ftp password</td>
+ </tr> <tr>
+ <td>ftpServer</td>
+ <td>Address of the ftp server (i.e. download.eclipse.org)</td>
+ </tr>
+ <tr>
+ <td>ftpRemoteDirectory</td>
+ <td>Directory that will be used to upload the build folder.</td>
+ </tr>
+ <tr>
+ <td>publishDirectory</td>
+ <td>A local directory that is used to keep a copy of the final build artifacts
+ .</td>
+ </tr>
+ <tr>
+ <td>clean</td>
+ <td>Existence of this property causes the build script to delete all working folders after completion. It's value is not used.</td>
+ </tr>
+ <tr>
+ <td>zipargs</td>
+ <td>Arguments to send to the zip executable. ie. zipargs=-y on Linux preserves
+ symbolic links.</td>
+ </tr>
+ </table>
+ <p></p></TD>
+</TR>
+<TR>
+ <TD>The following properties are pre-defined in the <a href="http://dev.eclipse.org/viewcvs/indexwebtools.cgi/org.eclipse.wtp.releng/maps/build.cfg?rev=1.1&content-type=text/vnd.viewcvs-markup">build.cfg</a> file
+ for the build.</TD>
+</TR>
+<TR><td height="167"><table width="100%" border="1">
+ <tr>
+ <td>Name</td>
+ <td>Description</td>
+ </tr>
+ <tr>
+ <td>baseos,basews,basearch</td>
+ <td>The os, ws and arch values of a pre-built eclipse component being compiled against. See list of possible values in the table of <a href="#buildconfigs">build configurations</a>.</td>
+ </tr>
+ <tr>
+ <td><pre>eclipseURL</pre></td>
+ <td>Eclipse download URL. If you haven't got any eclipse-*.SDK.zip in your download build-home/downloads dir. Download it from this url.</td>
+ </tr>
+ <tr>
+ <td>eclipseFile</td>
+ <td>Eclipse zip file which will be used for building project</td>
+ </tr>
+ <tr>
+ <td>emfURL</td>
+ <td>EMF download URL. If you haven't got any emf*.zip in your download build-home/downloads dir. Download it from this url.</td>
+ </tr>
+ <tr>
+ <td>emfFile</td>
+ <td>EMF zip file which will be used for building project</td>
+ </tr>
+ </table>
+</td></tr>
+</table>
+
+<table border=0 cellspacing=5 cellpadding=2 width="100%" ><tr>
+<td align=LEFT valign=TOP colspan="3" bgcolor="#999999">
+<b><font face="Arial,Helvetica" color="#FFFFFF">
+<a name="infra"></a>Build Infrastructure</font></b></td>
+</tr>
+
+<TR>
+<TD align="LEFT" valign="TOP" colspan="3">
+The automated build process currently runs on a Redhat Linux based build machine
+ hosted at eteration a.s. Build
+process is run and monitored by <a href="cruisecontrol.sf.net">cruise control</a></TD>
+</TR></table>
+
+
+<table border=0 cellspacing=5 cellpadding=2 width="100%" ><tr>
+<td align=LEFT valign=TOP colspan="3" bgcolor="#999999">
+<b><font face="Arial,Helvetica" color="#FFFFFF">
+<a name="cvs"></a>CVS Structure</font></b></td>
+</tr>
+
+<TR>
+<TD align="LEFT" valign="TOP" colspan="3">The CVS structure uses a granular
+ approach to to break up the WTP project into its subprojects and each subproject
+ into its its main components to achieve the following benefits:
+ <p>1.Organize the large number of contributions and teams into manageable pieces. <br>
+ 2.Organize the code into smaller collections so they are easier to understand. <br>
+ 3. Make it more extensible for future projects and components.</p>
+ <p>Each component group in a subproject implies ownership
+ of a chunk of functionality by a group of committers (i.e. server, sse).</p>
+ <table width="100%" border="0" >
+ <tr>
+ <td colspan="6"><strong>/home/webtools</strong></td>
+ <td width="62%">CVS ROOT</td>
+ </tr>
+ <tr >
+ <td width="2%"> </td>
+ <td colspan="5" bordercolor="0"><strong>/wst</strong></td>
+ <td>J2EE Standard Tools Subproject </td>
+ </tr>
+ <tr>
+ <td> </td>
+ <td width="3%" bordercolor="0"> </td>
+ <td colspan="4"><strong>/components</strong></td>
+ <td>Each component group in a subproject implies ownership of a chunk
+ of functionality by a group of committers</td>
+ </tr>
+ <tr bordercolor="#CCFFFF">
+ <td> </td>
+ <td> </td>
+ <td width="3%"> </td>
+ <td colspan="3"><strong>/sse</strong></td>
+ <td>Structured Source Editor framework </td>
+ </tr>
+ <tr>
+ <td> </td>
+ <td bordercolor="0"> </td>
+ <td> </td>
+ <td width="3%"> </td>
+ <td width="6%"><strong>/plugins</strong></td>
+ <td width="21%"> </td>
+ <td> </td>
+ </tr>
+ <tr>
+ <td> </td>
+ <td bordercolor="0"> </td>
+ <td> </td>
+ <td> </td>
+ <td> </td>
+ <td>org.eclipse.wst.sse.core</td>
+ <td>The sse plugin(s)</td>
+ </tr>
+ <tr>
+ <td> </td>
+ <td bordercolor="0"> </td>
+ <td> </td>
+ <td> </td>
+ <td><strong>/features</strong></td>
+ <td> </td>
+ <td> </td>
+ </tr>
+ <tr>
+ <td> </td>
+ <td bordercolor="0"> </td>
+ <td> </td>
+ <td> </td>
+ <td> </td>
+ <td>org.eclipse.wst.sse-feature</td>
+ <td>The sse feature(s)</td>
+ </tr>
+ <tr>
+ <td> </td>
+ <td bordercolor="0"> </td>
+ <td> </td>
+ <td> </td>
+ <td><strong>/tests</strong></td>
+ <td> </td>
+ <td> </td>
+ </tr>
+ <tr>
+ <td> </td>
+ <td bordercolor="0"> </td>
+ <td> </td>
+ <td> </td>
+ <td> </td>
+ <td>org.eclipse.wst.sse-tests</td>
+ <td>sse test plugin(s)</td>
+ </tr>
+ <tr>
+ <td> </td>
+ <td colspan="5" bordercolor="0"><strong>/jst</strong></td>
+ <td> </td>
+ </tr>
+ </table>
+</TD>
+</TR></table>
+<table width="100%" border="0">
+ <tr>
+ <td bgcolor="#999999"><b><font face="Arial,Helvetica" color="#FFFFFF">
+<a name="mapfile"></a>How to Create Map File </FONT></b></td>
+ </tr>
+ <tr>
+ <td>A .map file is a java property file which contains mappings of elements to their CVS locations and access methods. Map files are used by PDE Build early in the build process to generate Ant scripts which use the Ant <cvs> task to export source to a directory. This is described further <A HREF="http://dev.eclipse.org/viewcvs/index.cgi/org.eclipse.releng.basebuilder/readme.html?rev=HEAD#getmaps">below</A>.</td>
+ </tr>
+ <tr>
+ <td>Map file entries use the following format:</td>
+ </tr>
+ <tr>
+ <td><span class="style1">feature|fragment|plugin@element.Id=<cvs tag>,<access method>:<cvs user>@<cvs repository>,<cvs password>[,<repository path> (no starting slash) ]</span></td>
+ </tr>
+ <tr>
+ <td height="50"><br>The <repository path> is only required when the module (or directory) containing the source for the element does not match the element.Id or if the directory is not at the root of the repository.</td>
+ </tr>
+ <tr>
+ <td><br>
+ A map file entry must exist for each feature being built, it's <plugin> elements and it's <includes> elements (ie. nested features and their plug-ins). Adding a plug-in or fragment to a feature therefore requires updating the map files with the new element.</td>
+ </tr>
+ <tr>
+ <td><B><br>Map File Entry Examples</B> </td>
+ </tr>
+ <tr>
+ <td height="365"><UL>
+ <LI><P>The org.eclipse.platform plug-in source is located at the
+ root of the <A HREF="http://dev.eclipse.org/viewcvs/" TARGET="extra">dev.eclipse.org:/home/eclipse</A>
+ repository. It is contained in a directory with the name
+ "org.eclipse.platform". The resulting map file entry
+ for this plug-in
+ is:<BR><BR>plugin@org.eclipse.platform=v20031121,:pserver:anonymous@dev.eclipse.org:/home/eclipse,</P>
+ <LI><P>The org.eclipse.platform feature source is located at the
+ root of the <A HREF="http://dev.eclipse.org/viewcvs/" TARGET="extra">dev.eclipse.org:/home/eclipse</A>
+ repository in a directory with the name
+ "org.eclipse.platform-feature". The resulting map file
+ entry for this feature
+ is:<BR><BR>feature@org.eclipse.platform=v20031128,:pserver:anonymous@dev.eclipse.org:/home/eclipse,,org.eclipse.platform-feature</P>
+ <LI><P>The org.eclipse.gef.sdk feature source is located in
+ directory in the <A HREF="http://dev.eclipse.org/viewcvs/?cvsroot=Tools_Project" TARGET="extra">dev.eclipse.org:/home/tools</A>
+ repository in a subdirectory called "org.eclipse.gef.sdk"
+ of "org.eclipse-gef feature". The resulting map file
+ entry for this feature
+ is:<BR><BR>feature@org.eclipse.gef.sdk=I_20031117,
+ :pserver:anonymous@dev.eclipse.org:/home/tools,,org.eclipse.gef-feature/org.eclipse.gef.sdk</P>
+ </UL>
+ <p>One or more map files can be used to list the elements. The map files can be kept under version control. Some examples of map file projects include <A HREF="http://dev.eclipse.org/viewcvs/index.cgi/org.eclipse.releng/" TARGET="extra">org.eclipse.releng</A>, <A HREF="http://dev.eclipse.org/viewcvs/index.cgi/org.eclipse.gef.releng/?cvsroot=Tools_Project" TARGET="extra">org.eclipse.gef.releng</A>, <A HREF="http://dev.eclipse.org/viewcvs/index.cgi/org.eclipse.ve.releng/?cvsroot=Tools_Project" TARGET="extra">org.eclipse.ve.releng</A>.</p>
+ </td>
+ </tr>
+ <tr>
+ <td><A NAME="gensource"></A><FONT SIZE=4><B>Generating source features and plug-ins at build time</B></FONT>
+ <P>Source features and plug-ins can be generated at build time by PDE Build. Source features and associated source plug-ins are typically generated for a development kit distributions (i.e. SDK). It is also possible to generate a source plug-in only. This is typically the case for example features or JUnit testing features.<BR>
+ <BR>
+ To generate a <B>source feature and associated source plug-in</B> at build time, you will need to do the following:</P>
+ <OL>
+ <LI>
+ <P>Add an entry to the build.properties file in the feature project for which you wish to include the source feature and plug-in. The generated source feature should also be listed in the feature.xml as an <includes> element.<BR>
+ <BR>
+ The build.properties entry should use the following format:<BR>
+ <BR>
+ generate.feature@<source.feature.id to generate>=<feature.id from which to which to collect source>, plugin@<plugin.id><BR>
+ <BR>
+ Example taken from <A HREF="http://dev.eclipse.org/viewcvs/index.cgi/~checkout~/org.eclipse.sdk-feature/build.properties?rev=1.4" TARGET="extra">org.eclipse.sdk-feature/build.properties</A>: <BR>
+ generate.feature@org.eclipse.jdt.source=org.eclipse.jdt, plugin@org.eclipse.jdt.doc.isv<BR>
+ <BR>
+ In this example, a source feature and a plug-in, both with id "org.eclipse.jdt.source" will be generated and will contain source from plug-ins listed in the org.eclipse.jdt feature and will also include the plug-in org.eclipse.jdt.doc.isv. The generated org.eclipse.jdt.source plug-in will be automatically listed in the org.eclipse.jdt.source feature.xml.
+ </P>
+ <LI>
+ <P>In the feature project from which the source feature will be generated, a directory called "<B>sourceTemplateFeature</B>" and a directory called "<B>sourceTemplatePlugin</B>" will be required. These directories should contain the files that are included in the root of the generated source feature and plug-in. The feature.xml and plugin.xml files are not required since these are generated. A build.properties is required in the sourceTemplatePlugin directory. This should contain a "bin.includes" setting as well as the entry "sourcePlugin = true". The plugin.xml file and src/ directory should be listed in the bin.includes.<BR>
+ <BR>
+ See <A HREF="http://dev.eclipse.org/viewcvs/index.cgi/org.eclipse.jdt-feature/" TARGET="extra">org.eclipse.jdt-feature</A> and <A HREF="http://dev.eclipse.org/viewcvs/index.cgi/org.eclipse.platform-feature/" TARGET="extra">org.eclipse.platform-feature</A> for examples.</P>
+ </OL>
+ <P>To generate a <B>source plug-in only</B> at build time, you will need to do the following:</P>
+ <OL>
+ <LI>
+ <P>Add an entry to the build.properties file in the feature project for which you wish to include the source plug-in. The generated source plug-in should also be listed in the feature.xml as a <plugin> element.. <BR>
+ <BR>
+ The build.properties entry should use the following format:<BR>
+ <BR>
+ generate.plugin@<source.plugin.id to generate>=<feature.id from which to which to collect source>, plugin@<plugin.id><BR>
+ <BR>
+ Example taken from <A HREF="http://dev.eclipse.org/viewcvs/index.cgi/~checkout~/org.eclipse.ve.tests-feature/build.properties?rev=1.2&cvsroot=Tools_Project" TARGET="extra">org.eclipse.ve.tests-feature/build.properties</A>: <BR>
+ generate.plugin@org.eclipse.ve.tests.source=org.eclipse.ve.tests
+ </P>
+ <LI>
+ <P>In the runtime feature project from which the source plug-in will be generated, create a directory called "sourceTemplatePlugin" which must contain a build.properties with a "bin.includes" setting and "sourcePlugin=true". The plugin.xml file and src/ directory should be listed in the bin.includes.<BR>
+ <BR>
+ See <A HREF="http://dev.eclipse.org/viewcvs/index.cgi/org.eclipse.ve.examples-feature/sourceTemplatePlugin/?cvsroot=Tools_Project" TARGET="extra">org.eclipse.ve.examples-feature/sourceTemplatePlugin</A> for an example.</P>
+ </OL>
+ </td>
+ </tr>
+</table>
+<p></p>
+<table border=0 cellspacing=5 cellpadding=2 width="100%" >
+ <tr>
+<td align=LEFT valign=TOP colspan="3" bgcolor="#999999">
+<b><font face="Arial,Helvetica" color="#FFFFFF">
+<a name="team"></a>WTP Release Engineering Team</font></b></td>
+</tr>
+
+<TR>
+<TD height="23" colspan="3" align="LEFT" valign="TOP">
+Ozgur Tumer (ozgur.tumer_at_eteration.com)<br>
+Dominique Devito (dominique.devito_at_objectweb.org)</TD>
+</TR></table>
+
+
+</html>
diff --git a/archive/releng.builder/scripts/testScripts/JUNIT.XSL b/archive/releng.builder/scripts/testScripts/JUNIT.XSL
new file mode 100644
index 0000000..f632657
--- /dev/null
+++ b/archive/releng.builder/scripts/testScripts/JUNIT.XSL
@@ -0,0 +1,455 @@
+<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
+<xsl:output method="html" indent="yes"/>
+<xsl:decimal-format decimal-separator="." grouping-separator="," />
+
+<xsl:template match="testsuites">
+ <HTML>
+ <HEAD>
+ <style type="text/css">
+ body {
+ font:normal 68% verdana,arial,helvetica;
+ color:#000000;
+ }
+ table tr td, table tr th {
+ font-size: 68%;
+ }
+ table.details tr th{
+ font-weight: bold;
+ text-align:left;
+ background:#a6caf0;
+ }
+ table.details tr td{
+ background:#eeeee0;
+ }
+
+ p {
+ line-height:1.5em;
+ margin-top:0.5em; margin-bottom:1.0em;
+ }
+ h1 {
+ margin: 0px 0px 5px; font: 165% verdana,arial,helvetica
+ }
+ h2 {
+ margin-top: 1em; margin-bottom: 0.5em; font: bold 125% verdana,arial,helvetica
+ }
+ h3 {
+ margin-bottom: 0.5em; font: bold 115% verdana,arial,helvetica
+ }
+ h4 {
+ margin-bottom: 0.5em; font: bold 100% verdana,arial,helvetica
+ }
+ h5 {
+ margin-bottom: 0.5em; font: bold 100% verdana,arial,helvetica
+ }
+ h6 {
+ margin-bottom: 0.5em; font: bold 100% verdana,arial,helvetica
+ }
+ .Error {
+ font-weight:bold; color:red;
+ }
+ .Failure {
+ font-weight:bold; color:purple;
+ }
+ .Properties {
+ text-align:right;
+ }
+ </style>
+ <script language="JavaScript">
+ var TestCases = new Array();
+ var cur;
+ <xsl:for-each select="./testsuite">
+ <xsl:apply-templates select="properties"/>
+ </xsl:for-each>
+
+ </script>
+ <script language="JavaScript"><![CDATA[
+ function displayProperties (name) {
+ var win = window.open('','JUnitSystemProperties','scrollbars=1,resizable=1');
+ var doc = win.document.open();
+ doc.write("<html><head><title>Properties of " + name + "</title>");
+ doc.write("<style>")
+ doc.write("body {font:normal 68% verdana,arial,helvetica; color:#000000; }");
+ doc.write("table tr td, table tr th { font-size: 68%; }");
+ doc.write("table.properties { border-collapse:collapse; border-left:solid 1 #cccccc; border-top:solid 1 #cccccc; padding:5px; }");
+ doc.write("table.properties th { text-align:left; border-right:solid 1 #cccccc; border-bottom:solid 1 #cccccc; background-color:#eeeeee; }");
+ doc.write("table.properties td { font:normal; text-align:left; border-right:solid 1 #cccccc; border-bottom:solid 1 #cccccc; background-color:#fffffff; }");
+ doc.write("h3 { margin-bottom: 0.5em; font: bold 115% verdana,arial,helvetica }");
+ doc.write("</style>");
+ doc.write("</head><body>");
+ doc.write("<h3>Properties of " + name + "</h3>");
+ doc.write("<div align=\"right\"><a href=\"javascript:window.close();\">Close</a></div>");
+ doc.write("<table class='properties'>");
+ doc.write("<tr><th>Name</th><th>Value</th></tr>");
+ for (prop in TestCases[name]) {
+ doc.write("<tr><th>" + prop + "</th><td>" + TestCases[name][prop] + "</td></tr>");
+ }
+ doc.write("</table>");
+ doc.write("</body></html>");
+ doc.close();
+ win.focus();
+ }
+ ]]>
+ </script>
+ </HEAD>
+ <body>
+ <a name="top"></a>
+ <xsl:call-template name="pageHeader"/>
+
+ <!-- Summary part -->
+ <xsl:call-template name="summary"/>
+ <hr size="1" width="95%" align="left"/>
+
+ <!-- Package List part -->
+ <xsl:call-template name="packagelist"/>
+ <hr size="1" width="95%" align="left"/>
+
+ <!-- For each package create its part -->
+ <xsl:call-template name="packages"/>
+ <hr size="1" width="95%" align="left"/>
+
+ <!-- For each class create the part -->
+ <xsl:call-template name="classes"/>
+
+ </body>
+ </HTML>
+</xsl:template>
+
+
+
+ <!-- ================================================================== -->
+ <!-- Write a list of all packages with an hyperlink to the anchor of -->
+ <!-- of the package name. -->
+ <!-- ================================================================== -->
+ <xsl:template name="packagelist">
+ <h2>Packages</h2>
+ Note: package statistics are not computed recursively, they only sum up all of its testsuites numbers.
+ <table class="details" border="0" cellpadding="5" cellspacing="2" width="95%">
+ <xsl:call-template name="testsuite.test.header"/>
+ <!-- list all packages recursively -->
+ <xsl:for-each select="./testsuite[not(./@package = preceding-sibling::testsuite/@package)]">
+ <xsl:sort select="@package"/>
+ <xsl:variable name="testsuites-in-package" select="/testsuites/testsuite[./@package = current()/@package]"/>
+ <xsl:variable name="testCount" select="sum($testsuites-in-package/@tests)"/>
+ <xsl:variable name="errorCount" select="sum($testsuites-in-package/@errors)"/>
+ <xsl:variable name="failureCount" select="sum($testsuites-in-package/@failures)"/>
+ <xsl:variable name="timeCount" select="sum($testsuites-in-package/@time)"/>
+
+ <!-- write a summary for the package -->
+ <tr valign="top">
+ <!-- set a nice color depending if there is an error/failure -->
+ <xsl:attribute name="class">
+ <xsl:choose>
+ <xsl:when test="$failureCount > 0">Failure</xsl:when>
+ <xsl:when test="$errorCount > 0">Error</xsl:when>
+ </xsl:choose>
+ </xsl:attribute>
+ <td><a href="#{@package}"><xsl:value-of select="@package"/></a></td>
+ <td><xsl:value-of select="$testCount"/></td>
+ <td><xsl:value-of select="$errorCount"/></td>
+ <td><xsl:value-of select="$failureCount"/></td>
+ <td>
+ <xsl:call-template name="display-time">
+ <xsl:with-param name="value" select="$timeCount"/>
+ </xsl:call-template>
+ </td>
+ </tr>
+ </xsl:for-each>
+ </table>
+ </xsl:template>
+
+
+ <!-- ================================================================== -->
+ <!-- Write a package level report -->
+ <!-- It creates a table with values from the document: -->
+ <!-- Name | Tests | Errors | Failures | Time -->
+ <!-- ================================================================== -->
+ <xsl:template name="packages">
+ <!-- create an anchor to this package name -->
+ <xsl:for-each select="/testsuites/testsuite[not(./@package = preceding-sibling::testsuite/@package)]">
+ <xsl:sort select="@package"/>
+ <a name="{@package}"></a>
+ <h3>Package <xsl:value-of select="@package"/></h3>
+
+ <table class="details" border="0" cellpadding="5" cellspacing="2" width="95%">
+ <xsl:call-template name="testsuite.test.header"/>
+
+ <!-- match the testsuites of this package -->
+ <xsl:apply-templates select="/testsuites/testsuite[./@package = current()/@package]" mode="print.test"/>
+ </table>
+ <a href="#top">Back to top</a>
+ <p/>
+ <p/>
+ </xsl:for-each>
+ </xsl:template>
+
+ <xsl:template name="classes">
+ <xsl:for-each select="testsuite">
+ <xsl:sort select="@name"/>
+ <!-- create an anchor to this class name -->
+ <a name="{@name}"></a>
+ <h3>TestCase <xsl:value-of select="@name"/></h3>
+
+ <table class="details" border="0" cellpadding="5" cellspacing="2" width="95%">
+ <xsl:call-template name="testcase.test.header"/>
+ <!--
+ test can even not be started at all (failure to load the class)
+ so report the error directly
+ -->
+ <xsl:if test="./error">
+ <tr class="Error">
+ <td colspan="4"><xsl:apply-templates select="./error"/></td>
+ </tr>
+ </xsl:if>
+ <xsl:apply-templates select="./testcase" mode="print.test"/>
+ </table>
+ <div class="Properties">
+ <a>
+ <xsl:attribute name="href">javascript:displayProperties('<xsl:value-of select="@package"/>.<xsl:value-of select="@name"/>');</xsl:attribute>
+ Properties >>
+ </a>
+ </div>
+ <p/>
+
+ <a href="#top">Back to top</a>
+ </xsl:for-each>
+ </xsl:template>
+
+ <xsl:template name="summary">
+ <h2>Summary</h2>
+ <xsl:variable name="testCount" select="sum(testsuite/@tests)"/>
+ <xsl:variable name="errorCount" select="sum(testsuite/@errors)"/>
+ <xsl:variable name="failureCount" select="sum(testsuite/@failures)"/>
+ <xsl:variable name="timeCount" select="sum(testsuite/@time)"/>
+ <xsl:variable name="successRate" select="($testCount - $failureCount - $errorCount) div $testCount"/>
+ <table class="details" border="0" cellpadding="5" cellspacing="2" width="95%">
+ <tr valign="top">
+ <th>Tests</th>
+ <th>Failures</th>
+ <th>Errors</th>
+ <th>Success rate</th>
+ <th>Time</th>
+ </tr>
+ <tr valign="top">
+ <xsl:attribute name="class">
+ <xsl:choose>
+ <xsl:when test="$failureCount > 0">Failure</xsl:when>
+ <xsl:when test="$errorCount > 0">Error</xsl:when>
+ </xsl:choose>
+ </xsl:attribute>
+ <td><xsl:value-of select="$testCount"/></td>
+ <td><xsl:value-of select="$failureCount"/></td>
+ <td><xsl:value-of select="$errorCount"/></td>
+ <td>
+ <xsl:call-template name="display-percent">
+ <xsl:with-param name="value" select="$successRate"/>
+ </xsl:call-template>
+ </td>
+ <td>
+ <xsl:call-template name="display-time">
+ <xsl:with-param name="value" select="$timeCount"/>
+ </xsl:call-template>
+ </td>
+
+ </tr>
+ </table>
+ <table border="0" width="95%">
+ <tr>
+ <td style="text-align: justify;">
+ Note: <i>failures</i> are anticipated and checked for with assertions while <i>errors</i> are unanticipated.
+ </td>
+ </tr>
+ </table>
+ </xsl:template>
+
+ <!--
+ Write properties into a JavaScript data structure.
+ This is based on the original idea by Erik Hatcher (erik@hatcher.net)
+ -->
+ <xsl:template match="properties">
+ cur = TestCases['<xsl:value-of select="../@package"/>.<xsl:value-of select="../@name"/>'] = new Array();
+ <xsl:for-each select="property">
+ <xsl:sort select="@name"/>
+ cur['<xsl:value-of select="@name"/>'] = '<xsl:call-template name="JS-escape"><xsl:with-param name="string" select="@value"/></xsl:call-template>';
+ </xsl:for-each>
+ </xsl:template>
+
+<!-- Page HEADER -->
+<xsl:template name="pageHeader">
+ <h1>Unit Test Results</h1>
+ <table width="100%">
+ <tr>
+ <td align="left"></td>
+ <td align="right">Designed for use with <a href='http://www.junit.org'>JUnit</a> and <a href='http://jakarta.apache.org/ant'>Ant</a>.</td>
+ </tr>
+ </table>
+ <hr size="1"/>
+</xsl:template>
+
+<xsl:template match="testsuite" mode="header">
+ <tr valign="top">
+ <th width="80%">Name</th>
+ <th>Tests</th>
+ <th>Errors</th>
+ <th>Failures</th>
+ <th nowrap="nowrap">Time(s)</th>
+ </tr>
+</xsl:template>
+
+<!-- class header -->
+<xsl:template name="testsuite.test.header">
+ <tr valign="top">
+ <th width="80%">Name</th>
+ <th>Tests</th>
+ <th>Errors</th>
+ <th>Failures</th>
+ <th nowrap="nowrap">Time(s)</th>
+ </tr>
+</xsl:template>
+
+<!-- method header -->
+<xsl:template name="testcase.test.header">
+ <tr valign="top">
+ <th>Name</th>
+ <th>Status</th>
+ <th width="80%">Type</th>
+ <th nowrap="nowrap">Time(s)</th>
+ </tr>
+</xsl:template>
+
+
+<!-- class information -->
+<xsl:template match="testsuite" mode="print.test">
+ <tr valign="top">
+ <!-- set a nice color depending if there is an error/failure -->
+ <xsl:attribute name="class">
+ <xsl:choose>
+ <xsl:when test="@failures[.> 0]">Failure</xsl:when>
+ <xsl:when test="@errors[.> 0]">Error</xsl:when>
+ </xsl:choose>
+ </xsl:attribute>
+
+ <!-- print testsuite information -->
+ <td><a href="#{@name}"><xsl:value-of select="@name"/></a></td>
+ <td><xsl:value-of select="@tests"/></td>
+ <td><xsl:value-of select="@errors"/></td>
+ <td><xsl:value-of select="@failures"/></td>
+ <td>
+ <xsl:call-template name="display-time">
+ <xsl:with-param name="value" select="@time"/>
+ </xsl:call-template>
+ </td>
+ </tr>
+</xsl:template>
+
+<xsl:template match="testcase" mode="print.test">
+ <tr valign="top">
+ <xsl:attribute name="class">
+ <xsl:choose>
+ <xsl:when test="failure | error">Error</xsl:when>
+ </xsl:choose>
+ </xsl:attribute>
+ <td><xsl:value-of select="@name"/></td>
+ <xsl:choose>
+ <xsl:when test="failure">
+ <td>Failure</td>
+ <td><xsl:apply-templates select="failure"/></td>
+ </xsl:when>
+ <xsl:when test="error">
+ <td>Error</td>
+ <td><xsl:apply-templates select="error"/></td>
+ </xsl:when>
+ <xsl:otherwise>
+ <td>Success</td>
+ <td></td>
+ </xsl:otherwise>
+ </xsl:choose>
+ <td>
+ <xsl:call-template name="display-time">
+ <xsl:with-param name="value" select="@time"/>
+ </xsl:call-template>
+ </td>
+ </tr>
+</xsl:template>
+
+
+<xsl:template match="failure">
+ <xsl:call-template name="display-failures"/>
+</xsl:template>
+
+<xsl:template match="error">
+ <xsl:call-template name="display-failures"/>
+</xsl:template>
+
+<!-- Style for the error and failure in the tescase template -->
+<xsl:template name="display-failures">
+ <xsl:choose>
+ <xsl:when test="not(@message)">N/A</xsl:when>
+ <xsl:otherwise>
+ <xsl:value-of select="@message"/>
+ </xsl:otherwise>
+ </xsl:choose>
+ <!-- display the stacktrace -->
+ <code>
+ <p/>
+ <xsl:call-template name="br-replace">
+ <xsl:with-param name="word" select="."/>
+ </xsl:call-template>
+ </code>
+ <!-- the later is better but might be problematic for non-21" monitors... -->
+ <!--pre><xsl:value-of select="."/></pre-->
+</xsl:template>
+
+<xsl:template name="JS-escape">
+ <xsl:param name="string"/>
+ <xsl:choose><!-- something isn't right here, basically all single quotes need to be replaced with backslash-single-quote
+ <xsl:when test="contains($string,''')">
+ <xsl:value-of select="substring-before($string,''')"/>
+ \'
+ <xsl:call-template name="JS-escape">
+ <xsl:with-param name="string" select="substring-after($string,''')"/>
+ </xsl:call-template>
+ </xsl:when> -->
+ <xsl:when test="contains($string,'\')">
+ <xsl:value-of select="substring-before($string,'\')"/>\\<xsl:call-template name="JS-escape">
+ <xsl:with-param name="string" select="substring-after($string,'\')"/>
+ </xsl:call-template>
+ </xsl:when>
+ <xsl:otherwise>
+ <xsl:value-of select="$string"/>
+ </xsl:otherwise>
+ </xsl:choose>
+</xsl:template>
+
+
+<!--
+ template that will convert a carriage return into a br tag
+ @param word the text from which to convert CR to BR tag
+-->
+<xsl:template name="br-replace">
+ <xsl:param name="word"/>
+ <xsl:choose>
+ <xsl:when test="contains($word,'
')">
+ <xsl:value-of select="substring-before($word,'
')"/>
+ <br/>
+ <xsl:call-template name="br-replace">
+ <xsl:with-param name="word" select="substring-after($word,'
')"/>
+ </xsl:call-template>
+ </xsl:when>
+ <xsl:otherwise>
+ <xsl:value-of select="$word"/>
+ </xsl:otherwise>
+ </xsl:choose>
+</xsl:template>
+
+<xsl:template name="display-time">
+ <xsl:param name="value"/>
+ <xsl:value-of select="format-number($value,'0.000')"/>
+</xsl:template>
+
+<xsl:template name="display-percent">
+ <xsl:param name="value"/>
+ <xsl:value-of select="format-number($value,'0.00%')"/>
+</xsl:template>
+
+</xsl:stylesheet>
+
diff --git a/archive/releng.builder/scripts/testScripts/api-tests.xml b/archive/releng.builder/scripts/testScripts/api-tests.xml
new file mode 100644
index 0000000..0b1e18d
--- /dev/null
+++ b/archive/releng.builder/scripts/testScripts/api-tests.xml
@@ -0,0 +1,153 @@
+<?xml version="1.0"?>
+<project name="API tests" basedir="." >
+
+ <property file="${testDir}/buildAll.properties"/>
+ <property file="${testDir}/build.cfg"/>
+
+ <property name="library-xml-file" value="${basedir}/plugins/org.eclipse.test_3.1.0/library.xml"/>
+ <import file="${library-xml-file}"/>
+
+ <target name="ui-test">
+ <antcall target="runPIAgent">
+ <param name="application" value="org.eclipse.test.uitestapplication"/>
+ </antcall>
+ </target>
+
+ <target name="core-test">
+ <antcall target="runPIAgent">
+ <param name="application" value="org.eclipse.test.coretestapplication"/>
+ </antcall>
+ </target>
+
+ <target name="init">
+ <property name="piagentDir" value="${testDir}/piagent"/>
+ <property name="component.core" value="releng.builder/tools/apitools/org.eclipse.wtp.releng.tools.component.core"/>
+ <condition property="piAgent.exists">
+ <or>
+ <available property="piAgent.dll.exists" file="${piagentDir}/piAgent.dll"/>
+ <available property="libpiAgent.so.exists" file="${piagentDir}/libpiAgent.so"/>
+ </or>
+ </condition>
+ <antcall target="init2"/>
+ </target>
+
+ <target name="init2" unless="piAgent.exists">
+ <mkdir dir="${piagentDir}"/>
+ <cvs
+ cvsRoot=":pserver:anonymous@dev.eclipse.org:/home/webtools"
+ package="${component.core}"
+ dest="${piagentDir}"
+ command="export"
+ tag="HEAD"
+ />
+ <mkdir dir="${piagentDir}/${component.core}/bin"/>
+ <javac
+ srcdir="${piagentDir}/${component.core}/src"
+ destdir="${piagentDir}/${component.core}/bin"
+ fork="true">
+ <classpath>
+ <fileset dir="${baseLocation}/plugins">
+ <include name="**/*.jar" />
+ </fileset>
+ </classpath>
+ </javac>
+ <condition property="piAgentURL" value="${piAgentURL.linux}">
+ <equals arg1="${os}" arg2="linux" />
+ </condition>
+ <condition property="piAgentURL" value="${piAgentURL.win32}">
+ <equals arg1="${os}" arg2="win32" />
+ </condition>
+ <condition property="piAgentFile" value="${piAgentFile.linux}">
+ <equals arg1="${os}" arg2="linux" />
+ </condition>
+ <condition property="piAgentFile" value="${piAgentFile.win32}">
+ <equals arg1="${os}" arg2="win32" />
+ </condition>
+ <condition property="os.linux">
+ <equals arg1="${os}" arg2="linux" />
+ </condition>
+ <condition property="os.win32">
+ <equals arg1="${os}" arg2="win32" />
+ </condition>
+ <available file="${build.home}/${build.drivers}/${piAgentFile}" property="piAgent.exists"/>
+ <antcall target="getPIAgent"/>
+ <antcall target="setupPIAgentLinux"/>
+ <antcall target="setupPIAgentWin32"/>
+ </target>
+
+ <target name="getPIAgent" unless="piAgent.exists">
+ <get src="${piAgentURL}" dest="${build.home}/${build.drivers}/${piAgentFile}"/>
+ </target>
+
+ <target name="setupPIAgentLinux" if="os.linux">
+ <unzip dest="${piagentDir}" src="${build.home}/${build.drivers}/${piAgentFile}">
+ <patternset>
+ <include name="**/*.so"/>
+ </patternset>
+ </unzip>
+ <move todir="${piagentDir}" flatten="true">
+ <fileset dir="${piagentDir}/lib"/>
+ </move>
+ <copy file="${piagentDir}/${component.core}/apiagent/libpiAgent.so" tofile="${piagentDir}/libpiAgent.so" overwrite="true"/>
+ </target>
+
+ <target name="setupPIAgentWin32" if="os.win32">
+ <unzip dest="${piagentDir}" src="${build.home}/${build.drivers}/${piAgentFile}">
+ <patternset>
+ <include name="**/*.dll"/>
+ </patternset>
+ </unzip>
+ <move todir="${piagentDir}" flatten="true">
+ <fileset dir="${piagentDir}/bin"/>
+ </move>
+ <copy file="${piagentDir}/${component.core}/apiagent/piAgent.dll" tofile="${piagentDir}/piAgent.dll" overwrite="true"/>
+ </target>
+
+ <target name="runPIAgent" depends="init">
+ <property name="piagentDir" value="${testDir}/piagent"/>
+ <property name="component.core" value="org.eclipse.wtp.releng/apitools/org.eclipse.wtp.releng.tools.component.core"/>
+ <condition property="piAgent.exists">
+ <and>
+ <or>
+ <available property="piAgent.dll.exists" file="${piagentDir}/piAgent.dll"/>
+ <available property="libpiAgent.so.exists" file="${piagentDir}/libpiAgent.so"/>
+ </or>
+ <available property="buildDirectory.exists" file="${buildDirectory}"/>
+ <isset property="package.includes"/>
+ </and>
+ </condition>
+ <antcall target="runPIAgent2"/>
+ </target>
+
+ <target name="runPIAgent2" if="piAgent.exists">
+ <java classname="org.eclipse.wtp.releng.tools.component.piagent.PIAgentFiltersEmitter" fork="true" maxmemory="256m">
+ <arg line="-eclipseDirs ${buildDirectory}/plugins -compXMLDirs ${buildDirectory}/plugins -outputFile ${piagentDir}/piagent_filters.txt -includes ${package.includes}" />
+ <classpath>
+ <pathelement path="${piagentDir}/${component.core}/bin"/>
+ <fileset dir="${baseLocation}/plugins">
+ <include name="**/*.jar" />
+ </fileset>
+ </classpath>
+ </java>
+ <tstamp>
+ <format property="TIMENOW" pattern="HHmmssSSSS"/>
+ </tstamp>
+ <property name="vmargs" value=""/>
+ <property name="launcher" value="org.eclipse.core.launcher.Main"/>
+ <property name="formatter" value="org.apache.tools.ant.taskdefs.optional.junit.XMLJUnitResultFormatter"/>
+ <property name="extraVMargs" value=""/>
+ <property name="plugin-path" value=""/>
+ <property name="timeout" value="7200000"/>
+ <property file="${testDir}/eclipse/configuration/config.ini"/>
+ <echo message="Running ${classname}"/>
+ <mkdir dir="${buildDirectory}/apitools/piagentoutput"/>
+ <delete file="${buildDirectory}/apitools/piagentoutput/${classname}.trcxml" failonerror="false"/>
+ <exec dir="${piagentDir}" executable="java" timeout="${timeout}">
+ <env key="LD_LIBRARY_PATH" value="${piagentDir}"/>
+ <env key="java.library.path" value="${piagentDir}"/>
+ <env key="PLUGIN_PATH" value="${plugin-path}"/>
+ <arg line="-cp ${testDir}/eclipse/startup.jar -XrunpiAgent:server=standalone,profile=${piagentDir}/${component.core}/apiagent/piagent_options.txt,filters=${piagentDir}/piagent_filters.txt,file=${buildDirectory}/apitools/piagentoutput/${plugin-name}-${classname}.trcxml -Xmx512M ${vmargs} ${extraVMargs} ${launcher} -application ${application} -dev bin -data ${data-dir} formatter=${formatter},${testDir}/eclipse/${classname}.xml -testPluginName ${plugin-name} -className ${classname} -os ${os} -ws ${ws} -arch ${arch} -consolelog"/>
+ </exec>
+ </target>
+
+</project>
\ No newline at end of file
diff --git a/archive/releng.builder/scripts/testScripts/performance-tests.xml b/archive/releng.builder/scripts/testScripts/performance-tests.xml
new file mode 100644
index 0000000..738677e
--- /dev/null
+++ b/archive/releng.builder/scripts/testScripts/performance-tests.xml
@@ -0,0 +1,61 @@
+<?xml version="1.0"?>
+<project name="WTP Performance" default="default" basedir="." >
+
+ <property name="library-xml-file" value="${basedir}/plugins/org.eclipse.test_3.1.0/library.xml"/>
+ <import file="${library-xml-file}"/>
+
+ <target name="ui-test">
+ <antcall target="ui-test-normal"/>
+ <antcall target="ui-test-perf"/>
+ </target>
+
+ <target name="core-test">
+ <antcall target="core-test-normal"/>
+ <antcall target="core-test-perf"/>
+ </target>
+
+ <target name="ui-test-normal" unless="runAsPerfApp">
+ <antcall target="run">
+ <param name="target" value="ui-test"/>
+ </antcall>
+ </target>
+
+ <target name="core-test-normal" unless="runAsPerfApp">
+ <antcall target="run">
+ <param name="target" value="core-test"/>
+ </antcall>
+ </target>
+
+ <target name="ui-test-perf" if="runAsPerfApp">
+ <antcall target="run">
+ <param name="target" value="eclipse-test"/>
+ <param name="application" value="org.eclipse.wst.common.tests.performance.uitestapplication"/>
+ </antcall>
+ </target>
+
+ <target name="core-test-perf" if="runAsPerfApp">
+ <antcall target="run">
+ <param name="target" value="eclipse-test"/>
+ <param name="application" value="org.eclipse.wst.common.tests.performance.coretestapplication"/>
+ </antcall>
+ </target>
+
+ <target name="run">
+
+ <property name="eclipse.perf.dbloc" value="-Declipse.perf.dbloc=${build.home}/${perf.dbloc}"/>
+ <property name="eclipse.perf.config" value="-Declipse.perf.config=config=${perf.config};build=${perf.buildId};jvm=${perf.jvm}"/>
+ <property name="eclipse.perf.assertAgainst" value="-Declipse.perf.assertAgainst=config=${perf.ref.config};build=${perf.ref.buildId};jvm=${perf.ref.jvm}"/>
+ <property name="extraVMargs" value=""/>
+
+ <ant target="${target}" antfile="${library-xml-file}" dir="${basedir}">
+ <property name="application" value="${application}"/>
+ <property name="data-dir" value="${data-dir}"/>
+ <property name="plugin-name" value="${plugin-name}"/>
+ <property name="classname" value="${classname}"/>
+ <property name="extraVMargs" value="${eclipse.perf.dbloc} ${eclipse.perf.config} ${eclipse.perf.assertAgainst} ${extraVMargs}"/>
+ </ant>
+
+ </target>
+
+ <target name="default"/>
+</project>
\ No newline at end of file
diff --git a/archive/releng.builder/scripts/testScripts/test.properties b/archive/releng.builder/scripts/testScripts/test.properties
new file mode 100644
index 0000000..1623991
--- /dev/null
+++ b/archive/releng.builder/scripts/testScripts/test.properties
@@ -0,0 +1,88 @@
+
+org.eclipse.wst.server.core.tests=org.eclipse.wst.server.core.tests_0.7.0
+org.eclipse.wst.server.ui.tests=org.eclipse.wst.server.ui.tests_0.7.0
+org.eclipse.jst.server.core.tests=org.eclipse.jst.server.core.tests_0.7.0
+org.eclipse.jst.server.ui.tests=org.eclipse.jst.server.ui.tests_0.7.0
+org.eclipse.jst.server.tomcat.core.tests=org.eclipse.jst.server.tomcat.core.tests_0.7.0
+org.eclipse.jst.server.tomcat.ui.tests=org.eclipse.jst.server.tomcat.ui.tests_0.7.0
+org.eclipse.jst.server.generic.tests=org.eclipse.jst.server.generic.tests_0.7.0
+org.eclipse.jst.server.geronimo.core.tests=org.eclipse.jst.server.geronimo.core.tests_0.7.0
+org.eclipse.jst.server.geronimo.ui.tests=org.eclipse.jst.server.geronimo.ui.tests_0.7.0
+
+org.eclipse.wst.sse.core.tests=org.eclipse.wst.sse.core.tests_0.7.0
+org.eclipse.wst.sse.ui.tests=org.eclipse.wst.sse.ui.tests_0.7.0
+
+org.eclipse.wst.xml.core.tests=org.eclipse.wst.xml.core.tests_0.7.0
+org.eclipse.wst.xml.ui.tests=org.eclipse.wst.xml.ui.tests_0.7.0
+org.eclipse.wst.xml.tests.encoding=org.eclipse.wst.xml.tests.encoding_0.7.0
+org.eclipse.wst.xml.validation.tests=org.eclipse.wst.xml.validation.tests_0.7.0
+
+org.eclipse.wst.wsdl.tests=org.eclipse.wst.wsdl.tests_0.7.0
+org.eclipse.wst.wsdl.validation.tests=org.eclipse.wst.wsdl.validation.tests_0.7.0
+
+org.eclipse.wst.wsi.tests=org.eclipse.wst.wsi.tests_0.7.0
+
+org.eclipse.wst.xsd.validation.tests=org.eclipse.wst.xsd.validation.tests_0.7.0
+
+org.eclipse.wst.html.core.tests=org.eclipse.wst.html.core.tests_0.7.0
+org.eclipse.wst.html.ui.tests=org.eclipse.wst.html.ui.tests_0.7.0
+org.eclipse.wst.html.tests.encoding=org.eclipse.wst.html.tests.encoding_0.7.0
+
+org.eclipse.wst.css.core.tests=org.eclipse.wst.css.core.tests_0.7.0
+org.eclipse.wst.css.tests.encoding=org.eclipse.wst.css.tests.encoding_0.7.0
+
+org.eclipse.wst.internet.monitor.core.tests=org.eclipse.wst.internet.monitor.core.tests_0.7.0
+org.eclipse.wst.internet.monitor.ui.tests=org.eclipse.wst.internet.monitor.ui.tests_0.7.0
+org.eclipse.wst.internet.cache.tests=org.eclipse.wst.internet.cache.tests_0.7.0
+
+org.eclipse.jst.j2ee.core.tests=org.eclipse.jst.j2ee.core.tests_0.7.0
+org.eclipse.jst.j2ee.tests=org.eclipse.jst.j2ee.tests_0.7.0
+org.eclipse.jst.servlet.tests=org.eclipse.jst.servlet.tests_0.7.0
+org.eclipse.jst.validation.test=org.eclipse.jst.validation.test_0.7.0
+org.eclipse.wst.common.tests=org.eclipse.wst.common.tests_0.7.0
+
+org.eclipse.jst.jsp.core.tests=org.eclipse.jst.jsp.core.tests_0.7.0
+org.eclipse.jst.jsp.ui.tests=org.eclipse.jst.jsp.ui.tests_0.7.0
+org.eclipse.jst.jsp.tests.encoding=org.eclipse.jst.jsp.tests.encoding_0.7.0
+
+# Performance tests
+org.eclipse.wst.common.tests.performance=org.eclipse.wst.common.tests.performance_0.7.0
+
+org.eclipse.wst.server.tests.performance=org.eclipse.wst.server.tests.performance_0.7.0
+org.eclipse.jst.server.tomcat.tests.performance=org.eclipse.jst.server.tomcat.tests.performance_0.7.0
+
+org.eclipse.jst.jsp.ui.tests.performance=org.eclipse.jst.jsp.ui.tests.performance_0.7.0
+org.eclipse.wst.css.ui.tests.performance=org.eclipse.wst.css.ui.tests.performance_0.7.0
+org.eclipse.wst.html.ui.tests.performance=org.eclipse.wst.html.ui.tests.performance_0.7.0
+org.eclipse.wst.xml.ui.tests.performance=org.eclipse.wst.xml.ui.tests.performance_0.7.0
+
+org.eclipse.wst.ws.tests=org.eclipse.wst.ws.tests_0.7.0
+org.eclipse.jst.ws.tests=org.eclipse.jst.ws.tests_0.7.0
+org.eclipse.jst.ws.tests.performance=org.eclipse.jst.ws.tests.performance_0.7.0
+
+org.eclipse.wst.wsdl.tests.performance=org.eclipse.wst.wsdl.tests.performance_0.7.0
+org.eclipse.wst.xsd.tests.performance=org.eclipse.wst.xsd.tests.performance_0.7.0
+
+org.eclipse.wst.rdb.tests.performance=org.eclipse.wst.rdb.tests.performance_0.7.0
+
+org.eclipse.jst.j2ee.core.tests.performance=org.eclipse.jst.j2ee.core.tests.performance_0.7.0
+
+# Tomcat dirs
+tomcat50Dir=jakarta-tomcat-5.0.28
+
+# Jonas dirs
+#jonas432Dir=
+jonas432DirName=JONAS_4_3_2
+
+# Performance database properties
+#perf.dbloc=/home/eteration/build-home/derby/wtpPerfDB
+perf.dbloc=wtp-perf-db
+perf.config=wtpbuild
+perf.jvm=sun1.4.2
+perf.ref.config=wtpbuild
+perf.ref.buildId=I20050513-0702
+perf.ref.jvm=sun1.4.2
+
+# SWT
+#swt.lib.path=org.eclipse.swt.motif_3.1.0/os/linux/x86
+swt.lib.path=org.eclipse.swt.win32_3.1.0/os/win32/x86
\ No newline at end of file
diff --git a/archive/releng.builder/scripts/testScripts/test.xml b/archive/releng.builder/scripts/testScripts/test.xml
new file mode 100644
index 0000000..a17c702
--- /dev/null
+++ b/archive/releng.builder/scripts/testScripts/test.xml
@@ -0,0 +1,606 @@
+<project name="Automated Eclipse Testing" default="all" basedir="." >
+
+ <!--properties file containing the plugin directory name including version number-->
+ <property file="test.properties" />
+
+ <!--properties file containing the build information-->
+ <property file="label.properties" />
+
+ <!--default directory where test-eclipse will be installed-->
+ <property name="install" value="${basedir}" />
+
+ <!--name that can be added to report name to identify which platform tests results come from-->
+ <property name="platform" value="" />
+
+ <!-- The root of the eclipse installation -->
+ <property name="eclipse-home" value="${install}/eclipse" />
+
+ <!-- The path to libary.xml -->
+ <!--property name="library-file" value="${eclipse-home}/plugins/${org.eclipse.test}/library.xml" /-->
+
+ <!-- The directory that will contain the xml and html results from the tests that are run -->
+ <property name="results" value="${basedir}/results" />
+
+ <!-- jonas install directory -->
+ <property name="jonas432Dir" value="${testDir}/${jonas432DirName}"/>
+
+ <target name="init">
+ <antcall target="setPropertyJOnAS432Dir"/>
+ </target>
+
+ <target name="setPropertyJOnAS432Dir" unless="jonas432Dir">
+ <property name="jonas432Dir" value="${testDir}/${jonas432DirName}"/>
+ </target>
+
+ <target name="setup" if="clean" description="Reinstall the test Eclipse installation if specified by user">
+ <delete dir="${install}" />
+ <mkdir dir="${install}" />
+ <exec dir="." executable="unzip">
+ <arg line="-o -qq ../downloads/*.zip -d ${install}"/>
+ </exec>
+
+ <exec dir="." executable="unzip">
+ <arg line="-o -qq wtp-wst-tests-feature*.zip -d ${install}"/>
+ </exec>
+
+ </target>
+
+ <target name="runapitests" depends="setup">
+ <condition property="usepiagent">
+ <and>
+ <available file="${eclipse-home}/plugins/${testPlugin}/test.xml" property="test.xml.exists"/>
+ <isset property="package.includes"/>
+ </and>
+ </condition>
+ <antcall target="runapitests2"/>
+ <antcall target="runapitests3"/>
+ </target>
+
+ <target name="runapitests2" if="usepiagent">
+ <ant antfile="${eclipse-home}/plugins/${testPlugin}/test.xml" dir="${eclipse-home}">
+ <property name="library-file" value="${testDir}/api-tests.xml"/>
+ </ant>
+ <copy file="${eclipse-home}/${report}.xml" tofile="${results}/xml/${report}_${platform}.xml" failonerror="false"/>
+ <antcall target="genHtml" />
+ </target>
+
+ <target name="runapitests3" unless="usepiagent">
+ <antcall target="runtests"/>
+ </target>
+
+ <target name="runtests" depends="setup" description="Runs ant on the test.xml for a specified plugin. Requires a property value setting for testPlugin only if test.properties is not available. The property testPlugin represents a directory name made up of the plugin id and plugin version. This directory must contain a valid test.xml.">
+ <available file="${eclipse-home}/plugins/${testPlugin}/test.xml" property="test.xml.exists"/>
+ <antcall target="runtests2"/>
+ </target>
+
+ <target name="runtests2" if="test.xml.exists">
+ <antcall target="runtests-normal"/>
+ <antcall target="runtests-runAsPerfApp"/>
+ <copy file="${eclipse-home}/${report}.xml" tofile="${results}/xml/${report}_${platform}.xml" failonerror="false" />
+ <antcall target="genHtml" />
+ </target>
+
+ <target name="runtests-normal" unless="runAsPerfApp">
+ <ant antfile="${eclipse-home}/plugins/${testPlugin}/test.xml" dir="${eclipse-home}"/>
+ <copy file="${eclipse-home}/${report}.xml" tofile="${results}/xml/${report}_${platform}.xml" failonerror="false" />
+ <antcall target="genHtml" />
+ </target>
+
+ <target name="runtests-runAsPerfApp" if="runAsPerfApp">
+ <ant antfile="${eclipse-home}/plugins/${testPlugin}/test.xml" dir="${eclipse-home}">
+ <property name="library-file" value="${testDir}/performance-tests.xml"/>
+ <property name="runAsPerfApp" value="true"/>
+ </ant>
+ <copy file="${eclipse-home}/${report}.xml" tofile="${results}/xml/${report}_${platform}.xml" failonerror="false" />
+ <antcall target="genHtml" />
+ </target>
+
+ <target name="runperftests">
+ <antcall target="setupPerformance"/>
+ <antcall target="runtests">
+ </antcall>
+ </target>
+
+ <target name="wst-server-tests" description="Runs the org.eclipse.wst.server.*.tests test.xml">
+ <antcall target="runapitests">
+ <param name="testPlugin" value="${org.eclipse.wst.server.core.tests}" />
+ <param name="report" value="org.eclipse.wst.server.core.tests" />
+ <param name="package.includes" value="org.eclipse.wst.server"/>
+ </antcall>
+ <antcall target="runapitests">
+ <param name="testPlugin" value="${org.eclipse.wst.server.ui.tests}" />
+ <param name="report" value="org.eclipse.wst.server.ui.tests" />
+ <param name="package.includes" value="org.eclipse.wst.server"/>
+ </antcall>
+ </target>
+
+ <target name="wst-monitor-tests" description="Runs the org.eclipse.wst.internet.monitor.*.tests test.xml">
+ <antcall target="runtests">
+ <param name="testPlugin" value="${org.eclipse.wst.internet.monitor.core.tests}" />
+ <param name="report" value="org.eclipse.wst.internet.monitor.core.tests" />
+ </antcall>
+ <antcall target="runtests">
+ <param name="testPlugin" value="${org.eclipse.wst.internet.monitor.ui.tests}" />
+ <param name="report" value="org.eclipse.wst.internet.monitor.ui.tests" />
+ </antcall>
+ </target>
+
+ <target name="wst-cache-tests" description="Runs the org.eclipse.wst.internet.cache.tests test.xml">
+ <antcall target="runtests">
+ <param name="testPlugin" value="${org.eclipse.wst.internet.cache.tests}" />
+ <param name="report" value="org.eclipse.wst.internet.cache.tests" />
+ </antcall>
+ </target>
+
+ <target name="jst-server-tests" description="Runs the org.eclipse.jst.server.*.tests test.xml">
+ <antcall target="runtests">
+ <param name="testPlugin" value="${org.eclipse.jst.server.core.tests}" />
+ <param name="report" value="org.eclipse.jst.server.core.tests" />
+ </antcall>
+ <antcall target="runtests">
+ <param name="testPlugin" value="${org.eclipse.jst.server.ui.tests}" />
+ <param name="report" value="org.eclipse.jst.server.ui.tests" />
+ </antcall>
+ </target>
+
+ <target name="jst-server-tomcat-tests" description="Runs the org.eclipse.jst.server.tomcat.*.tests test.xml">
+ <antcall target="runtests">
+ <param name="testPlugin" value="${org.eclipse.jst.server.tomcat.core.tests}" />
+ <param name="report" value="org.eclipse.jst.server.tomcat.core.tests" />
+ </antcall>
+ <antcall target="runtests">
+ <param name="testPlugin" value="${org.eclipse.jst.server.tomcat.ui.tests}" />
+ <param name="report" value="org.eclipse.jst.server.tomcat.ui.tests" />
+ </antcall>
+ </target>
+
+ <target name="jst-server-generic-tests" description="Runs the org.eclipse.jst.server.generic.tests test.xml">
+ <antcall target="runtests">
+ <param name="testPlugin" value="${org.eclipse.jst.server.generic.tests}" />
+ <param name="report" value="org.eclipse.jst.server.generic.tests" />
+ </antcall>
+ </target>
+
+ <target name="jst-server-geronimo-tests" description="Runs the org.eclipse.jst.server.geronimo.*.tests test.xml">
+ <antcall target="runtests">
+ <param name="testPlugin" value="${org.eclipse.jst.server.geronimo.core.tests}" />
+ <param name="report" value="org.eclipse.jst.server.geronimo.core.tests" />
+ </antcall>
+ <antcall target="runtests">
+ <param name="testPlugin" value="${org.eclipse.jst.server.geronimo.ui.tests}" />
+ <param name="report" value="org.eclipse.jst.server.geronimo.ui.tests" />
+ </antcall>
+ </target>
+
+ <target name="jst-j2ee-core-tests" description="Runs the org.eclipse.jst.j2ee.core.tests test.xml">
+ <antcall target="runtests">
+ <param name="testPlugin" value="${org.eclipse.jst.j2ee.core.tests}" />
+ <param name="report" value="org.eclipse.jst.j2ee.core.tests" />
+ </antcall>
+ </target>
+
+ <target name="jst-j2ee-tests" description="Runs the org.eclipse.jst.j2ee.tests test.xml">
+ <antcall target="runtests">
+ <param name="testPlugin" value="${org.eclipse.jst.j2ee.tests}" />
+ <param name="report" value="org.eclipse.jst.j2ee.tests" />
+ </antcall>
+ </target>
+
+ <target name="wst-common-tests" description="Runs the org.eclipse.jst.j2ee.tests test.xml">
+ <antcall target="runtests">
+ <param name="testPlugin" value="${org.eclipse.wst.common.tests}" />
+ <param name="report" value="org.eclipse.wst.common.tests" />
+ </antcall>
+ </target>
+
+ <target name="jst-servlet-tests" description="Runs the org.eclipse.jst.servlet.tests test.xml">
+ <antcall target="runtests">
+ <param name="testPlugin" value="${org.eclipse.jst.servlet.tests}" />
+ <param name="report" value="org.eclipse.jst.servlet.tests" />
+ </antcall>
+ </target>
+
+ <target name="jst-validation-framework-tests" description="Runs the org.eclipse.jst.validation.test test.xml">
+ <antcall target="runtests">
+ <param name="testPlugin" value="${org.eclipse.jst.validation.test}" />
+ <param name="report" value="org.eclipse.jst.validation.test" />
+ </antcall>
+ </target>
+
+
+ <target name="wst-server-perfTests" description="Runs the org.eclipse.wst.server.tests.performance test.xml">
+ <antcall target="runperftests">
+ <param name="testPlugin" value="${org.eclipse.wst.server.tests.performance}" />
+ <param name="report" value="org.eclipse.wst.server.tests.performance" />
+ </antcall>
+ </target>
+
+ <target name="jst-server-tomcat-perfTests" description="Runs the org.eclipse.jst.server.tomcat.tests.performance test.xml">
+ <antcall target="runperftests">
+ <param name="testPlugin" value="${org.eclipse.jst.server.tomcat.tests.performance}" />
+ <param name="report" value="org.eclipse.jst.server.tomcat.tests.performance" />
+ </antcall>
+ </target>
+
+ <!-- JSP TESTS -->
+ <target name="jst-jsp-tests" description="Runs test.xml for
+ org.eclipse.jst.jsp.core.tests
+ org.eclipse.jst.jsp.ui.tests
+ org.eclipse.jst.jsp.tests.encoding">
+ <antcall target="runtests">
+ <param name="testPlugin" value="${org.eclipse.jst.jsp.core.tests}" />
+ <param name="report" value="org.eclipse.jst.jsp.core.tests" />
+ </antcall>
+ <antcall target="runtests">
+ <param name="testPlugin" value="${org.eclipse.jst.jsp.ui.tests}" />
+ <param name="report" value="org.eclipse.jst.jsp.ui.tests" />
+ </antcall>
+ <antcall target="runtests">
+ <param name="testPlugin" value="${org.eclipse.jst.jsp.tests.encoding}" />
+ <param name="report" value="org.eclipse.jst.jsp.tests.encoding" />
+ </antcall>
+ </target>
+
+ <target name="jst-jsp-perfTests" description="Runs test.xml for
+ org.eclipse.jst.jsp.ui.tests.performance">
+ <antcall target="runperftests">
+ <param name="testPlugin" value="${org.eclipse.jst.jsp.ui.tests.performance}" />
+ <param name="report" value="org.eclipse.jst.jsp.ui.tests.performance" />
+ </antcall>
+ </target>
+
+ <!-- SSE TESTS -->
+ <target name="wst-sse-tests" description="Runs test.xml for
+ org.eclipse.wst.sse.core.tests
+ org.eclipse.wst.sse.ui.tests">
+ <antcall target="runtests">
+ <param name="testPlugin" value="${org.eclipse.wst.sse.core.tests}" />
+ <param name="report" value="org.eclipse.wst.sse.core.tests" />
+ </antcall>
+
+ <antcall target="runtests">
+ <param name="testPlugin" value="${org.eclipse.wst.sse.ui.tests}" />
+ <param name="report" value="org.eclipse.wst.sse.ui.tests" />
+ </antcall>
+ </target>
+
+ <!-- XML TESTS -->
+ <target name="wst-xml-tests" description="Runs test.xml for
+ org.eclipse.wst.xml.core.tests
+ org.eclipse.wst.xml.ui.tests
+ org.eclipse.wst.xml.tests.encoding
+ org.eclipse.wst.xml.validation.tests">
+ <antcall target="runtests">
+ <param name="testPlugin" value="${org.eclipse.wst.xml.core.tests}" />
+ <param name="report" value="org.eclipse.wst.xml.core.tests" />
+ </antcall>
+ <antcall target="runtests">
+ <param name="testPlugin" value="${org.eclipse.wst.xml.ui.tests}" />
+ <param name="report" value="org.eclipse.wst.xml.ui.tests" />
+ </antcall>
+ <antcall target="runtests">
+ <param name="testPlugin" value="${org.eclipse.wst.xml.tests.encoding}" />
+ <param name="report" value="org.eclipse.wst.xml.tests.encoding" />
+ </antcall>
+ <antcall target="runtests">
+ <param name="testPlugin" value="${org.eclipse.wst.xml.validation.tests}" />
+ <param name="report" value="org.eclipse.wst.xml.validation.tests" />
+ </antcall>
+ </target>
+
+ <!-- WSDL TESTS -->
+ <target name="wst-wsdl-tests" description="Runs test.xml for
+ org.eclipse.wst.wsdl.tests
+ org.eclipse.wst.wsdl.validation.tests">
+ <antcall target="runapitests">
+ <param name="testPlugin" value="${org.eclipse.wst.wsdl.tests}" />
+ <param name="report" value="org.eclipse.wst.wsdl.tests" />
+ <param name="package.includes" value="org.eclipse.wst.wsdl"/>
+ </antcall>
+ <antcall target="runtests">
+ <param name="testPlugin" value="${org.eclipse.wst.wsdl.validation.tests}" />
+ <param name="report" value="org.eclipse.wst.wsdl.validation.tests" />
+ </antcall>
+ </target>
+
+ <!-- WSI TESTS -->
+ <target name="wst-wsi-tests" description="Runs test.xml for
+ org.eclipse.wst.wsi.tests">
+ <antcall target="runtests">
+ <param name="testPlugin" value="${org.eclipse.wst.wsi.tests}" />
+ <param name="report" value="org.eclipse.wst.wsi.tests" />
+ </antcall>
+ </target>
+
+ <!-- XSD TESTS -->
+ <target name="wst-xsd-tests" description="Runs test.xml for
+ org.eclipse.wst.xsd.validation.tests">
+ <antcall target="runtests">
+ <param name="testPlugin" value="${org.eclipse.wst.xsd.validation.tests}" />
+ <param name="report" value="org.eclipse.wst.xsd.validation.tests" />
+ </antcall>
+ </target>
+
+ <target name="wst-xml-perfTests" description="Runs test.xml for
+ org.eclipse.wst.xml.ui.tests.performance">
+ <antcall target="runperftests">
+ <param name="testPlugin" value="${org.eclipse.wst.xml.ui.tests.performance}" />
+ <param name="report" value="org.eclipse.wst.xml.ui.tests.performance" />
+ </antcall>
+ </target>
+
+ <!-- HTML TESTS -->
+ <target name="wst-html-tests" description="Runs test.xml for
+ org.eclipse.wst.html.core.tests
+ org.eclipse.wst.html.ui.tests
+ org.eclipse.wst.html.tests.encoding">
+ <antcall target="runtests">
+ <param name="testPlugin" value="${org.eclipse.wst.html.core.tests}" />
+ <param name="report" value="org.eclipse.wst.html.core.tests" />
+ </antcall>
+ <antcall target="runtests">
+ <param name="testPlugin" value="${org.eclipse.wst.html.ui.tests}" />
+ <param name="report" value="org.eclipse.wst.html.ui.tests" />
+ </antcall>
+ <antcall target="runtests">
+ <param name="testPlugin" value="${org.eclipse.wst.html.tests.encoding}" />
+ <param name="report" value="org.eclipse.wst.html.tests.encoding" />
+ </antcall>
+ </target>
+
+ <target name="wst-html-perfTests" description="Runs test.xml for
+ org.eclipse.wst.html.ui.tests.performance">
+ <antcall target="runperftests">
+ <param name="testPlugin" value="${org.eclipse.wst.html.ui.tests.performance}" />
+ <param name="report" value="org.eclipse.wst.html.ui.tests.performance" />
+ </antcall>
+ </target>
+
+ <!-- CSS TESTS -->
+ <target name="wst-css-tests" description="Runs test.xml for
+ org.eclipse.wst.css.core.tests
+ org.eclipse.wst.css.tests.encoding">
+ <antcall target="runtests">
+ <param name="testPlugin" value="${org.eclipse.wst.css.core.tests}" />
+ <param name="report" value="org.eclipse.wst.css.core.tests" />
+ </antcall>
+ <antcall target="runtests">
+ <param name="testPlugin" value="${org.eclipse.wst.css.tests.encoding}" />
+ <param name="report" value="org.eclipse.wst.css.tests.encoding" />
+ </antcall>
+ </target>
+
+ <target name="wst-css-perfTests" description="Runs test.xml for
+ org.eclipse.wst.css.ui.tests.performance">
+ <antcall target="runperftests">
+ <param name="testPlugin" value="${org.eclipse.wst.css.ui.tests.performance}" />
+ <param name="report" value="org.eclipse.wst.css.ui.tests.performance" />
+ </antcall>
+ </target>
+
+ <target name="wst-common-perfTests" description="Runs test.xml for org.eclipse.wst.common.tests.performance">
+ <antcall target="runperftests">
+ <param name="testPlugin" value="${org.eclipse.wst.common.tests.performance}" />
+ <param name="report" value="org.eclipse.wst.common.tests.performance" />
+ </antcall>
+ </target>
+
+ <!-- WS TESTS -->
+
+ <target name="wst-ws-tests" description="Runs the org.eclipse.wst.ws.tests test.xml">
+ <antcall target="runtests">
+ <param name="testPlugin" value="${org.eclipse.wst.ws.tests}" />
+ <param name="report" value="org.eclipse.wst.ws.tests" />
+ </antcall>
+ </target>
+
+ <target name="jst-ws-tests" description="Runs the org.eclipse.jst.ws.tests test.xml">
+ <antcall target="runtests">
+ <param name="testPlugin" value="${org.eclipse.jst.ws.tests}" />
+ <param name="report" value="org.eclipse.jst.ws.tests" />
+ </antcall>
+ </target>
+
+ <target name="jst-ws-perfTests" description="Runs the org.eclipse.jst.ws.tests.performance test.xml">
+ <antcall target="runperftests">
+ <param name="testPlugin" value="${org.eclipse.jst.ws.tests.performance}" />
+ <param name="report" value="org.eclipse.jst.ws.tests.performance" />
+ </antcall>
+ </target>
+
+ <!-- wsdl performance tests -->
+ <target name="wst-wsdl-perfTests">
+ <antcall target="runperftests">
+ <param name="testPlugin" value="${org.eclipse.wst.wsdl.tests.performance}" />
+ <param name="report" value="org.eclipse.wst.wsdl.tests.performance" />
+ </antcall>
+ </target>
+
+ <!-- xsd performance tests -->
+ <target name="wst-xsd-perfTests">
+ <antcall target="runperftests">
+ <param name="testPlugin" value="${org.eclipse.wst.xsd.tests.performance}" />
+ <param name="report" value="org.eclipse.wst.xsd.tests.performance" />
+ </antcall>
+ </target>
+
+ <!-- rdb performance tests -->
+ <target name="wst-rdb-perfTests">
+ <antcall target="runperftests">
+ <param name="testPlugin" value="${org.eclipse.wst.rdb.tests.performance}"/>
+ <param name="report" value="org.eclipse.wst.rdb.tests.performance"/>
+ </antcall>
+ </target>
+
+ <!-- j2ee performance tests -->
+ <target name="jst-j2ee-perfTests">
+ <antcall target="runperftests">
+ <param name="testPlugin" value="${org.eclipse.jst.j2ee.core.tests.performance}"/>
+ <param name="report" value="org.eclipse.jst.j2ee.core.tests.performance"/>
+ </antcall>
+ </target>
+
+ <target name="all" depends="init">
+ <echo message="Starting WTP Unit Tests"/>
+
+ <echo message="Starting wst-server-tests"/>
+ <antcall target="wst-server-tests"/>
+
+ <echo message="Starting wst-monitor-tests"/>
+ <antcall target="wst-monitor-tests"/>
+
+ <echo message="Starting wst-cache-tests"/>
+ <antcall target="wst-cache-tests"/>
+
+ <echo message="Starting wst-common-tests"/>
+ <antcall target="wst-common-tests" />
+
+ <echo message="Starting wst-sse-tests"/>
+ <antcall target="wst-sse-tests" />
+
+ <echo message="Starting wst-xml-tests"/>
+ <antcall target="wst-xml-tests" />
+
+ <echo message="Starting wst-wsdl-tests"/>
+ <antcall target="wst-wsdl-tests" />
+
+ <echo message="Starting wst-wsi-tests"/>
+ <antcall target="wst-wsi-tests" />
+
+ <echo message="Starting wst-xsd-tests"/>
+ <antcall target="wst-xsd-tests" />
+
+ <echo message="Starting wst-html-tests"/>
+ <antcall target="wst-html-tests" />
+
+ <echo message="Starting wst-css-tests"/>
+ <antcall target="wst-css-tests" />
+
+ <echo message="Starting wst-ws-tests"/>
+ <antcall target="wst-ws-tests" />
+
+
+ <echo message="Starting jst-server-tests"/>
+ <antcall target="jst-server-tests"/>
+
+ <echo message="Starting jst-server-tomcat-tests"/>
+ <antcall target="jst-server-tomcat-tests"/>
+
+ <echo message="Starting jst-server-geronimo-tests"/>
+ <antcall target="jst-server-geronimo-tests"/>
+
+ <echo message="Starting jst-server-generic-tests"/>
+ <antcall target="jst-server-generic-tests"/>
+
+ <echo message="Starting jst-j2ee-core-tests"/>
+ <antcall target="jst-j2ee-core-tests" />
+
+ <echo message="Starting jst-j2ee-tests"/>
+ <antcall target="jst-j2ee-tests" />
+
+ <echo message="Starting jst-servlet-tests"/>
+ <antcall target="jst-servlet-tests" />
+
+ <echo message="Starting jst-validation-framework-tests"/>
+ <antcall target="jst-validation-framework-tests" />
+
+ <echo message="Starting jst-jsp-tests"/>
+ <antcall target="jst-jsp-tests" />
+
+ <echo message="Starting jst-ws-tests"/>
+ <antcall target="jst-ws-tests" />
+
+ <echo message="Ended WTP Unit Tests"/>
+ </target>
+
+ <target name="setupPerformance">
+ <delete dir="${perfDir}"/>
+ <mkdir dir="${perfDir}"/>
+ <ant antfile="buildAll.xml" dir="${build.home}/org.eclipse.wtp.releng" target="getPreReq"/>
+ <ant antfile="buildAll.xml" dir="${build.home}/org.eclipse.wtp.releng" target="setupTestEclipse">
+ <property name="testDir" value="${perfDir}"/>
+ </ant>
+ <ant antfile="buildAll.xml" dir="${build.home}/org.eclipse.wtp.releng" target="setupPerformance"/>
+ </target>
+
+ <target name="performance" depends="init">
+ <!--
+ <antcall target="all">
+ <param name="runAsPerfApp" value="true"/>
+ </antcall>
+ -->
+ <antcall target="wst-common-perfTests"/>
+ <antcall target="wst-wsdl-perfTests"/>
+ <antcall target="wst-server-perfTests" />
+ <antcall target="jst-server-tomcat-perfTests" />
+ <antcall target="jst-jsp-perfTests" />
+ <antcall target="wst-xml-perfTests" />
+ <antcall target="wst-html-perfTests" />
+ <antcall target="wst-css-perfTests" />
+ <antcall target="jst-ws-perfTests"/>
+ <antcall target="wst-xsd-perfTests"/>
+ <antcall target="wst-rdb-perfTests"/>
+ <antcall target="jst-j2ee-perfTests"/>
+ <!--
+ <antcall target="genPerfGraphs" />
+ -->
+ </target>
+
+ <target name="genHtml" description="Generates HTML results with provided JUNIT.XSL provided" unless="genHtml.disable">
+ <style style="JUNIT.XSL" basedir="${results}/xml" destdir="${results}/html" />
+ </target>
+
+ <target name="genPerfGraphs" description="Generates performance graphs">
+ <condition property="osWindows" value="true">
+ <os family="windows" />
+ </condition>
+ <condition property="java.library.path" value="${eclipseBuilderDirectory}/swt-win32">
+ <os family="windows" />
+ </condition>
+ <condition property="swt.library.path" value="${eclipseBuilderDirectory}/swt-linux-motif">
+ <os family="unix" />
+ </condition>
+ <antcall target="genPerfGraphsWindows"/>
+ <antcall target="genPerfGraphsLinux"/>
+ </target>
+
+ <target name="genPerfGraphsWindows" if="osWindows">
+ <java classname="org.eclipse.test.performance.ui.Main" fork="true" maxmemory="256m">
+ <arg line="-baseline ${perf.ref.buildId} -current ${perf.buildId} -jvm ${perf.jvm} -config ${perf.config} -config.properties ${perf.config},${perf.config},${perf.config},${results}/graph/${perf.config} -output ${results}/graph"/>
+ <classpath>
+ <fileset dir="${eclipseBuilderDirectory}/plugins">
+ <exclude name="**/*swt.motif*.jar"/>
+ <exclude name="**/*swt.gtk*.jar"/>
+ <include name="**/*.jar"/>
+ </fileset>
+ <fileset dir="${build.home}/${cloudscapeLib}">
+ <include name="**/*.jar"/>
+ </fileset>
+ </classpath>
+ <env key="LD_LIBRARY_PATH" value="${eclipseBuilderDirectory}/swt-win32"/>
+ <sysproperty key="PLUGIN_PATH" value="${eclipseBuilderDirectory}/plugins/org.eclipse.test.performance.ui"/>
+ <sysproperty key="eclipse.perf.dbloc" value="${build.home}/${perf.dbloc}"/>
+ <sysproperty key="java.library.path" value="${eclipseBuilderDirectory}/swt-win32"/>
+ </java>
+ </target>
+
+ <target name="genPerfGraphsLinux" unless="osWindows">
+ <java classname="org.eclipse.test.performance.ui.Main" fork="true" maxmemory="256m">
+ <arg line="-baseline ${perf.ref.buildId} -current ${perf.buildId} -jvm ${perf.jvm} -config ${perf.config} -config.properties ${perf.config},${perf.config},${perf.config},${results}/graph/${perf.config} -output ${results}/graph"/>
+ <classpath>
+ <fileset dir="${eclipseBuilderDirectory}/plugins">
+ <exclude name="**/*swt.win32*.jar"/>
+ <include name="**/*.jar"/>
+ </fileset>
+ <fileset dir="${build.home}/${cloudscapeLib}">
+ <include name="**/*.jar"/>
+ </fileset>
+ </classpath>
+ <env key="LD_LIBRARY_PATH" value="${eclipseBuilderDirectory}/swt-linux-motif"/>
+ <sysproperty key="PLUGIN_PATH" value="${eclipseBuilderDirectory}/plugins/org.eclipse.test.performance.ui"/>
+ <sysproperty key="eclipse.perf.dbloc" value="${build.home}/${perf.dbloc}"/>
+ <sysproperty key="java.library.path" value="${eclipseBuilderDirectory}/swt-linux-motif"/>
+ </java>
+ </target>
+
+</project>
diff --git a/archive/releng.builder/tools/apitools/api-usage-checking-design.html b/archive/releng.builder/tools/apitools/api-usage-checking-design.html
new file mode 100644
index 0000000..4183a20
--- /dev/null
+++ b/archive/releng.builder/tools/apitools/api-usage-checking-design.html
@@ -0,0 +1,301 @@
+<html>
+
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
+<meta name="GENERATOR" content="Microsoft FrontPage 4.0">
+<meta name="ProgId" content="FrontPage.Editor.Document">
+<title>Design of a Tool for Checking API Usage in Eclipse-based Components</title>
+</head>
+
+<body>
+
+<h1>Design of a Tool for Checking API Usage in Eclipse-based Components</h1>
+<p>Jim des Rivieres<br>
+Last updated Jan 14, 2005</p>
+<p>This document contains the design for a tool for checking API usage in
+Eclipse-based components and products.</p>
+<h2>Components</h2>
+<p>For the purposes of this tool, a component is a set of plug-ins and plug-in
+fragments. Components must be disjoint, in that the plug-ins and fragments
+within one component must be distinct from those in other components. In other
+words, components partition the set of plug-ins and plug-in fragments into
+disjoint subsets. We also allow a form of library component containing no
+plug-ins or fragments; library components are used to describe class libraries
+such as J2SE that are not located inside any plug-in.</p>
+<p>The code for a component is the sum total of the code in the component's
+plug-ins and fragments (as described by the plug-in manifest). The code is in
+the form of Java types (predominantly classes and interfaces; J2SE 5.0 adds
+enumerations and annotation types). The types that are intended to be used by
+other components are called the component's API, and referred to as API types. A
+component can provide any number of API types, including none. Typically, only a
+subset of a component's types are part of its API. The rest are referred to as
+internal types. Non-public types are always considered internal.</p>
+<p>It's common to use Java packages to separate one component from another, and
+to separate API from internal within a component. Each component generally
+declares its code in packages different from those used by any other component.
+An API package is one that contains at least one API type. An internal package
+is one that contains no API types. The default assumption is that all public
+top-level types in an API package are API types.</p>
+<p>An API type declared in one component can be used by other components is
+various ways:</p>
+<ul>
+ <li>Declare a field, variable, parameter, or return type where the type is an
+ API type.</li>
+ <li>Cast the value on an expression to an API type.</li>
+ <li>Declare a class that implements an API interface.</li>
+ <li>Declare an interface that extends an API interface.</li>
+ <li>Declare a class that extends (subclasses) an API class.</li>
+ <li>Creates an instance of an API class.</li>
+</ul>
+<p>It is common for an API type to be intended to be used only in certain ways.
+In some cases, Java modifiers can be used to rule out unintended uses (e.g.,
+prevent subclassing by declaring the class "final"). But in many
+cases, the intended uses are spelled out in the type's specification (doc
+comment). The most common restrictions are:</p>
+<ul>
+ <li>Clients may not instantiate this API class.</li>
+ <li>Clients may not subclass this API class.</li>
+ <li>Clients may not implement this API interface. It follows that the client
+ may not extend the interface either.</li>
+</ul>
+<p>Types have members (fields, methods, types). For the present, we make the
+simplifying assumption that all public and protected members of an API type are
+intended to be used by other components.</p>
+<h2>Component description files</h2>
+<p>Each component will be described via a component description file. The file
+format is XML-based; the DTD follows (complete <a href="http://dev.eclipse.org/viewcvs/index.cgi/working/apitools/component.xsd?cvsroot=WebTools_Project">XML
+scheme</a>):</p>
+<pre><!ELEMENT component (plugin* package* component-depends)>
+<!ATTLIST component
+ name CDATA #REQUIRED
+></pre>
+The <component> element provides information about a component.
+Attributes:
+<ul>
+ <li><b>name</b> - the component name; "Eclipse Platform Generic
+ Workbench"; note that this name is used to refer to the component and
+ distinguish it from other components (but otherwise has no official status
+ in Eclipse ontology)</li>
+</ul>
+<p>Child elements or the <component> element describe the set of plug-ins
+and fragments making up the component, provide information about the Java
+packages and types in the component's code, and include a list of other
+components on which this component may depend.</p>
+<p>Each <plugin> element must identify a distinct plug-in or fragment. The
+list of plug-ins must be complete; that is, a component contains a plug-in (or
+fragment) if and only if a <plugin> element occurs as a child of the
+<component> element.</p>
+<pre><!ELEMENT plugin EMPTY>
+<!ATTLIST plugin
+ id CDATA #REQUIRED
+ fragment ("true" | "false") "false"
+></pre>
+The <plugin> element identifies a plug-in or plug-in fragment that is part
+of the component. Attributes:
+<ul>
+ <li><b>id</b> - the plug-in id or plug-in fragment id; e.g., "org.eclipse.core.resources";
+ note that in the case of a fragment, this is the id of fragment itself</li>
+ <li><b>fragment</b> - whether this is a plug-in fragment as opposed to a
+ plug-in (default: plug-in)</li>
+</ul>
+<p>Each <plugin> element must identify a distinct plug-in or fragment. The
+list of plug-ins must be complete; that is, a component contains a plug-in (or
+fragment) if and only if a <plugin> element occurs as a child of the
+<component> element.</p>
+<pre><!ELEMENT package (type*)>
+<!ATTLIST package
+ name CDATA #REQUIRED
+ exclusive ("true" | "false") "true"
+ api ("true" | "false") "true"
+></pre>
+The <package> element provides information about a package as used by the
+component. Attributes:
+<ul>
+ <li><b>name</b> - Java package name; e.g., "javax.swing", "org.eclipse.ui"</li>
+ <li><b>api</b> - whether top-level types in this package are API types by
+ default (default: true). It's good practice for all public classes API
+ top-level types in a package to be considered API. Specify "false"
+ in order to explicitly list API types found in the package.</li>
+ <li><b>exclusive</b> - whether this package is reserved for exclusive use by
+ this component (default: true); specify "false" in (rare) cases
+ where a multiple components declared types in the same package. Package
+ sharing is only by mutual consent; all components involved must explicitly
+ declare the package as exclusive="false" (even if it has no API
+ types).</li>
+</ul>
+<p>Each <package> element must identify a distinct package relative to
+that component. If the unusual case where a package is shared with other
+components, the <package> element is understood to apply only to the types
+the component actually declares, and has no bearing on the types declared in the
+same package in any other component. The list of packages may be incomplete; if
+the component contains code in a package not mentioned in the list, the package
+is considered to be internal (equivalent to being explicitly described as
+<package name="..." api="false" />). The children of
+the <package> element provide information about specific types in the
+package.</p>
+<pre><!ELEMENT type EMPTY>
+<!ATTLIST type
+ name CDATA #REQUIRED
+ reference ("true" | "false") "true"
+ implement ("true" | "false") "true"
+ subclass ("true" | "false") "true"
+ instantiate ("true" | "false") "true"
+></pre>
+The <type> element provides information about a top-level type in a
+package. Attributes:
+<ul>
+ <li><b>name</b> - simple name of a top-level Java class, interface,
+ enumeration, or annotation type; e.g., "String", "IResource"</li>
+ <li><b>reference</b> - whether other components are expected to reference this
+ type by name (default: true); specify "false" to indicate that the
+ type is internal</li>
+ <li><b>implement</b> - whether other components are expected to declare a
+ class that implements this interface (default: true); specify
+ "false" for an interface that other components are not supposed to
+ implement directly; this attribute is ignored for classes, enumerations, and
+ annotation types, none of which can be meaningfully implemented</li>
+ <li><b>subclass</b> - whether other components are expected to declare a class
+ that directly subclasses this class (default: true); specify
+ "false" for a class that other components are not supposed to
+ subclass directly; this attribute is ignored for interfaces, enumerations,
+ and annotation types, none of which can be meaningfully subclassed</li>
+ <li><b>instantiate</b> - whether other components are expected to create
+ instances of this class or annotation type (default: true); specify
+ "false" for a type that other components are not supposed to
+ instantiate directly; this attribute is ignored for interfaces and
+ enumerations, neither of which can be meaningfully instantiated; this
+ attribute is moot for classes that are declared final (or ones with no
+ generally accessible constructors), since the Java compiler and JRE will
+ block outside attempts to instantiate</li>
+</ul>
+<p>(Note: We could extend the schema in the future to allow <type>
+elements to provide analogous information about their members. We could also
+extend the <component> element to allow aspects other than code API to be
+described.)</p>
+<pre><!ELEMENT component-depends (component-ref*)>
+<!ATTLIST component-depends
+ unrestricted ("true" | "false") "false"
+>
+<!ELEMENT component-ref EMPTY>
+<!ATTLIST component-ref
+ name CDATA #REQUIRED
+></pre>
+The <component-depends> element identifies other components on which this
+component is allowed to depend. Attributes:
+<ul>
+ <li><b>unrestricted</b> - whether this component is allowed to depend on
+ arbitrary other components, or just the ones explicitly named by the
+ <component-ref> children</li>
+</ul>
+If a component specifies <component-depends
+unrestricted="true">, then it is allowed to depend on any component
+(and the children, if any, are ignored). Otherwise, the <component-ref>
+elements give the names of the component on which this component may depend. The
+<component-ref> element identifies a component by name. Attributes:
+<ul>
+ <li><b>name</b> - the name of the referenced component; e.g., "Eclipse
+ Platform Generic Workbench"</li>
+</ul>
+<h3>Example</h3>
+<p>A component description of one of the Eclipse Platform components:</p>
+<pre><component name="Eclipse Platform Core Resources">
+ <plugin id="org.eclipse.core.resources" />
+ <plugin id="org.eclipse.core.resources.win32" fragment="true" />
+ <plugin id="org.eclipse.core.resources.linux" fragment="true" />
+ <plugin id="org.eclipse.core.resources.hpux" fragment="true" />
+ <plugin id="org.eclipse.core.resources.macosx" fragment="true" />
+ <plugin id="org.eclipse.core.resources.qnx" fragment="true" />
+
+ <package name="org.eclipse.core.resources">
+ <type name="ICommand" implement="false" />
+ <type name="IContainer" implement="false" />
+ <type name="IFile" implement="false" />
+ <type name="IFileState" implement="false" />
+ <type name="IFolder" implement="false" />
+ <type name="IMarker" implement="false" />
+ <type name="IMarkerDelta" implement="false" />
+ <type name="IPathVariableChangeEvent" implement="false" />
+ <type name="IPathVariableManager" implement="false" />
+ <type name="IProject" implement="false" />
+ <type name="IProjectDescription" implement="false" />
+ <type name="IProjectNatureDescriptor" implement="false" />
+ <type name="IResource" implement="false" />
+ <type name="IResourceChangeEvent" implement="false" />
+ <type name="IResourceDelta" implement="false" />
+ <type name="IResourceProxy" implement="false" />
+ <type name="IResourceRuleFactory" implement="false" />
+ <type name="IResourceStatus" implement="false" />
+ <type name="ISaveContext" implement="false" />
+ <type name="ISavedState" implement="false" />
+ <type name="ISynchronizer" implement="false" />
+ <type name="IWorkspace" implement="false" />
+ <type name="IWorkspaceDescription" implement="false" />
+ <type name="IWorkspaceRoot" implement="false" />
+ <type name="ResourcesPlugin" subclass="false" instantiate="false" />
+ </package>
+ <package name="org.eclipse.core.resources.mapping">
+ </package>
+ <package name="org.eclipse.core.resources.refresh">
+ <type name="IRefreshResult" implement="false" />
+ </package>
+ <package name="org.eclipse.core.resources.team">
+ <type name="IResourceTree" implement="false" />
+ </package>
+ <component-depends>
+ <component-ref name="Eclipse Platform Core Resources" />
+ <component-ref name="J2SE" />
+ </component-depends>
+</component></pre>
+<h2>How component descriptions are used</h2>
+<ul>
+ <li><b>Component package/type map</b> - Given the code for a component and its
+ component description, you can generate a fleshed-out list of the API types
+ declared by the component. (It's considerably harder to properly describe
+ the set of API members, since this involves building the supertype chain and
+ performing inheritance. Since the supertype chain need not be confined to a
+ single component, you also need the code for required plug-ins, etc.)</li>
+ <li><b>Inter-component reference map</b> - Given the code for a component, its
+ component description, and the component descriptions for all other
+ components to which the given component may contain references, you can
+ generate the list of external references from the component to types in some
+ other component (possibly unknown, possibly ambiguous). In particular, you
+ can do this without needing to consult the code for the other components (or
+ even needing the code to be available).</li>
+ <li><b>Fragile usage map</b> - You can go further and classify inter-component
+ usage as fragile. This requires the code for a component, its component
+ description, and the component descriptions for all other components to
+ which the given component may contain references. In the limited case of
+ shared packages between components, the code for these components may be
+ needed to disambiguate external references to types in the shared package. A
+ fragile external reference is any of:
+ <ul>
+ <li>A reference to an internal type in another (possibly unknown)
+ component.</li>
+ <li>A declaration of a subclass of a class C in another component where C
+ is described as subclass="false".</li>
+ <li>A declaration of a class implementing an interface I in another
+ component where I is described as implement="false".</li>
+ <li>An invocation of a constructor of a class C in another component where
+ C is described as instantiate="false".</li>
+ <li>A declaration of a type in a package P that another component
+ describes as exclusive="true".</li>
+ </ul>
+ </li>
+</ul>
+<h2>Change history</h2>
+<ul>
+ <li>Dec. 23, 2004 - Initial version</li>
+ <li>Jan. 14, 2005
+ <ul>
+ <li>Added <component-depends> element to allow each component to
+ explicitly specify which other component it may depend on.</li>
+ <li>Added clarification to "api" attribute of <package>
+ element re: this is in line with good practice of making all top-types
+ public types in an API package being considered API.</li>
+ </ul>
+ </li>
+</ul>
+
+</body>
+
+</html>
diff --git a/archive/releng.builder/tools/apitools/api-usage-checking.html b/archive/releng.builder/tools/apitools/api-usage-checking.html
new file mode 100644
index 0000000..fe54396
--- /dev/null
+++ b/archive/releng.builder/tools/apitools/api-usage-checking.html
@@ -0,0 +1,159 @@
+<html>
+
+<head>
+<meta http-equiv="Content-Language" content="en-us">
+<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
+<meta name="GENERATOR" content="Microsoft FrontPage 4.0">
+<meta name="ProgId" content="FrontPage.Editor.Document">
+<title>Checking for internal references Requirements</title>
+</head>
+
+<body>
+
+<h1>
+Requirements for A Tool for Checking API Usage in Eclipse-based Components</h1>
+<p>Jim des Rivieres<br>
+Last updated Dec. 10, 2004</p>
+<p>This document lists the general requirements for a tool for checking API usage in Eclipse-based components
+and products.</p>
+<h2>1. The Problem</h2>
+<p>The context is the same as the current API Usage Scanner tool. That is, we need a
+tool for checking Eclipse-based products that will help in identifying
+inappropriate use of APIs and non-APIs. We want tools to be able to check Eclipse-based plug-ins and products for
+obvious cases of where plug-ins are not playing by the rules. The open-ended,
+heterougeous, and heavily componentized nature of Eclipse are what make it
+somewhat different from checking more monolithic applications.</p>
+<p> Eclipse is based on the notion of a plug-in. Products end up being a
+collection of plug-ins, collected from diverse development efforts spanning open
+source projects, multiple IBM teams, and third-party tool vendors. Set of these
+plug-ins are often bundled into various "platforms" (e.g., Eclipse
+Platform, IBM Eclipse SDK), and assembled into product stacks or families (IBM
+RAD, WBIT). Component-based software is easier to develop, maintain, and evolve
+when the inter-component coupling is well understood and well managed. This is
+done by having each component offer its services through a well-defined API that
+serves are the sole interface between it and other components. To the
+ extent that all inter-component coupling abides by the contracts spelled out
+in the API specifications, replacing one component by a different version
+supporting the same API contracts will work the same way. Moreover, component
+APIs can be evolved in compatible ways to meet changing requirements, without
+invalidating previously working configurations. However, when inter-component coupling does not follow the terms of the API
+ contracts, replacing a component by a different version supporting the same
+API contracts may break some previously-working configurations. This is a
+ destabilizing factor that decreases robustness, increases maintenance costs,
+and inhibits component growth.</p>
+<p>In component-based software, the premium is on all inter-component coupling being
+ through the components API and in accord with all API contracts. Although
+the Java
+ language has some features for controlling visibility that are enforced at
+compile-time (e.g., private fields and methods cannot be referenced from
+ outside the code of the class itself), there are many constraints
+restrictions that
+ the Java language cannot express (e.g., that a particular public class is
+internal rather than API, or that a particular interface must not be implemented outside
+ its own component). Detection of inappropriate inter-component coupling is
+most useful when the component is under development; after a problematic component
+has shipped in a product, the information can at least be useful in managing the
+problem (although not solving it).</p>
+<p>The problem we are addressing is helping development teams to manage inter-component coupling
+in Eclipse-based components. In particular, we aim to do this by providing an
+automatic tool that can detect obvious cases where one component is more tightly
+coupled to another component that it should be.</p>
+<h2>2. General Requirements</h2>
+<p>The tool should meet the following general requirements:</p>
+<ol>
+ <li><b>Tool will be used for checking Eclipse components.<br>
+ </b>The notion of a "component" in Eclipse is not formally defined.
+ Rather, a component is a loosely-defined grouping of a small number of plug-ins and/or
+ plug-in fragments that are designed and maintained as a unit, generally
+ by a small team of developers. For instance, the Eclipse Platform itself is
+ made of a number of components each with between 1 and 5 plug-ins. The Java
+ code for each plug-in is housed in one or more JARs (this relationship is
+ formalized and captured in the plug-in's mainfest). Whereas coupling within
+ a component in intended to be tight/intimate, all coupling between
+ components is intended to be mediated through well-defined Java-based APIs.
+ The primary use of the tool will be used for checking collections of Eclipse
+ components to see whether the inter-component couplings are in line with the
+ component APIs. the Java code in the various plug-ins.
+ </li>
+ <li><b>Helpful to component developers.<br>
+ </b>Component developers (and development teams) are the primary customers of this
+ tool. The tool should be designed to meet their needs. Their main need for
+ such a tool is helping manage inter-component dependencies to ensure that
+ they do not accidentally exceed the bounds of the component APIs. Early
+ detection of problems means they can be addressed while the component is
+ still under development. So the tool should detect and report cases of <i>illegitimate</i>
+ couplings from component A to component B are not covered by B's API, the
+ most common mistake being A referencing one of B's internal classes. A
+ secondary need is to detect and report <i>legitimate</i> API couplings
+ components, as an aid for planning and impact assessment.
+ </li>
+ <li><b>Modular, component-based input.<br>
+ </b>Eclipse components to be checked will be fed to the tool. Since the
+ notion of component and API are not formally specified in Eclipse, the tool
+ will also need to be fed some a description of each component capturing
+ things like the set of plug-ins that comprise the component, and the rules
+ for separating component API from component internals and for distinguishing
+ legitimate from illegitimate API usage. Component owners should create and
+ maintain the component descriptions for their individual components
+ (although it should also be easy to furnish an after-market component
+ description for a component that does not come with its own). Each
+ component description should be in a file that the component owner can
+ easily maintain. Component description files should be in a well-specified
+ XML-based format so
+ that they could be read or generated by other tools. A set of relevant
+ component description files would be fed to the tool whenever checking
+ components.
+ </li>
+ <li><b>Performant and scalable.</b> <br>
+ The tool should be amenable to checking large numbers of Eclipse components.
+ We already have instances for Eclipse-based products with 1500 plug-ins. The
+ tool should make it easy to check anything from a single component, to a
+ group of components that form a "platform" of some ilk, to an
+ entire product distribution. The components may be a heterogeneous mix of product-specific, open
+ source,
+ or third party. The tool should deal gracefully with incompleteness, so
+ that it is possible to check a component without necessarily having complete information
+ about other
+ components. The tool should be reasonably fast, with speed proportional
+ to the number of components being checked.
+ </li>
+ <li><b>Modular, component-based output.<br>
+ </b>The tool should produce modular, component-based reports. The outputs
+ should be in a well-specified XML-based format so that they could
+ be post-processed for populating databases, generating web
+ pages, printing reports, etc.
+ </li>
+ <li><b>Fully-automatic operation.</b><br>
+ The tool should be suitable for inclusion in automated build processes that
+ build the components, or repackage components into larger aggregations. In
+ other words, something without a GUI that can be run from the command line, or from
+ an Ant build file.
+ </li>
+ <li><b>Open source.</b><br>
+ The tool itself should be open source, so that it can be used by development
+ teams
+ working on open source Eclipse components, which includes those at
+ eclipse.org.
+ </li>
+</ol>
+<h2>References</h2>
+<ul>
+ <li><a href="http://eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
+ to Use the Eclipse API<br>
+ </a>This is a good example of the ways some Eclipse-based components
+ separate API from internals at the Java package level, and of the kinds of
+ blanket API usage rules that are out there. Note that these rules apply only
+ to the components in the Eclipse Platform itself; other Eclipse-based
+ components will have their own rules and practices.</li>
+ <li><a href="http://dev.eclipse.org/viewcvs/index.cgi/~checkout~/jdt-core-home/tools/internal/index.html">JDT
+ Core "Internal" tool<br>
+ </a>This simple tool is used for locating references to internal types in
+ Eclipse-based distributions. It has many of the right characteristics, but
+ is overly simplistic in assuming that 1 plug-in = 1 component and that all
+ components separate API from internal based on Eclipse's package-level
+ naming conventions.</li>
+</ul>
+
+</body>
+
+</html>
diff --git a/archive/releng.builder/tools/apitools/api_progress/1.0/20050318/index-api-javadoc.xml b/archive/releng.builder/tools/apitools/api_progress/1.0/20050318/index-api-javadoc.xml
new file mode 100644
index 0000000..8c69e43
--- /dev/null
+++ b/archive/releng.builder/tools/apitools/api_progress/1.0/20050318/index-api-javadoc.xml
@@ -0,0 +1,2 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<component-api-javadoc-summary timestamp="20050318"><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="0" method-javadoc-count="0" method-api-count="2" class-javadoc-count="0" class-api-count="1" name="wst.xsd"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="6" method-javadoc-count="21" method-api-count="21" class-javadoc-count="3" class-api-count="4" name="jst.servlet"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="71" method-javadoc-count="195" method-api-count="199" class-javadoc-count="26" class-api-count="28" name="jst.server"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="1331" method-javadoc-count="643" method-api-count="942" class-javadoc-count="58" class-api-count="158" name="wst.css"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="0" method-javadoc-count="0" method-api-count="0" class-javadoc-count="0" class-api-count="0" name="jst.ws"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="0" method-javadoc-count="0" method-api-count="0" class-javadoc-count="0" class-api-count="0" name="wst.wsi"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="415" method-javadoc-count="352" method-api-count="435" class-javadoc-count="21" class-api-count="51" name="wst.wsdl"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="615" method-javadoc-count="1759" method-api-count="2514" class-javadoc-count="125" class-api-count="328" name="wst.sse"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="75" method-javadoc-count="498" method-api-count="512" class-javadoc-count="77" class-api-count="81" name="wst.server"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="37" method-javadoc-count="90" method-api-count="90" class-javadoc-count="14" class-api-count="14" name="wst.internet"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="15" method-javadoc-count="147" method-api-count="168" class-javadoc-count="13" class-api-count="20" name="wst.rdb"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="695" method-javadoc-count="1212" method-api-count="1519" class-javadoc-count="112" class-api-count="197" name="wst.xml"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="18" method-javadoc-count="94" method-api-count="215" class-javadoc-count="6" class-api-count="30" name="wst.ws"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="0" method-javadoc-count="0" method-api-count="0" class-javadoc-count="0" class-api-count="0" name="wst.web"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="264" method-javadoc-count="175" method-api-count="280" class-javadoc-count="32" class-api-count="65" name="jst.jsp"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="1" method-javadoc-count="6" method-api-count="10" class-javadoc-count="1" class-api-count="2" name="jst.common"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="1979" method-javadoc-count="3455" method-api-count="3894" class-javadoc-count="222" class-api-count="364" name="jst.j2ee"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="41" method-javadoc-count="333" method-api-count="519" class-javadoc-count="29" class-api-count="88" name="wst.command"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="513" method-javadoc-count="1184" method-api-count="1478" class-javadoc-count="93" class-api-count="196" name="wst.common"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="14" method-javadoc-count="55" method-api-count="61" class-javadoc-count="4" class-api-count="9" name="wst.validation"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="125" method-javadoc-count="155" method-api-count="198" class-javadoc-count="18" class-api-count="27" name="jst.ejb"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="1" method-javadoc-count="0" method-api-count="0" class-javadoc-count="0" class-api-count="2" name="wst.dtd"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="1025" method-javadoc-count="440" method-api-count="633" class-javadoc-count="64" class-api-count="133" name="wst.html"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="866" method-javadoc-count="433" method-api-count="604" class-javadoc-count="42" class-api-count="96" name="wst.javascript"/></component-api-javadoc-summary>
\ No newline at end of file
diff --git a/archive/releng.builder/tools/apitools/api_progress/1.0/20050318/index-api-tc.xml b/archive/releng.builder/tools/apitools/api_progress/1.0/20050318/index-api-tc.xml
new file mode 100644
index 0000000..d26462d
--- /dev/null
+++ b/archive/releng.builder/tools/apitools/api_progress/1.0/20050318/index-api-tc.xml
@@ -0,0 +1,2 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<component-api-tc-summary timestamp="20050318"><component-api-tc ref="" missing-coverage-count="2" test-coverage-count="0" api-count="2" name="wst.xsd"/><component-api-tc ref="" missing-coverage-count="21" test-coverage-count="0" api-count="21" name="jst.servlet"/><component-api-tc ref="" missing-coverage-count="144" test-coverage-count="55" api-count="199" name="jst.server"/><component-api-tc ref="" missing-coverage-count="912" test-coverage-count="30" api-count="942" name="wst.css"/><component-api-tc ref="" missing-coverage-count="0" test-coverage-count="0" api-count="0" name="jst.ws"/><component-api-tc ref="" missing-coverage-count="0" test-coverage-count="0" api-count="0" name="wst.wsi"/><component-api-tc ref="" missing-coverage-count="435" test-coverage-count="0" api-count="435" name="wst.wsdl"/><component-api-tc ref="" missing-coverage-count="2406" test-coverage-count="108" api-count="2514" name="wst.sse"/><component-api-tc ref="" missing-coverage-count="288" test-coverage-count="224" api-count="512" name="wst.server"/><component-api-tc ref="" missing-coverage-count="18" test-coverage-count="72" api-count="90" name="wst.internet"/><component-api-tc ref="" missing-coverage-count="168" test-coverage-count="0" api-count="168" name="wst.rdb"/><component-api-tc ref="" missing-coverage-count="1500" test-coverage-count="19" api-count="1519" name="wst.xml"/><component-api-tc ref="" missing-coverage-count="215" test-coverage-count="0" api-count="215" name="wst.ws"/><component-api-tc ref="" missing-coverage-count="0" test-coverage-count="0" api-count="0" name="wst.web"/><component-api-tc ref="" missing-coverage-count="269" test-coverage-count="11" api-count="280" name="jst.jsp"/><component-api-tc ref="" missing-coverage-count="10" test-coverage-count="0" api-count="10" name="jst.common"/><component-api-tc ref="" missing-coverage-count="3746" test-coverage-count="148" api-count="3894" name="jst.j2ee"/><component-api-tc ref="" missing-coverage-count="519" test-coverage-count="0" api-count="519" name="wst.command"/><component-api-tc ref="" missing-coverage-count="1437" test-coverage-count="41" api-count="1478" name="wst.common"/><component-api-tc ref="" missing-coverage-count="61" test-coverage-count="0" api-count="61" name="wst.validation"/><component-api-tc ref="" missing-coverage-count="198" test-coverage-count="0" api-count="198" name="jst.ejb"/><component-api-tc ref="" missing-coverage-count="0" test-coverage-count="0" api-count="0" name="wst.dtd"/><component-api-tc ref="" missing-coverage-count="629" test-coverage-count="4" api-count="633" name="wst.html"/><component-api-tc ref="" missing-coverage-count="604" test-coverage-count="0" api-count="604" name="wst.javascript"/></component-api-tc-summary>
\ No newline at end of file
diff --git a/archive/releng.builder/tools/apitools/api_progress/1.0/20050318/index-comp-summary.xml b/archive/releng.builder/tools/apitools/api_progress/1.0/20050318/index-comp-summary.xml
new file mode 100644
index 0000000..dc81134
--- /dev/null
+++ b/archive/releng.builder/tools/apitools/api_progress/1.0/20050318/index-comp-summary.xml
@@ -0,0 +1 @@
+<?xml version="1.0" encoding="UTF-8"?><component-summary timestamp="20050318"><component name="wst.xsd" ref="./wst.xsd/component-api.xml"/><component name="jst.servlet" ref="./jst.servlet/component-api.xml"/><component name="jst.server" ref="./jst.server/component-api.xml"/><component name="wst.css" ref="./wst.css/component-api.xml"/><component name="jst.ws" ref="./jst.ws/component-api.xml"/><component name="wst.wsi" ref="./wst.wsi/component-api.xml"/><component name="wst.wsdl" ref="./wst.wsdl/component-api.xml"/><component name="wst.sse" ref="./wst.sse/component-api.xml"/><component name="wst.server" ref="./wst.server/component-api.xml"/><component name="wst.internet" ref="./wst.internet/component-api.xml"/><component name="wst.rdb" ref="./wst.rdb/component-api.xml"/><component name="wst.xml" ref="./wst.xml/component-api.xml"/><component name="wst.ws" ref="./wst.ws/component-api.xml"/><component name="wst.web" ref="./wst.web/component-api.xml"/><component name="jst.jsp" ref="./jst.jsp/component-api.xml"/><component name="jst.common" ref="./jst.common/component-api.xml"/><component name="jst.j2ee" ref="./jst.j2ee/component-api.xml"/><component name="wst.command" ref="./wst.command/component-api.xml"/><component name="wst.common" ref="./wst.common/component-api.xml"/><component name="wst.validation" ref="./wst.validation/component-api.xml"/><component name="jst.ejb" ref="./jst.ejb/component-api.xml"/><component name="wst.dtd" ref="./wst.dtd/component-api.xml"/><component name="wst.html" ref="./wst.html/component-api.xml"/><component name="wst.javascript" ref="./wst.javascript/component-api.xml"/></component-summary>
\ No newline at end of file
diff --git a/archive/releng.builder/tools/apitools/api_progress/1.0/20050320/index-api-javadoc.xml b/archive/releng.builder/tools/apitools/api_progress/1.0/20050320/index-api-javadoc.xml
new file mode 100644
index 0000000..4fc56b8
--- /dev/null
+++ b/archive/releng.builder/tools/apitools/api_progress/1.0/20050320/index-api-javadoc.xml
@@ -0,0 +1,2 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<component-api-javadoc-summary timestamp="20050320"><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="0" method-javadoc-count="0" method-api-count="2" class-javadoc-count="0" class-api-count="1" name="wst.xsd"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="6" method-javadoc-count="21" method-api-count="21" class-javadoc-count="3" class-api-count="4" name="jst.servlet"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="71" method-javadoc-count="193" method-api-count="197" class-javadoc-count="24" class-api-count="26" name="jst.server"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="1322" method-javadoc-count="619" method-api-count="907" class-javadoc-count="56" class-api-count="156" name="wst.css"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="0" method-javadoc-count="0" method-api-count="0" class-javadoc-count="0" class-api-count="0" name="jst.ws"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="0" method-javadoc-count="0" method-api-count="0" class-javadoc-count="0" class-api-count="0" name="wst.wsi"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="415" method-javadoc-count="352" method-api-count="435" class-javadoc-count="21" class-api-count="51" name="wst.wsdl"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="593" method-javadoc-count="1657" method-api-count="2357" class-javadoc-count="120" class-api-count="309" name="wst.sse"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="75" method-javadoc-count="496" method-api-count="510" class-javadoc-count="76" class-api-count="80" name="wst.server"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="37" method-javadoc-count="90" method-api-count="90" class-javadoc-count="14" class-api-count="14" name="wst.internet"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="15" method-javadoc-count="147" method-api-count="168" class-javadoc-count="13" class-api-count="20" name="wst.rdb"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="659" method-javadoc-count="1069" method-api-count="1351" class-javadoc-count="108" class-api-count="192" name="wst.xml"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="18" method-javadoc-count="94" method-api-count="215" class-javadoc-count="6" class-api-count="30" name="wst.ws"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="0" method-javadoc-count="0" method-api-count="0" class-javadoc-count="0" class-api-count="0" name="wst.web"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="202" method-javadoc-count="58" method-api-count="118" class-javadoc-count="14" class-api-count="31" name="jst.jsp"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="1" method-javadoc-count="6" method-api-count="10" class-javadoc-count="1" class-api-count="2" name="jst.common"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="1985" method-javadoc-count="3500" method-api-count="3941" class-javadoc-count="227" class-api-count="370" name="jst.j2ee"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="41" method-javadoc-count="333" method-api-count="519" class-javadoc-count="29" class-api-count="88" name="wst.command"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="254" method-javadoc-count="703" method-api-count="804" class-javadoc-count="53" class-api-count="99" name="wst.common"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="14" method-javadoc-count="55" method-api-count="61" class-javadoc-count="4" class-api-count="9" name="wst.validation"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="3" method-javadoc-count="24" method-api-count="24" class-javadoc-count="3" class-api-count="3" name="jst.ejb"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="1" method-javadoc-count="0" method-api-count="1" class-javadoc-count="0" class-api-count="2" name="wst.dtd"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="995" method-javadoc-count="403" method-api-count="581" class-javadoc-count="63" class-api-count="128" name="wst.html"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="44" method-javadoc-count="94" method-api-count="224" class-javadoc-count="8" class-api-count="41" name="wst.javascript"/></component-api-javadoc-summary>
\ No newline at end of file
diff --git a/archive/releng.builder/tools/apitools/api_progress/1.0/20050320/index-api-tc.xml b/archive/releng.builder/tools/apitools/api_progress/1.0/20050320/index-api-tc.xml
new file mode 100644
index 0000000..a7ec8fe
--- /dev/null
+++ b/archive/releng.builder/tools/apitools/api_progress/1.0/20050320/index-api-tc.xml
@@ -0,0 +1,2 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<component-api-tc-summary timestamp="20050320"><component-api-tc ref="" missing-coverage-count="2" test-coverage-count="0" api-count="2" name="wst.xsd"/><component-api-tc ref="" missing-coverage-count="21" test-coverage-count="0" api-count="21" name="jst.servlet"/><component-api-tc ref="" missing-coverage-count="145" test-coverage-count="52" api-count="197" name="jst.server"/><component-api-tc ref="" missing-coverage-count="877" test-coverage-count="30" api-count="907" name="wst.css"/><component-api-tc ref="" missing-coverage-count="0" test-coverage-count="0" api-count="0" name="jst.ws"/><component-api-tc ref="" missing-coverage-count="0" test-coverage-count="0" api-count="0" name="wst.wsi"/><component-api-tc ref="" missing-coverage-count="435" test-coverage-count="0" api-count="435" name="wst.wsdl"/><component-api-tc ref="" missing-coverage-count="2262" test-coverage-count="95" api-count="2357" name="wst.sse"/><component-api-tc ref="" missing-coverage-count="286" test-coverage-count="224" api-count="510" name="wst.server"/><component-api-tc ref="" missing-coverage-count="7" test-coverage-count="83" api-count="90" name="wst.internet"/><component-api-tc ref="" missing-coverage-count="168" test-coverage-count="0" api-count="168" name="wst.rdb"/><component-api-tc ref="" missing-coverage-count="1335" test-coverage-count="16" api-count="1351" name="wst.xml"/><component-api-tc ref="" missing-coverage-count="215" test-coverage-count="0" api-count="215" name="wst.ws"/><component-api-tc ref="" missing-coverage-count="0" test-coverage-count="0" api-count="0" name="wst.web"/><component-api-tc ref="" missing-coverage-count="114" test-coverage-count="4" api-count="118" name="jst.jsp"/><component-api-tc ref="" missing-coverage-count="10" test-coverage-count="0" api-count="10" name="jst.common"/><component-api-tc ref="" missing-coverage-count="3776" test-coverage-count="165" api-count="3941" name="jst.j2ee"/><component-api-tc ref="" missing-coverage-count="519" test-coverage-count="0" api-count="519" name="wst.command"/><component-api-tc ref="" missing-coverage-count="755" test-coverage-count="49" api-count="804" name="wst.common"/><component-api-tc ref="" missing-coverage-count="42" test-coverage-count="19" api-count="61" name="wst.validation"/><component-api-tc ref="" missing-coverage-count="24" test-coverage-count="0" api-count="24" name="jst.ejb"/><component-api-tc ref="" missing-coverage-count="1" test-coverage-count="0" api-count="1" name="wst.dtd"/><component-api-tc ref="" missing-coverage-count="578" test-coverage-count="3" api-count="581" name="wst.html"/><component-api-tc ref="" missing-coverage-count="224" test-coverage-count="0" api-count="224" name="wst.javascript"/></component-api-tc-summary>
\ No newline at end of file
diff --git a/archive/releng.builder/tools/apitools/api_progress/1.0/20050320/index-comp-summary.xml b/archive/releng.builder/tools/apitools/api_progress/1.0/20050320/index-comp-summary.xml
new file mode 100644
index 0000000..5fa21f1
--- /dev/null
+++ b/archive/releng.builder/tools/apitools/api_progress/1.0/20050320/index-comp-summary.xml
@@ -0,0 +1 @@
+<?xml version="1.0" encoding="UTF-8"?><component-summary timestamp="20050320"><component name="wst.xsd" ref="./wst.xsd/component-api.xml"/><component name="jst.servlet" ref="./jst.servlet/component-api.xml"/><component name="jst.server" ref="./jst.server/component-api.xml"/><component name="wst.css" ref="./wst.css/component-api.xml"/><component name="jst.ws" ref="./jst.ws/component-api.xml"/><component name="wst.wsi" ref="./wst.wsi/component-api.xml"/><component name="wst.wsdl" ref="./wst.wsdl/component-api.xml"/><component name="wst.sse" ref="./wst.sse/component-api.xml"/><component name="wst.server" ref="./wst.server/component-api.xml"/><component name="wst.internet" ref="./wst.internet/component-api.xml"/><component name="wst.rdb" ref="./wst.rdb/component-api.xml"/><component name="wst.xml" ref="./wst.xml/component-api.xml"/><component name="wst.ws" ref="./wst.ws/component-api.xml"/><component name="wst.web" ref="./wst.web/component-api.xml"/><component name="jst.jsp" ref="./jst.jsp/component-api.xml"/><component name="jst.common" ref="./jst.common/component-api.xml"/><component name="jst.j2ee" ref="./jst.j2ee/component-api.xml"/><component name="wst.command" ref="./wst.command/component-api.xml"/><component name="wst.common" ref="./wst.common/component-api.xml"/><component name="wst.validation" ref="./wst.validation/component-api.xml"/><component name="jst.ejb" ref="./jst.ejb/component-api.xml"/><component name="wst.dtd" ref="./wst.dtd/component-api.xml"/><component name="wst.html" ref="./wst.html/component-api.xml"/><component name="wst.javascript" ref="./wst.javascript/component-api.xml"/></component-summary>
\ No newline at end of file
diff --git a/archive/releng.builder/tools/apitools/api_progress/1.0/20050321/index-api-javadoc.xml b/archive/releng.builder/tools/apitools/api_progress/1.0/20050321/index-api-javadoc.xml
new file mode 100644
index 0000000..38b5151
--- /dev/null
+++ b/archive/releng.builder/tools/apitools/api_progress/1.0/20050321/index-api-javadoc.xml
@@ -0,0 +1,2 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<component-api-javadoc-summary timestamp="20050321"><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="14" method-javadoc-count="55" method-api-count="61" class-javadoc-count="4" class-api-count="9" name="org.eclipse.wst.validation"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="0" method-javadoc-count="0" method-api-count="0" class-javadoc-count="0" class-api-count="0" name="org.eclipse.wst.common.navigator.views"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="1" method-javadoc-count="0" method-api-count="1" class-javadoc-count="0" class-api-count="1" name="wst.javascript"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="0" method-javadoc-count="0" method-api-count="0" class-javadoc-count="0" class-api-count="0" name="wst.xsd"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="32" method-javadoc-count="183" method-api-count="194" class-javadoc-count="7" class-api-count="12" name="org.eclipse.wst.common.frameworks"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="0" method-javadoc-count="0" method-api-count="0" class-javadoc-count="0" class-api-count="0" name="wst.command"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="40" method-javadoc-count="94" method-api-count="106" class-javadoc-count="9" class-api-count="15" name="org.eclipse.jst.j2ee.web"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="122" method-javadoc-count="248" method-api-count="300" class-javadoc-count="24" class-api-count="50" name="wst.common"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="0" method-javadoc-count="0" method-api-count="0" class-javadoc-count="0" class-api-count="0" name="org.eclipse.jst.common.frameworks"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="0" method-javadoc-count="0" method-api-count="0" class-javadoc-count="0" class-api-count="0" name="org.eclipse.wst.common.emf"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="415" method-javadoc-count="352" method-api-count="435" class-javadoc-count="21" class-api-count="51" name="wst.wsdl"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="0" method-javadoc-count="0" method-api-count="0" class-javadoc-count="0" class-api-count="0" name="jst.ws"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="0" method-javadoc-count="0" method-api-count="0" class-javadoc-count="0" class-api-count="0" name="org.eclipse.wst.common.migration"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="155" method-javadoc-count="158" method-api-count="270" class-javadoc-count="14" class-api-count="41" name="wst.xml"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="0" method-javadoc-count="0" method-api-count="0" class-javadoc-count="0" class-api-count="0" name="wst.ws"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="52" method-javadoc-count="156" method-api-count="178" class-javadoc-count="11" class-api-count="17" name="org.eclipse.wst.common.modulecore"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="2" method-javadoc-count="20" method-api-count="20" class-javadoc-count="3" class-api-count="3" name="org.eclipse.jst.j2ee.jca"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="0" method-javadoc-count="0" method-api-count="0" class-javadoc-count="0" class-api-count="0" name="org.eclipse.jst.j2ee.webservice"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="1949" method-javadoc-count="3407" method-api-count="3836" class-javadoc-count="218" class-api-count="356" name="org.eclipse.jst.j2ee"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="1" method-javadoc-count="0" method-api-count="1" class-javadoc-count="0" class-api-count="2" name="wst.dtd"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="75" method-javadoc-count="496" method-api-count="510" class-javadoc-count="76" class-api-count="80" name="wst.server"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="71" method-javadoc-count="193" method-api-count="197" class-javadoc-count="24" class-api-count="26" name="jst.server"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="99" method-javadoc-count="1" method-api-count="110" class-javadoc-count="1" class-api-count="31" name="wst.css"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="37" method-javadoc-count="90" method-api-count="90" class-javadoc-count="14" class-api-count="14" name="wst.internet"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="204" method-javadoc-count="847" method-api-count="1184" class-javadoc-count="47" class-api-count="130" name="wst.sse"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="670" method-javadoc-count="1" method-api-count="4" class-javadoc-count="4" class-api-count="10" name="wst.html"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="0" method-javadoc-count="0" method-api-count="0" class-javadoc-count="0" class-api-count="0" name="org.eclipse.wst.web"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="106" method-javadoc-count="0" method-api-count="10" class-javadoc-count="4" class-api-count="8" name="jst.jsp"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="3" method-javadoc-count="24" method-api-count="24" class-javadoc-count="3" class-api-count="3" name="org.eclipse.jst.j2ee.ejb"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="0" method-javadoc-count="0" method-api-count="0" class-javadoc-count="0" class-api-count="0" name="wst.rdb"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="57" method-javadoc-count="75" method-api-count="164" class-javadoc-count="8" class-api-count="30" name="common.snippets"/></component-api-javadoc-summary>
\ No newline at end of file
diff --git a/archive/releng.builder/tools/apitools/api_progress/1.0/20050321/index-api-tc.xml b/archive/releng.builder/tools/apitools/api_progress/1.0/20050321/index-api-tc.xml
new file mode 100644
index 0000000..57d8466
--- /dev/null
+++ b/archive/releng.builder/tools/apitools/api_progress/1.0/20050321/index-api-tc.xml
@@ -0,0 +1,2 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<component-api-tc-summary timestamp="20050321"><component-api-tc ref="" missing-coverage-count="42" test-coverage-count="19" api-count="61" name="org.eclipse.wst.validation"/><component-api-tc ref="" missing-coverage-count="0" test-coverage-count="0" api-count="0" name="org.eclipse.wst.common.navigator.views"/><component-api-tc ref="" missing-coverage-count="1" test-coverage-count="0" api-count="1" name="wst.javascript"/><component-api-tc ref="" missing-coverage-count="0" test-coverage-count="0" api-count="0" name="wst.xsd"/><component-api-tc ref="" missing-coverage-count="187" test-coverage-count="7" api-count="194" name="org.eclipse.wst.common.frameworks"/><component-api-tc ref="" missing-coverage-count="0" test-coverage-count="0" api-count="0" name="wst.command"/><component-api-tc ref="" missing-coverage-count="105" test-coverage-count="1" api-count="106" name="org.eclipse.jst.j2ee.web"/><component-api-tc ref="" missing-coverage-count="300" test-coverage-count="0" api-count="300" name="wst.common"/><component-api-tc ref="" missing-coverage-count="0" test-coverage-count="0" api-count="0" name="org.eclipse.jst.common.frameworks"/><component-api-tc ref="" missing-coverage-count="0" test-coverage-count="0" api-count="0" name="org.eclipse.wst.common.emf"/><component-api-tc ref="" missing-coverage-count="435" test-coverage-count="0" api-count="435" name="wst.wsdl"/><component-api-tc ref="" missing-coverage-count="0" test-coverage-count="0" api-count="0" name="jst.ws"/><component-api-tc ref="" missing-coverage-count="0" test-coverage-count="0" api-count="0" name="org.eclipse.wst.common.migration"/><component-api-tc ref="" missing-coverage-count="261" test-coverage-count="9" api-count="270" name="wst.xml"/><component-api-tc ref="" missing-coverage-count="0" test-coverage-count="0" api-count="0" name="wst.ws"/><component-api-tc ref="" missing-coverage-count="136" test-coverage-count="42" api-count="178" name="org.eclipse.wst.common.modulecore"/><component-api-tc ref="" missing-coverage-count="20" test-coverage-count="0" api-count="20" name="org.eclipse.jst.j2ee.jca"/><component-api-tc ref="" missing-coverage-count="0" test-coverage-count="0" api-count="0" name="org.eclipse.jst.j2ee.webservice"/><component-api-tc ref="" missing-coverage-count="3672" test-coverage-count="164" api-count="3836" name="org.eclipse.jst.j2ee"/><component-api-tc ref="" missing-coverage-count="1" test-coverage-count="0" api-count="1" name="wst.dtd"/><component-api-tc ref="" missing-coverage-count="286" test-coverage-count="224" api-count="510" name="wst.server"/><component-api-tc ref="" missing-coverage-count="145" test-coverage-count="52" api-count="197" name="jst.server"/><component-api-tc ref="" missing-coverage-count="83" test-coverage-count="27" api-count="110" name="wst.css"/><component-api-tc ref="" missing-coverage-count="7" test-coverage-count="83" api-count="90" name="wst.internet"/><component-api-tc ref="" missing-coverage-count="1112" test-coverage-count="72" api-count="1184" name="wst.sse"/><component-api-tc ref="" missing-coverage-count="4" test-coverage-count="0" api-count="4" name="wst.html"/><component-api-tc ref="" missing-coverage-count="0" test-coverage-count="0" api-count="0" name="org.eclipse.wst.web"/><component-api-tc ref="" missing-coverage-count="7" test-coverage-count="3" api-count="10" name="jst.jsp"/><component-api-tc ref="" missing-coverage-count="24" test-coverage-count="0" api-count="24" name="org.eclipse.jst.j2ee.ejb"/><component-api-tc ref="" missing-coverage-count="0" test-coverage-count="0" api-count="0" name="wst.rdb"/><component-api-tc ref="" missing-coverage-count="164" test-coverage-count="0" api-count="164" name="common.snippets"/></component-api-tc-summary>
\ No newline at end of file
diff --git a/archive/releng.builder/tools/apitools/api_progress/1.0/20050321/index-comp-summary.xml b/archive/releng.builder/tools/apitools/api_progress/1.0/20050321/index-comp-summary.xml
new file mode 100644
index 0000000..1c81f10
--- /dev/null
+++ b/archive/releng.builder/tools/apitools/api_progress/1.0/20050321/index-comp-summary.xml
@@ -0,0 +1 @@
+<?xml version="1.0" encoding="UTF-8"?><component-summary timestamp="20050321"><component name="org.eclipse.wst.validation" ref="./org.eclipse.wst.validation/component-api.xml"/><component name="org.eclipse.wst.common.navigator.views" ref="./org.eclipse.wst.common.navigator.views/component-api.xml"/><component name="wst.javascript" ref="./wst.javascript/component-api.xml"/><component name="wst.xsd" ref="./wst.xsd/component-api.xml"/><component name="org.eclipse.wst.common.frameworks" ref="./org.eclipse.wst.common.frameworks/component-api.xml"/><component name="wst.command" ref="./wst.command/component-api.xml"/><component name="org.eclipse.jst.j2ee.web" ref="./org.eclipse.jst.j2ee.web/component-api.xml"/><component name="wst.common" ref="./wst.common/component-api.xml"/><component name="org.eclipse.jst.common.frameworks" ref="./org.eclipse.jst.common.frameworks/component-api.xml"/><component name="org.eclipse.wst.common.emf" ref="./org.eclipse.wst.common.emf/component-api.xml"/><component name="wst.wsdl" ref="./wst.wsdl/component-api.xml"/><component name="jst.ws" ref="./jst.ws/component-api.xml"/><component name="org.eclipse.wst.common.migration" ref="./org.eclipse.wst.common.migration/component-api.xml"/><component name="wst.xml" ref="./wst.xml/component-api.xml"/><component name="wst.ws" ref="./wst.ws/component-api.xml"/><component name="org.eclipse.wst.common.modulecore" ref="./org.eclipse.wst.common.modulecore/component-api.xml"/><component name="org.eclipse.jst.j2ee.jca" ref="./org.eclipse.jst.j2ee.jca/component-api.xml"/><component name="org.eclipse.jst.j2ee.webservice" ref="./org.eclipse.jst.j2ee.webservice/component-api.xml"/><component name="org.eclipse.jst.j2ee" ref="./org.eclipse.jst.j2ee/component-api.xml"/><component name="wst.dtd" ref="./wst.dtd/component-api.xml"/><component name="wst.server" ref="./wst.server/component-api.xml"/><component name="jst.server" ref="./jst.server/component-api.xml"/><component name="wst.css" ref="./wst.css/component-api.xml"/><component name="wst.internet" ref="./wst.internet/component-api.xml"/><component name="wst.sse" ref="./wst.sse/component-api.xml"/><component name="wst.html" ref="./wst.html/component-api.xml"/><component name="org.eclipse.wst.web" ref="./org.eclipse.wst.web/component-api.xml"/><component name="jst.jsp" ref="./jst.jsp/component-api.xml"/><component name="org.eclipse.jst.j2ee.ejb" ref="./org.eclipse.jst.j2ee.ejb/component-api.xml"/><component name="wst.rdb" ref="./wst.rdb/component-api.xml"/><component name="common.snippets" ref="./common.snippets/component-api.xml"/></component-summary>
\ No newline at end of file
diff --git a/archive/releng.builder/tools/apitools/api_progress/1.0/20050324/index-api-javadoc.xml b/archive/releng.builder/tools/apitools/api_progress/1.0/20050324/index-api-javadoc.xml
new file mode 100644
index 0000000..4e44c8a
--- /dev/null
+++ b/archive/releng.builder/tools/apitools/api_progress/1.0/20050324/index-api-javadoc.xml
@@ -0,0 +1,2 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<component-api-javadoc-summary timestamp="20050324"><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="14" method-javadoc-count="55" method-api-count="61" class-javadoc-count="4" class-api-count="9" name="org.eclipse.wst.validation"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="0" method-javadoc-count="0" method-api-count="0" class-javadoc-count="0" class-api-count="0" name="org.eclipse.wst.common.navigator.views"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="1" method-javadoc-count="0" method-api-count="1" class-javadoc-count="0" class-api-count="1" name="wst.javascript"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="0" method-javadoc-count="0" method-api-count="0" class-javadoc-count="0" class-api-count="0" name="wst.xsd"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="32" method-javadoc-count="178" method-api-count="189" class-javadoc-count="7" class-api-count="12" name="org.eclipse.wst.common.frameworks"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="0" method-javadoc-count="0" method-api-count="0" class-javadoc-count="0" class-api-count="0" name="wst.command"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="40" method-javadoc-count="94" method-api-count="106" class-javadoc-count="9" class-api-count="15" name="org.eclipse.jst.j2ee.web"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="122" method-javadoc-count="248" method-api-count="300" class-javadoc-count="24" class-api-count="50" name="wst.common"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="0" method-javadoc-count="0" method-api-count="0" class-javadoc-count="0" class-api-count="0" name="org.eclipse.jst.common.frameworks"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="0" method-javadoc-count="0" method-api-count="0" class-javadoc-count="0" class-api-count="0" name="org.eclipse.wst.common.emf"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="415" method-javadoc-count="352" method-api-count="435" class-javadoc-count="21" class-api-count="51" name="wst.wsdl"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="0" method-javadoc-count="0" method-api-count="0" class-javadoc-count="0" class-api-count="0" name="jst.ws"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="0" method-javadoc-count="0" method-api-count="0" class-javadoc-count="0" class-api-count="0" name="org.eclipse.wst.common.migration"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="155" method-javadoc-count="156" method-api-count="268" class-javadoc-count="16" class-api-count="39" name="wst.xml"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="0" method-javadoc-count="0" method-api-count="0" class-javadoc-count="0" class-api-count="0" name="wst.ws"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="53" method-javadoc-count="159" method-api-count="181" class-javadoc-count="11" class-api-count="17" name="org.eclipse.wst.common.modulecore"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="2" method-javadoc-count="20" method-api-count="20" class-javadoc-count="3" class-api-count="3" name="org.eclipse.jst.j2ee.jca"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="0" method-javadoc-count="0" method-api-count="0" class-javadoc-count="0" class-api-count="0" name="org.eclipse.jst.j2ee.webservice"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="180" method-javadoc-count="605" method-api-count="689" class-javadoc-count="52" class-api-count="78" name="org.eclipse.jst.j2ee"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="1" method-javadoc-count="0" method-api-count="1" class-javadoc-count="0" class-api-count="2" name="wst.dtd"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="75" method-javadoc-count="481" method-api-count="495" class-javadoc-count="75" class-api-count="79" name="wst.server"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="1754" method-javadoc-count="2706" method-api-count="3051" class-javadoc-count="161" class-api-count="272" name="org.eclipse.jst.j2ee.core"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="71" method-javadoc-count="195" method-api-count="197" class-javadoc-count="24" class-api-count="26" name="jst.server"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="99" method-javadoc-count="1" method-api-count="110" class-javadoc-count="1" class-api-count="31" name="wst.css"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="19" method-javadoc-count="64" method-api-count="64" class-javadoc-count="10" class-api-count="10" name="wst.internet"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="215" method-javadoc-count="864" method-api-count="1203" class-javadoc-count="47" class-api-count="130" name="wst.sse"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="0" method-javadoc-count="0" method-api-count="0" class-javadoc-count="0" class-api-count="0" name="wst.html"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="0" method-javadoc-count="0" method-api-count="0" class-javadoc-count="0" class-api-count="0" name="org.eclipse.wst.web"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="106" method-javadoc-count="0" method-api-count="10" class-javadoc-count="4" class-api-count="8" name="jst.jsp"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="3" method-javadoc-count="24" method-api-count="24" class-javadoc-count="3" class-api-count="3" name="org.eclipse.jst.j2ee.ejb"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="0" method-javadoc-count="0" method-api-count="0" class-javadoc-count="0" class-api-count="0" name="wst.rdb"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="57" method-javadoc-count="75" method-api-count="164" class-javadoc-count="8" class-api-count="30" name="common.snippets"/></component-api-javadoc-summary>
\ No newline at end of file
diff --git a/archive/releng.builder/tools/apitools/api_progress/1.0/20050324/index-api-tc.xml b/archive/releng.builder/tools/apitools/api_progress/1.0/20050324/index-api-tc.xml
new file mode 100644
index 0000000..ef8c968
--- /dev/null
+++ b/archive/releng.builder/tools/apitools/api_progress/1.0/20050324/index-api-tc.xml
@@ -0,0 +1,2 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<component-api-tc-summary timestamp="20050324"><component-api-tc ref="" missing-coverage-count="34" test-coverage-count="27" api-count="61" name="org.eclipse.wst.validation"/><component-api-tc ref="" missing-coverage-count="0" test-coverage-count="0" api-count="0" name="org.eclipse.wst.common.navigator.views"/><component-api-tc ref="" missing-coverage-count="1" test-coverage-count="0" api-count="1" name="wst.javascript"/><component-api-tc ref="" missing-coverage-count="0" test-coverage-count="0" api-count="0" name="wst.xsd"/><component-api-tc ref="" missing-coverage-count="182" test-coverage-count="7" api-count="189" name="org.eclipse.wst.common.frameworks"/><component-api-tc ref="" missing-coverage-count="0" test-coverage-count="0" api-count="0" name="wst.command"/><component-api-tc ref="" missing-coverage-count="105" test-coverage-count="1" api-count="106" name="org.eclipse.jst.j2ee.web"/><component-api-tc ref="" missing-coverage-count="300" test-coverage-count="0" api-count="300" name="wst.common"/><component-api-tc ref="" missing-coverage-count="0" test-coverage-count="0" api-count="0" name="org.eclipse.jst.common.frameworks"/><component-api-tc ref="" missing-coverage-count="0" test-coverage-count="0" api-count="0" name="org.eclipse.wst.common.emf"/><component-api-tc ref="" missing-coverage-count="435" test-coverage-count="0" api-count="435" name="wst.wsdl"/><component-api-tc ref="" missing-coverage-count="0" test-coverage-count="0" api-count="0" name="jst.ws"/><component-api-tc ref="" missing-coverage-count="0" test-coverage-count="0" api-count="0" name="org.eclipse.wst.common.migration"/><component-api-tc ref="" missing-coverage-count="259" test-coverage-count="9" api-count="268" name="wst.xml"/><component-api-tc ref="" missing-coverage-count="0" test-coverage-count="0" api-count="0" name="wst.ws"/><component-api-tc ref="" missing-coverage-count="139" test-coverage-count="42" api-count="181" name="org.eclipse.wst.common.modulecore"/><component-api-tc ref="" missing-coverage-count="20" test-coverage-count="0" api-count="20" name="org.eclipse.jst.j2ee.jca"/><component-api-tc ref="" missing-coverage-count="0" test-coverage-count="0" api-count="0" name="org.eclipse.jst.j2ee.webservice"/><component-api-tc ref="" missing-coverage-count="673" test-coverage-count="16" api-count="689" name="org.eclipse.jst.j2ee"/><component-api-tc ref="" missing-coverage-count="1" test-coverage-count="0" api-count="1" name="wst.dtd"/><component-api-tc ref="" missing-coverage-count="224" test-coverage-count="271" api-count="495" name="wst.server"/><component-api-tc ref="" missing-coverage-count="2634" test-coverage-count="417" api-count="3051" name="org.eclipse.jst.j2ee.core"/><component-api-tc ref="" missing-coverage-count="144" test-coverage-count="53" api-count="197" name="jst.server"/><component-api-tc ref="" missing-coverage-count="83" test-coverage-count="27" api-count="110" name="wst.css"/><component-api-tc ref="" missing-coverage-count="9" test-coverage-count="55" api-count="64" name="wst.internet"/><component-api-tc ref="" missing-coverage-count="1121" test-coverage-count="82" api-count="1203" name="wst.sse"/><component-api-tc ref="" missing-coverage-count="0" test-coverage-count="0" api-count="0" name="wst.html"/><component-api-tc ref="" missing-coverage-count="0" test-coverage-count="0" api-count="0" name="org.eclipse.wst.web"/><component-api-tc ref="" missing-coverage-count="1" test-coverage-count="9" api-count="10" name="jst.jsp"/><component-api-tc ref="" missing-coverage-count="24" test-coverage-count="0" api-count="24" name="org.eclipse.jst.j2ee.ejb"/><component-api-tc ref="" missing-coverage-count="0" test-coverage-count="0" api-count="0" name="wst.rdb"/><component-api-tc ref="" missing-coverage-count="164" test-coverage-count="0" api-count="164" name="common.snippets"/></component-api-tc-summary>
\ No newline at end of file
diff --git a/archive/releng.builder/tools/apitools/api_progress/1.0/20050324/index-comp-summary.xml b/archive/releng.builder/tools/apitools/api_progress/1.0/20050324/index-comp-summary.xml
new file mode 100644
index 0000000..a79f39e
--- /dev/null
+++ b/archive/releng.builder/tools/apitools/api_progress/1.0/20050324/index-comp-summary.xml
@@ -0,0 +1 @@
+<?xml version="1.0" encoding="UTF-8"?><component-summary timestamp="20050324"><component name="org.eclipse.wst.validation" ref="./org.eclipse.wst.validation/component-api.xml"/><component name="org.eclipse.wst.common.navigator.views" ref="./org.eclipse.wst.common.navigator.views/component-api.xml"/><component name="wst.javascript" ref="./wst.javascript/component-api.xml"/><component name="wst.xsd" ref="./wst.xsd/component-api.xml"/><component name="org.eclipse.wst.common.frameworks" ref="./org.eclipse.wst.common.frameworks/component-api.xml"/><component name="wst.command" ref="./wst.command/component-api.xml"/><component name="org.eclipse.jst.j2ee.web" ref="./org.eclipse.jst.j2ee.web/component-api.xml"/><component name="wst.common" ref="./wst.common/component-api.xml"/><component name="org.eclipse.jst.common.frameworks" ref="./org.eclipse.jst.common.frameworks/component-api.xml"/><component name="org.eclipse.wst.common.emf" ref="./org.eclipse.wst.common.emf/component-api.xml"/><component name="wst.wsdl" ref="./wst.wsdl/component-api.xml"/><component name="jst.ws" ref="./jst.ws/component-api.xml"/><component name="org.eclipse.wst.common.migration" ref="./org.eclipse.wst.common.migration/component-api.xml"/><component name="wst.xml" ref="./wst.xml/component-api.xml"/><component name="wst.ws" ref="./wst.ws/component-api.xml"/><component name="org.eclipse.wst.common.modulecore" ref="./org.eclipse.wst.common.modulecore/component-api.xml"/><component name="org.eclipse.jst.j2ee.jca" ref="./org.eclipse.jst.j2ee.jca/component-api.xml"/><component name="org.eclipse.jst.j2ee.webservice" ref="./org.eclipse.jst.j2ee.webservice/component-api.xml"/><component name="org.eclipse.jst.j2ee" ref="./org.eclipse.jst.j2ee/component-api.xml"/><component name="wst.dtd" ref="./wst.dtd/component-api.xml"/><component name="wst.server" ref="./wst.server/component-api.xml"/><component name="org.eclipse.jst.j2ee.core" ref="./org.eclipse.jst.j2ee.core/component-api.xml"/><component name="jst.server" ref="./jst.server/component-api.xml"/><component name="wst.css" ref="./wst.css/component-api.xml"/><component name="wst.internet" ref="./wst.internet/component-api.xml"/><component name="wst.sse" ref="./wst.sse/component-api.xml"/><component name="wst.html" ref="./wst.html/component-api.xml"/><component name="org.eclipse.wst.web" ref="./org.eclipse.wst.web/component-api.xml"/><component name="jst.jsp" ref="./jst.jsp/component-api.xml"/><component name="org.eclipse.jst.j2ee.ejb" ref="./org.eclipse.jst.j2ee.ejb/component-api.xml"/><component name="wst.rdb" ref="./wst.rdb/component-api.xml"/><component name="common.snippets" ref="./common.snippets/component-api.xml"/></component-summary>
\ No newline at end of file
diff --git a/archive/releng.builder/tools/apitools/api_progress/1.0/20050325/index-api-javadoc.xml b/archive/releng.builder/tools/apitools/api_progress/1.0/20050325/index-api-javadoc.xml
new file mode 100644
index 0000000..ade2229
--- /dev/null
+++ b/archive/releng.builder/tools/apitools/api_progress/1.0/20050325/index-api-javadoc.xml
@@ -0,0 +1,2 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<component-api-javadoc-summary timestamp="20050325"><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="14" method-javadoc-count="55" method-api-count="61" class-javadoc-count="4" class-api-count="9" name="org.eclipse.wst.validation"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="0" method-javadoc-count="0" method-api-count="0" class-javadoc-count="0" class-api-count="0" name="org.eclipse.wst.common.navigator.views"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="1" method-javadoc-count="0" method-api-count="1" class-javadoc-count="0" class-api-count="1" name="org.eclipse.wst.javascript"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="0" method-javadoc-count="0" method-api-count="0" class-javadoc-count="0" class-api-count="0" name="wst.xsd"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="0" method-javadoc-count="0" method-api-count="0" class-javadoc-count="0" class-api-count="0" name="org.eclipse.wst.common.frameworks"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="0" method-javadoc-count="0" method-api-count="0" class-javadoc-count="0" class-api-count="0" name="wst.command"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="4" method-javadoc-count="27" method-api-count="39" class-javadoc-count="2" class-api-count="8" name="org.eclipse.jst.j2ee.web"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="122" method-javadoc-count="248" method-api-count="300" class-javadoc-count="24" class-api-count="50" name="wst.common"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="0" method-javadoc-count="0" method-api-count="0" class-javadoc-count="0" class-api-count="0" name="org.eclipse.jst.common.frameworks"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="0" method-javadoc-count="0" method-api-count="0" class-javadoc-count="0" class-api-count="0" name="org.eclipse.wst.common.emf"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="415" method-javadoc-count="352" method-api-count="435" class-javadoc-count="21" class-api-count="51" name="wst.wsdl"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="0" method-javadoc-count="0" method-api-count="0" class-javadoc-count="0" class-api-count="0" name="jst.ws"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="0" method-javadoc-count="0" method-api-count="0" class-javadoc-count="0" class-api-count="0" name="org.eclipse.wst.common.migration"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="155" method-javadoc-count="148" method-api-count="260" class-javadoc-count="15" class-api-count="38" name="org.eclipse.wst.xml"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="0" method-javadoc-count="0" method-api-count="0" class-javadoc-count="0" class-api-count="0" name="wst.ws"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="53" method-javadoc-count="161" method-api-count="183" class-javadoc-count="11" class-api-count="17" name="org.eclipse.wst.common.modulecore"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="0" method-javadoc-count="0" method-api-count="0" class-javadoc-count="0" class-api-count="0" name="org.eclipse.jst.j2ee.jca"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="0" method-javadoc-count="0" method-api-count="0" class-javadoc-count="0" class-api-count="0" name="org.eclipse.jst.j2ee.webservice"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="8" method-javadoc-count="42" method-api-count="53" class-javadoc-count="2" class-api-count="8" name="org.eclipse.jst.j2ee"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="1" method-javadoc-count="0" method-api-count="1" class-javadoc-count="0" class-api-count="2" name="org.eclipse.wst.dtd"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="75" method-javadoc-count="481" method-api-count="495" class-javadoc-count="75" class-api-count="79" name="wst.server"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="1550" method-javadoc-count="2104" method-api-count="2447" class-javadoc-count="125" class-api-count="235" name="org.eclipse.jst.j2ee.core"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="71" method-javadoc-count="195" method-api-count="197" class-javadoc-count="24" class-api-count="26" name="jst.server"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="99" method-javadoc-count="1" method-api-count="110" class-javadoc-count="1" class-api-count="31" name="org.eclipse.wst.css"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="19" method-javadoc-count="64" method-api-count="64" class-javadoc-count="10" class-api-count="10" name="wst.internet"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="215" method-javadoc-count="864" method-api-count="1203" class-javadoc-count="47" class-api-count="130" name="org.eclipse.wst.sse"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="670" method-javadoc-count="1" method-api-count="4" class-javadoc-count="4" class-api-count="10" name="org.eclipse.wst.html"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="0" method-javadoc-count="0" method-api-count="0" class-javadoc-count="0" class-api-count="0" name="org.eclipse.wst.web"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="106" method-javadoc-count="0" method-api-count="10" class-javadoc-count="4" class-api-count="8" name="org.eclipse.jst.jsp"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="0" method-javadoc-count="0" method-api-count="0" class-javadoc-count="0" class-api-count="0" name="org.eclipse.jst.j2ee.ejb"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="0" method-javadoc-count="0" method-api-count="0" class-javadoc-count="0" class-api-count="0" name="wst.rdb"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="57" method-javadoc-count="75" method-api-count="164" class-javadoc-count="8" class-api-count="30" name="org.eclipse.wst.common.snippets"/></component-api-javadoc-summary>
\ No newline at end of file
diff --git a/archive/releng.builder/tools/apitools/api_progress/1.0/20050325/index-api-tc.xml b/archive/releng.builder/tools/apitools/api_progress/1.0/20050325/index-api-tc.xml
new file mode 100644
index 0000000..77ad380
--- /dev/null
+++ b/archive/releng.builder/tools/apitools/api_progress/1.0/20050325/index-api-tc.xml
@@ -0,0 +1,2 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<component-api-tc-summary timestamp="20050325"><component-api-tc ref="" missing-coverage-count="34" test-coverage-count="27" api-count="61" name="org.eclipse.wst.validation"/><component-api-tc ref="" missing-coverage-count="0" test-coverage-count="0" api-count="0" name="org.eclipse.wst.common.navigator.views"/><component-api-tc ref="" missing-coverage-count="1" test-coverage-count="0" api-count="1" name="org.eclipse.wst.javascript"/><component-api-tc ref="" missing-coverage-count="0" test-coverage-count="0" api-count="0" name="wst.xsd"/><component-api-tc ref="" missing-coverage-count="0" test-coverage-count="0" api-count="0" name="org.eclipse.wst.common.frameworks"/><component-api-tc ref="" missing-coverage-count="0" test-coverage-count="0" api-count="0" name="wst.command"/><component-api-tc ref="" missing-coverage-count="39" test-coverage-count="0" api-count="39" name="org.eclipse.jst.j2ee.web"/><component-api-tc ref="" missing-coverage-count="300" test-coverage-count="0" api-count="300" name="wst.common"/><component-api-tc ref="" missing-coverage-count="0" test-coverage-count="0" api-count="0" name="org.eclipse.jst.common.frameworks"/><component-api-tc ref="" missing-coverage-count="0" test-coverage-count="0" api-count="0" name="org.eclipse.wst.common.emf"/><component-api-tc ref="" missing-coverage-count="435" test-coverage-count="0" api-count="435" name="wst.wsdl"/><component-api-tc ref="" missing-coverage-count="0" test-coverage-count="0" api-count="0" name="jst.ws"/><component-api-tc ref="" missing-coverage-count="0" test-coverage-count="0" api-count="0" name="org.eclipse.wst.common.migration"/><component-api-tc ref="" missing-coverage-count="252" test-coverage-count="8" api-count="260" name="org.eclipse.wst.xml"/><component-api-tc ref="" missing-coverage-count="0" test-coverage-count="0" api-count="0" name="wst.ws"/><component-api-tc ref="" missing-coverage-count="141" test-coverage-count="42" api-count="183" name="org.eclipse.wst.common.modulecore"/><component-api-tc ref="" missing-coverage-count="0" test-coverage-count="0" api-count="0" name="org.eclipse.jst.j2ee.jca"/><component-api-tc ref="" missing-coverage-count="0" test-coverage-count="0" api-count="0" name="org.eclipse.jst.j2ee.webservice"/><component-api-tc ref="" missing-coverage-count="51" test-coverage-count="2" api-count="53" name="org.eclipse.jst.j2ee"/><component-api-tc ref="" missing-coverage-count="1" test-coverage-count="0" api-count="1" name="org.eclipse.wst.dtd"/><component-api-tc ref="" missing-coverage-count="224" test-coverage-count="271" api-count="495" name="wst.server"/><component-api-tc ref="" missing-coverage-count="2030" test-coverage-count="417" api-count="2447" name="org.eclipse.jst.j2ee.core"/><component-api-tc ref="" missing-coverage-count="144" test-coverage-count="53" api-count="197" name="jst.server"/><component-api-tc ref="" missing-coverage-count="83" test-coverage-count="27" api-count="110" name="org.eclipse.wst.css"/><component-api-tc ref="" missing-coverage-count="5" test-coverage-count="59" api-count="64" name="wst.internet"/><component-api-tc ref="" missing-coverage-count="1121" test-coverage-count="82" api-count="1203" name="org.eclipse.wst.sse"/><component-api-tc ref="" missing-coverage-count="4" test-coverage-count="0" api-count="4" name="org.eclipse.wst.html"/><component-api-tc ref="" missing-coverage-count="0" test-coverage-count="0" api-count="0" name="org.eclipse.wst.web"/><component-api-tc ref="" missing-coverage-count="1" test-coverage-count="9" api-count="10" name="org.eclipse.jst.jsp"/><component-api-tc ref="" missing-coverage-count="0" test-coverage-count="0" api-count="0" name="org.eclipse.jst.j2ee.ejb"/><component-api-tc ref="" missing-coverage-count="0" test-coverage-count="0" api-count="0" name="wst.rdb"/><component-api-tc ref="" missing-coverage-count="164" test-coverage-count="0" api-count="164" name="org.eclipse.wst.common.snippets"/></component-api-tc-summary>
\ No newline at end of file
diff --git a/archive/releng.builder/tools/apitools/api_progress/1.0/20050325/index-comp-summary.xml b/archive/releng.builder/tools/apitools/api_progress/1.0/20050325/index-comp-summary.xml
new file mode 100644
index 0000000..959a0c0
--- /dev/null
+++ b/archive/releng.builder/tools/apitools/api_progress/1.0/20050325/index-comp-summary.xml
@@ -0,0 +1 @@
+<?xml version="1.0" encoding="UTF-8"?><component-summary timestamp="20050325"><component name="org.eclipse.wst.validation" ref="./org.eclipse.wst.validation/component-api.xml"/><component name="org.eclipse.wst.common.navigator.views" ref="./org.eclipse.wst.common.navigator.views/component-api.xml"/><component name="org.eclipse.wst.javascript" ref="./org.eclipse.wst.javascript/component-api.xml"/><component name="wst.xsd" ref="./wst.xsd/component-api.xml"/><component name="org.eclipse.wst.common.frameworks" ref="./org.eclipse.wst.common.frameworks/component-api.xml"/><component name="wst.command" ref="./wst.command/component-api.xml"/><component name="org.eclipse.jst.j2ee.web" ref="./org.eclipse.jst.j2ee.web/component-api.xml"/><component name="wst.common" ref="./wst.common/component-api.xml"/><component name="org.eclipse.jst.common.frameworks" ref="./org.eclipse.jst.common.frameworks/component-api.xml"/><component name="org.eclipse.wst.common.emf" ref="./org.eclipse.wst.common.emf/component-api.xml"/><component name="wst.wsdl" ref="./wst.wsdl/component-api.xml"/><component name="jst.ws" ref="./jst.ws/component-api.xml"/><component name="org.eclipse.wst.common.migration" ref="./org.eclipse.wst.common.migration/component-api.xml"/><component name="org.eclipse.wst.xml" ref="./org.eclipse.wst.xml/component-api.xml"/><component name="wst.ws" ref="./wst.ws/component-api.xml"/><component name="org.eclipse.wst.common.modulecore" ref="./org.eclipse.wst.common.modulecore/component-api.xml"/><component name="org.eclipse.jst.j2ee.jca" ref="./org.eclipse.jst.j2ee.jca/component-api.xml"/><component name="org.eclipse.jst.j2ee.webservice" ref="./org.eclipse.jst.j2ee.webservice/component-api.xml"/><component name="org.eclipse.jst.j2ee" ref="./org.eclipse.jst.j2ee/component-api.xml"/><component name="org.eclipse.wst.dtd" ref="./org.eclipse.wst.dtd/component-api.xml"/><component name="wst.server" ref="./wst.server/component-api.xml"/><component name="org.eclipse.jst.j2ee.core" ref="./org.eclipse.jst.j2ee.core/component-api.xml"/><component name="jst.server" ref="./jst.server/component-api.xml"/><component name="org.eclipse.wst.css" ref="./org.eclipse.wst.css/component-api.xml"/><component name="wst.internet" ref="./wst.internet/component-api.xml"/><component name="org.eclipse.wst.sse" ref="./org.eclipse.wst.sse/component-api.xml"/><component name="org.eclipse.wst.html" ref="./org.eclipse.wst.html/component-api.xml"/><component name="org.eclipse.wst.web" ref="./org.eclipse.wst.web/component-api.xml"/><component name="org.eclipse.jst.jsp" ref="./org.eclipse.jst.jsp/component-api.xml"/><component name="org.eclipse.jst.j2ee.ejb" ref="./org.eclipse.jst.j2ee.ejb/component-api.xml"/><component name="wst.rdb" ref="./wst.rdb/component-api.xml"/><component name="org.eclipse.wst.common.snippets" ref="./org.eclipse.wst.common.snippets/component-api.xml"/></component-summary>
\ No newline at end of file
diff --git a/archive/releng.builder/tools/apitools/api_progress/1.0/20050327/index-api-javadoc.xml b/archive/releng.builder/tools/apitools/api_progress/1.0/20050327/index-api-javadoc.xml
new file mode 100644
index 0000000..20737be
--- /dev/null
+++ b/archive/releng.builder/tools/apitools/api_progress/1.0/20050327/index-api-javadoc.xml
@@ -0,0 +1,2 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<component-api-javadoc-summary timestamp="20050327"><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="415" method-javadoc-count="352" method-api-count="435" class-javadoc-count="21" class-api-count="51" name="wst.wsdl"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="19" method-javadoc-count="64" method-api-count="64" class-javadoc-count="10" class-api-count="10" name="wst.internet"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="1550" method-javadoc-count="2104" method-api-count="2447" class-javadoc-count="125" class-api-count="235" name="org.eclipse.jst.j2ee.core"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="71" method-javadoc-count="195" method-api-count="197" class-javadoc-count="24" class-api-count="26" name="jst.server"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="670" method-javadoc-count="1" method-api-count="4" class-javadoc-count="4" class-api-count="10" name="org.eclipse.wst.html"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="13" method-javadoc-count="44" method-api-count="55" class-javadoc-count="3" class-api-count="9" name="org.eclipse.jst.j2ee"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="0" method-javadoc-count="0" method-api-count="0" class-javadoc-count="0" class-api-count="0" name="org.eclipse.wst.common.navigator.views"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="53" method-javadoc-count="161" method-api-count="183" class-javadoc-count="11" class-api-count="17" name="org.eclipse.wst.common.modulecore"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="122" method-javadoc-count="248" method-api-count="300" class-javadoc-count="24" class-api-count="50" name="wst.common"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="155" method-javadoc-count="148" method-api-count="260" class-javadoc-count="15" class-api-count="38" name="org.eclipse.wst.xml"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="99" method-javadoc-count="1" method-api-count="110" class-javadoc-count="1" class-api-count="31" name="org.eclipse.wst.css"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="0" method-javadoc-count="0" method-api-count="0" class-javadoc-count="0" class-api-count="0" name="org.eclipse.wst.common.migration"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="0" method-javadoc-count="0" method-api-count="0" class-javadoc-count="0" class-api-count="0" name="wst.command"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="0" method-javadoc-count="0" method-api-count="0" class-javadoc-count="0" class-api-count="0" name="org.eclipse.jst.j2ee.webservice"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="4" method-javadoc-count="27" method-api-count="39" class-javadoc-count="2" class-api-count="8" name="org.eclipse.jst.j2ee.web"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="0" method-javadoc-count="0" method-api-count="0" class-javadoc-count="0" class-api-count="0" name="wst.xsd"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="0" method-javadoc-count="0" method-api-count="0" class-javadoc-count="0" class-api-count="0" name="org.eclipse.wst.common.frameworks"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="0" method-javadoc-count="0" method-api-count="0" class-javadoc-count="0" class-api-count="0" name="wst.ws"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="106" method-javadoc-count="0" method-api-count="10" class-javadoc-count="4" class-api-count="8" name="org.eclipse.jst.jsp"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="0" method-javadoc-count="0" method-api-count="0" class-javadoc-count="0" class-api-count="0" name="org.eclipse.wst.web"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="0" method-javadoc-count="0" method-api-count="0" class-javadoc-count="0" class-api-count="0" name="jst.ws"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="1" method-javadoc-count="0" method-api-count="1" class-javadoc-count="0" class-api-count="1" name="org.eclipse.wst.javascript"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="0" method-javadoc-count="0" method-api-count="0" class-javadoc-count="0" class-api-count="0" name="wst.rdb"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="57" method-javadoc-count="75" method-api-count="164" class-javadoc-count="8" class-api-count="30" name="org.eclipse.wst.common.snippets"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="0" method-javadoc-count="0" method-api-count="0" class-javadoc-count="0" class-api-count="0" name="org.eclipse.jst.j2ee.ejb"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="0" method-javadoc-count="0" method-api-count="0" class-javadoc-count="0" class-api-count="0" name="org.eclipse.wst.common.emf"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="14" method-javadoc-count="55" method-api-count="61" class-javadoc-count="4" class-api-count="9" name="org.eclipse.wst.validation"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="1" method-javadoc-count="0" method-api-count="1" class-javadoc-count="0" class-api-count="2" name="org.eclipse.wst.dtd"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="75" method-javadoc-count="481" method-api-count="495" class-javadoc-count="75" class-api-count="79" name="wst.server"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="214" method-javadoc-count="825" method-api-count="1131" class-javadoc-count="47" class-api-count="120" name="org.eclipse.wst.sse"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="0" method-javadoc-count="0" method-api-count="0" class-javadoc-count="0" class-api-count="0" name="org.eclipse.jst.common.frameworks"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="0" method-javadoc-count="0" method-api-count="0" class-javadoc-count="0" class-api-count="0" name="org.eclipse.jst.j2ee.jca"/></component-api-javadoc-summary>
\ No newline at end of file
diff --git a/archive/releng.builder/tools/apitools/api_progress/1.0/20050327/index-api-tc.xml b/archive/releng.builder/tools/apitools/api_progress/1.0/20050327/index-api-tc.xml
new file mode 100644
index 0000000..fbab1a1
--- /dev/null
+++ b/archive/releng.builder/tools/apitools/api_progress/1.0/20050327/index-api-tc.xml
@@ -0,0 +1,2 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<component-api-tc-summary timestamp="20050327"><component-api-tc ref="" missing-coverage-count="435" test-coverage-count="0" api-count="435" name="wst.wsdl"/><component-api-tc ref="" missing-coverage-count="5" test-coverage-count="59" api-count="64" name="wst.internet"/><component-api-tc ref="" missing-coverage-count="2030" test-coverage-count="417" api-count="2447" name="org.eclipse.jst.j2ee.core"/><component-api-tc ref="" missing-coverage-count="144" test-coverage-count="53" api-count="197" name="jst.server"/><component-api-tc ref="" missing-coverage-count="4" test-coverage-count="0" api-count="4" name="org.eclipse.wst.html"/><component-api-tc ref="" missing-coverage-count="53" test-coverage-count="2" api-count="55" name="org.eclipse.jst.j2ee"/><component-api-tc ref="" missing-coverage-count="0" test-coverage-count="0" api-count="0" name="org.eclipse.wst.common.navigator.views"/><component-api-tc ref="" missing-coverage-count="141" test-coverage-count="42" api-count="183" name="org.eclipse.wst.common.modulecore"/><component-api-tc ref="" missing-coverage-count="300" test-coverage-count="0" api-count="300" name="wst.common"/><component-api-tc ref="" missing-coverage-count="252" test-coverage-count="8" api-count="260" name="org.eclipse.wst.xml"/><component-api-tc ref="" missing-coverage-count="83" test-coverage-count="27" api-count="110" name="org.eclipse.wst.css"/><component-api-tc ref="" missing-coverage-count="0" test-coverage-count="0" api-count="0" name="org.eclipse.wst.common.migration"/><component-api-tc ref="" missing-coverage-count="0" test-coverage-count="0" api-count="0" name="wst.command"/><component-api-tc ref="" missing-coverage-count="0" test-coverage-count="0" api-count="0" name="org.eclipse.jst.j2ee.webservice"/><component-api-tc ref="" missing-coverage-count="39" test-coverage-count="0" api-count="39" name="org.eclipse.jst.j2ee.web"/><component-api-tc ref="" missing-coverage-count="0" test-coverage-count="0" api-count="0" name="wst.xsd"/><component-api-tc ref="" missing-coverage-count="0" test-coverage-count="0" api-count="0" name="org.eclipse.wst.common.frameworks"/><component-api-tc ref="" missing-coverage-count="0" test-coverage-count="0" api-count="0" name="wst.ws"/><component-api-tc ref="" missing-coverage-count="1" test-coverage-count="9" api-count="10" name="org.eclipse.jst.jsp"/><component-api-tc ref="" missing-coverage-count="0" test-coverage-count="0" api-count="0" name="org.eclipse.wst.web"/><component-api-tc ref="" missing-coverage-count="0" test-coverage-count="0" api-count="0" name="jst.ws"/><component-api-tc ref="" missing-coverage-count="1" test-coverage-count="0" api-count="1" name="org.eclipse.wst.javascript"/><component-api-tc ref="" missing-coverage-count="0" test-coverage-count="0" api-count="0" name="wst.rdb"/><component-api-tc ref="" missing-coverage-count="164" test-coverage-count="0" api-count="164" name="org.eclipse.wst.common.snippets"/><component-api-tc ref="" missing-coverage-count="0" test-coverage-count="0" api-count="0" name="org.eclipse.jst.j2ee.ejb"/><component-api-tc ref="" missing-coverage-count="0" test-coverage-count="0" api-count="0" name="org.eclipse.wst.common.emf"/><component-api-tc ref="" missing-coverage-count="34" test-coverage-count="27" api-count="61" name="org.eclipse.wst.validation"/><component-api-tc ref="" missing-coverage-count="1" test-coverage-count="0" api-count="1" name="org.eclipse.wst.dtd"/><component-api-tc ref="" missing-coverage-count="224" test-coverage-count="271" api-count="495" name="wst.server"/><component-api-tc ref="" missing-coverage-count="1049" test-coverage-count="82" api-count="1131" name="org.eclipse.wst.sse"/><component-api-tc ref="" missing-coverage-count="0" test-coverage-count="0" api-count="0" name="org.eclipse.jst.common.frameworks"/><component-api-tc ref="" missing-coverage-count="0" test-coverage-count="0" api-count="0" name="org.eclipse.jst.j2ee.jca"/></component-api-tc-summary>
\ No newline at end of file
diff --git a/archive/releng.builder/tools/apitools/api_progress/1.0/20050327/index-comp-summary.xml b/archive/releng.builder/tools/apitools/api_progress/1.0/20050327/index-comp-summary.xml
new file mode 100644
index 0000000..a4f80c4
--- /dev/null
+++ b/archive/releng.builder/tools/apitools/api_progress/1.0/20050327/index-comp-summary.xml
@@ -0,0 +1 @@
+<?xml version="1.0" encoding="UTF-8"?><component-summary timestamp="20050327"><component name="wst.wsdl" ref="./wst.wsdl/component-api.xml"/><component name="wst.internet" ref="./wst.internet/component-api.xml"/><component name="org.eclipse.jst.j2ee.core" ref="./org.eclipse.jst.j2ee.core/component-api.xml"/><component name="jst.server" ref="./jst.server/component-api.xml"/><component name="org.eclipse.wst.html" ref="./org.eclipse.wst.html/component-api.xml"/><component name="org.eclipse.jst.j2ee" ref="./org.eclipse.jst.j2ee/component-api.xml"/><component name="org.eclipse.wst.common.navigator.views" ref="./org.eclipse.wst.common.navigator.views/component-api.xml"/><component name="org.eclipse.wst.common.modulecore" ref="./org.eclipse.wst.common.modulecore/component-api.xml"/><component name="wst.common" ref="./wst.common/component-api.xml"/><component name="org.eclipse.wst.xml" ref="./org.eclipse.wst.xml/component-api.xml"/><component name="org.eclipse.wst.css" ref="./org.eclipse.wst.css/component-api.xml"/><component name="org.eclipse.wst.common.migration" ref="./org.eclipse.wst.common.migration/component-api.xml"/><component name="wst.command" ref="./wst.command/component-api.xml"/><component name="org.eclipse.jst.j2ee.webservice" ref="./org.eclipse.jst.j2ee.webservice/component-api.xml"/><component name="org.eclipse.jst.j2ee.web" ref="./org.eclipse.jst.j2ee.web/component-api.xml"/><component name="wst.xsd" ref="./wst.xsd/component-api.xml"/><component name="org.eclipse.wst.common.frameworks" ref="./org.eclipse.wst.common.frameworks/component-api.xml"/><component name="wst.ws" ref="./wst.ws/component-api.xml"/><component name="org.eclipse.jst.jsp" ref="./org.eclipse.jst.jsp/component-api.xml"/><component name="org.eclipse.wst.web" ref="./org.eclipse.wst.web/component-api.xml"/><component name="jst.ws" ref="./jst.ws/component-api.xml"/><component name="org.eclipse.wst.javascript" ref="./org.eclipse.wst.javascript/component-api.xml"/><component name="wst.rdb" ref="./wst.rdb/component-api.xml"/><component name="org.eclipse.wst.common.snippets" ref="./org.eclipse.wst.common.snippets/component-api.xml"/><component name="org.eclipse.jst.j2ee.ejb" ref="./org.eclipse.jst.j2ee.ejb/component-api.xml"/><component name="org.eclipse.wst.common.emf" ref="./org.eclipse.wst.common.emf/component-api.xml"/><component name="org.eclipse.wst.validation" ref="./org.eclipse.wst.validation/component-api.xml"/><component name="org.eclipse.wst.dtd" ref="./org.eclipse.wst.dtd/component-api.xml"/><component name="wst.server" ref="./wst.server/component-api.xml"/><component name="org.eclipse.wst.sse" ref="./org.eclipse.wst.sse/component-api.xml"/><component name="org.eclipse.jst.common.frameworks" ref="./org.eclipse.jst.common.frameworks/component-api.xml"/><component name="org.eclipse.jst.j2ee.jca" ref="./org.eclipse.jst.j2ee.jca/component-api.xml"/></component-summary>
\ No newline at end of file
diff --git a/archive/releng.builder/tools/apitools/api_progress/1.0/20050328/index-api-javadoc.xml b/archive/releng.builder/tools/apitools/api_progress/1.0/20050328/index-api-javadoc.xml
new file mode 100644
index 0000000..b7e9620
--- /dev/null
+++ b/archive/releng.builder/tools/apitools/api_progress/1.0/20050328/index-api-javadoc.xml
@@ -0,0 +1,2 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<component-api-javadoc-summary timestamp="20050328"><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="57" method-javadoc-count="75" method-api-count="158" class-javadoc-count="8" class-api-count="30" name="org.eclipse.wst.common.snippets"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="0" method-javadoc-count="0" method-api-count="0" class-javadoc-count="0" class-api-count="0" name="wst.command"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="53" method-javadoc-count="152" method-api-count="183" class-javadoc-count="9" class-api-count="17" name="org.eclipse.wst.common.modulecore"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="0" method-javadoc-count="0" method-api-count="0" class-javadoc-count="0" class-api-count="0" name="org.eclipse.jst.common.frameworks"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="0" method-javadoc-count="0" method-api-count="0" class-javadoc-count="0" class-api-count="0" name="org.eclipse.wst.web"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="99" method-javadoc-count="1" method-api-count="109" class-javadoc-count="1" class-api-count="31" name="org.eclipse.wst.css"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="122" method-javadoc-count="244" method-api-count="300" class-javadoc-count="23" class-api-count="50" name="wst.common"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="0" method-javadoc-count="0" method-api-count="0" class-javadoc-count="0" class-api-count="0" name="org.eclipse.wst.common.frameworks"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="4" method-javadoc-count="27" method-api-count="39" class-javadoc-count="2" class-api-count="8" name="org.eclipse.jst.j2ee.web"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="0" method-javadoc-count="0" method-api-count="0" class-javadoc-count="0" class-api-count="0" name="org.eclipse.wst.common.navigator.views"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="13" method-javadoc-count="44" method-api-count="55" class-javadoc-count="3" class-api-count="9" name="org.eclipse.jst.j2ee"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="0" method-javadoc-count="0" method-api-count="0" class-javadoc-count="0" class-api-count="0" name="wst.ws"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="0" method-javadoc-count="0" method-api-count="0" class-javadoc-count="0" class-api-count="0" name="wst.xsd"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="0" method-javadoc-count="0" method-api-count="0" class-javadoc-count="0" class-api-count="0" name="org.eclipse.jst.j2ee.ejb"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="81" method-javadoc-count="218" method-api-count="220" class-javadoc-count="26" class-api-count="28" name="jst.server"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="0" method-javadoc-count="0" method-api-count="0" class-javadoc-count="0" class-api-count="0" name="org.eclipse.wst.common.migration"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="70" method-javadoc-count="455" method-api-count="484" class-javadoc-count="68" class-api-count="74" name="wst.server"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="1550" method-javadoc-count="2093" method-api-count="2447" class-javadoc-count="124" class-api-count="235" name="org.eclipse.jst.j2ee.core"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="14" method-javadoc-count="55" method-api-count="61" class-javadoc-count="4" class-api-count="9" name="org.eclipse.wst.validation"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="106" method-javadoc-count="0" method-api-count="9" class-javadoc-count="4" class-api-count="8" name="org.eclipse.jst.jsp"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="1" method-javadoc-count="0" method-api-count="0" class-javadoc-count="0" class-api-count="1" name="org.eclipse.wst.javascript"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="213" method-javadoc-count="820" method-api-count="1126" class-javadoc-count="47" class-api-count="120" name="org.eclipse.wst.sse"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="0" method-javadoc-count="0" method-api-count="0" class-javadoc-count="0" class-api-count="0" name="org.eclipse.wst.common.emf"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="415" method-javadoc-count="351" method-api-count="434" class-javadoc-count="21" class-api-count="51" name="wst.wsdl"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="0" method-javadoc-count="0" method-api-count="0" class-javadoc-count="0" class-api-count="0" name="org.eclipse.jst.j2ee.webservice"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="0" method-javadoc-count="0" method-api-count="0" class-javadoc-count="0" class-api-count="0" name="wst.rdb"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="0" method-javadoc-count="0" method-api-count="0" class-javadoc-count="0" class-api-count="0" name="org.eclipse.jst.j2ee.jca"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="19" method-javadoc-count="62" method-api-count="62" class-javadoc-count="10" class-api-count="10" name="wst.internet"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="670" method-javadoc-count="1" method-api-count="3" class-javadoc-count="4" class-api-count="10" name="org.eclipse.wst.html"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="1" method-javadoc-count="0" method-api-count="0" class-javadoc-count="0" class-api-count="2" name="org.eclipse.wst.dtd"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="155" method-javadoc-count="129" method-api-count="258" class-javadoc-count="14" class-api-count="38" name="org.eclipse.wst.xml"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="0" method-javadoc-count="0" method-api-count="0" class-javadoc-count="0" class-api-count="0" name="jst.ws"/></component-api-javadoc-summary>
\ No newline at end of file
diff --git a/archive/releng.builder/tools/apitools/api_progress/1.0/20050328/index-api-tc.xml b/archive/releng.builder/tools/apitools/api_progress/1.0/20050328/index-api-tc.xml
new file mode 100644
index 0000000..f037a5e
--- /dev/null
+++ b/archive/releng.builder/tools/apitools/api_progress/1.0/20050328/index-api-tc.xml
@@ -0,0 +1,2 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<component-api-tc-summary timestamp="20050328"><component-api-tc ref="" missing-coverage-count="158" test-coverage-count="0" api-count="158" name="org.eclipse.wst.common.snippets"/><component-api-tc ref="" missing-coverage-count="0" test-coverage-count="0" api-count="0" name="wst.command"/><component-api-tc ref="" missing-coverage-count="141" test-coverage-count="42" api-count="183" name="org.eclipse.wst.common.modulecore"/><component-api-tc ref="" missing-coverage-count="0" test-coverage-count="0" api-count="0" name="org.eclipse.jst.common.frameworks"/><component-api-tc ref="" missing-coverage-count="0" test-coverage-count="0" api-count="0" name="org.eclipse.wst.web"/><component-api-tc ref="" missing-coverage-count="82" test-coverage-count="27" api-count="109" name="org.eclipse.wst.css"/><component-api-tc ref="" missing-coverage-count="300" test-coverage-count="0" api-count="300" name="wst.common"/><component-api-tc ref="" missing-coverage-count="0" test-coverage-count="0" api-count="0" name="org.eclipse.wst.common.frameworks"/><component-api-tc ref="" missing-coverage-count="39" test-coverage-count="0" api-count="39" name="org.eclipse.jst.j2ee.web"/><component-api-tc ref="" missing-coverage-count="0" test-coverage-count="0" api-count="0" name="org.eclipse.wst.common.navigator.views"/><component-api-tc ref="" missing-coverage-count="53" test-coverage-count="2" api-count="55" name="org.eclipse.jst.j2ee"/><component-api-tc ref="" missing-coverage-count="0" test-coverage-count="0" api-count="0" name="wst.ws"/><component-api-tc ref="" missing-coverage-count="0" test-coverage-count="0" api-count="0" name="wst.xsd"/><component-api-tc ref="" missing-coverage-count="0" test-coverage-count="0" api-count="0" name="org.eclipse.jst.j2ee.ejb"/><component-api-tc ref="" missing-coverage-count="125" test-coverage-count="95" api-count="220" name="jst.server"/><component-api-tc ref="" missing-coverage-count="0" test-coverage-count="0" api-count="0" name="org.eclipse.wst.common.migration"/><component-api-tc ref="" missing-coverage-count="149" test-coverage-count="335" api-count="484" name="wst.server"/><component-api-tc ref="" missing-coverage-count="2030" test-coverage-count="417" api-count="2447" name="org.eclipse.jst.j2ee.core"/><component-api-tc ref="" missing-coverage-count="34" test-coverage-count="27" api-count="61" name="org.eclipse.wst.validation"/><component-api-tc ref="" missing-coverage-count="0" test-coverage-count="9" api-count="9" name="org.eclipse.jst.jsp"/><component-api-tc ref="" missing-coverage-count="0" test-coverage-count="0" api-count="0" name="org.eclipse.wst.javascript"/><component-api-tc ref="" missing-coverage-count="1044" test-coverage-count="82" api-count="1126" name="org.eclipse.wst.sse"/><component-api-tc ref="" missing-coverage-count="0" test-coverage-count="0" api-count="0" name="org.eclipse.wst.common.emf"/><component-api-tc ref="" missing-coverage-count="434" test-coverage-count="0" api-count="434" name="wst.wsdl"/><component-api-tc ref="" missing-coverage-count="0" test-coverage-count="0" api-count="0" name="org.eclipse.jst.j2ee.webservice"/><component-api-tc ref="" missing-coverage-count="0" test-coverage-count="0" api-count="0" name="wst.rdb"/><component-api-tc ref="" missing-coverage-count="0" test-coverage-count="0" api-count="0" name="org.eclipse.jst.j2ee.jca"/><component-api-tc ref="" missing-coverage-count="7" test-coverage-count="55" api-count="62" name="wst.internet"/><component-api-tc ref="" missing-coverage-count="3" test-coverage-count="0" api-count="3" name="org.eclipse.wst.html"/><component-api-tc ref="" missing-coverage-count="0" test-coverage-count="0" api-count="0" name="org.eclipse.wst.dtd"/><component-api-tc ref="" missing-coverage-count="250" test-coverage-count="8" api-count="258" name="org.eclipse.wst.xml"/><component-api-tc ref="" missing-coverage-count="0" test-coverage-count="0" api-count="0" name="jst.ws"/></component-api-tc-summary>
\ No newline at end of file
diff --git a/archive/releng.builder/tools/apitools/api_progress/1.0/20050328/index-comp-summary.xml b/archive/releng.builder/tools/apitools/api_progress/1.0/20050328/index-comp-summary.xml
new file mode 100644
index 0000000..dfccb3c
--- /dev/null
+++ b/archive/releng.builder/tools/apitools/api_progress/1.0/20050328/index-comp-summary.xml
@@ -0,0 +1 @@
+<?xml version="1.0" encoding="UTF-8"?><component-summary timestamp="20050328"><component name="org.eclipse.wst.common.snippets" ref="./org.eclipse.wst.common.snippets/component-api.xml"/><component name="wst.command" ref="./wst.command/component-api.xml"/><component name="org.eclipse.wst.common.modulecore" ref="./org.eclipse.wst.common.modulecore/component-api.xml"/><component name="org.eclipse.jst.common.frameworks" ref="./org.eclipse.jst.common.frameworks/component-api.xml"/><component name="org.eclipse.wst.web" ref="./org.eclipse.wst.web/component-api.xml"/><component name="org.eclipse.wst.css" ref="./org.eclipse.wst.css/component-api.xml"/><component name="wst.common" ref="./wst.common/component-api.xml"/><component name="org.eclipse.wst.common.frameworks" ref="./org.eclipse.wst.common.frameworks/component-api.xml"/><component name="org.eclipse.jst.j2ee.web" ref="./org.eclipse.jst.j2ee.web/component-api.xml"/><component name="org.eclipse.wst.common.navigator.views" ref="./org.eclipse.wst.common.navigator.views/component-api.xml"/><component name="org.eclipse.jst.j2ee" ref="./org.eclipse.jst.j2ee/component-api.xml"/><component name="wst.ws" ref="./wst.ws/component-api.xml"/><component name="wst.xsd" ref="./wst.xsd/component-api.xml"/><component name="org.eclipse.jst.j2ee.ejb" ref="./org.eclipse.jst.j2ee.ejb/component-api.xml"/><component name="jst.server" ref="./jst.server/component-api.xml"/><component name="org.eclipse.wst.common.migration" ref="./org.eclipse.wst.common.migration/component-api.xml"/><component name="wst.server" ref="./wst.server/component-api.xml"/><component name="org.eclipse.jst.j2ee.core" ref="./org.eclipse.jst.j2ee.core/component-api.xml"/><component name="org.eclipse.wst.validation" ref="./org.eclipse.wst.validation/component-api.xml"/><component name="org.eclipse.jst.jsp" ref="./org.eclipse.jst.jsp/component-api.xml"/><component name="org.eclipse.wst.javascript" ref="./org.eclipse.wst.javascript/component-api.xml"/><component name="org.eclipse.wst.sse" ref="./org.eclipse.wst.sse/component-api.xml"/><component name="org.eclipse.wst.common.emf" ref="./org.eclipse.wst.common.emf/component-api.xml"/><component name="wst.wsdl" ref="./wst.wsdl/component-api.xml"/><component name="org.eclipse.jst.j2ee.webservice" ref="./org.eclipse.jst.j2ee.webservice/component-api.xml"/><component name="wst.rdb" ref="./wst.rdb/component-api.xml"/><component name="org.eclipse.jst.j2ee.jca" ref="./org.eclipse.jst.j2ee.jca/component-api.xml"/><component name="wst.internet" ref="./wst.internet/component-api.xml"/><component name="org.eclipse.wst.html" ref="./org.eclipse.wst.html/component-api.xml"/><component name="org.eclipse.wst.dtd" ref="./org.eclipse.wst.dtd/component-api.xml"/><component name="org.eclipse.wst.xml" ref="./org.eclipse.wst.xml/component-api.xml"/><component name="jst.ws" ref="./jst.ws/component-api.xml"/></component-summary>
\ No newline at end of file
diff --git a/archive/releng.builder/tools/apitools/api_progress/1.0/20050330/index-api-javadoc.xml b/archive/releng.builder/tools/apitools/api_progress/1.0/20050330/index-api-javadoc.xml
new file mode 100644
index 0000000..11b5895
--- /dev/null
+++ b/archive/releng.builder/tools/apitools/api_progress/1.0/20050330/index-api-javadoc.xml
@@ -0,0 +1,2 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<component-api-javadoc-summary timestamp="20050330"><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="0" method-javadoc-count="0" method-api-count="0" class-javadoc-count="0" class-api-count="0" name="org.eclipse.wst.command"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="122" method-javadoc-count="244" method-api-count="300" class-javadoc-count="23" class-api-count="50" name="org.eclipse.wst.common"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="0" method-javadoc-count="0" method-api-count="0" class-javadoc-count="0" class-api-count="0" name="org.eclipse.wst.ws"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="70" method-javadoc-count="459" method-api-count="480" class-javadoc-count="69" class-api-count="74" name="org.eclipse.wst.server"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="258" method-javadoc-count="1259" method-api-count="1622" class-javadoc-count="109" class-api-count="221" name="org.eclipse.jst.j2ee.core"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="0" method-javadoc-count="0" method-api-count="0" class-javadoc-count="0" class-api-count="0" name="org.eclipse.jst.j2ee.ejb"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="0" method-javadoc-count="0" method-api-count="0" class-javadoc-count="0" class-api-count="0" name="org.eclipse.wst.common.frameworks"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="14" method-javadoc-count="55" method-api-count="61" class-javadoc-count="4" class-api-count="9" name="org.eclipse.wst.validation"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="0" method-javadoc-count="0" method-api-count="0" class-javadoc-count="0" class-api-count="0" name="org.eclipse.jst.j2ee.jca"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="81" method-javadoc-count="218" method-api-count="220" class-javadoc-count="26" class-api-count="28" name="org.eclipse.jst.server"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="0" method-javadoc-count="0" method-api-count="0" class-javadoc-count="0" class-api-count="0" name="org.eclipse.wst.xsd"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="0" method-javadoc-count="0" method-api-count="0" class-javadoc-count="0" class-api-count="0" name="org.eclipse.wst.common.emf"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="139" method-javadoc-count="547" method-api-count="773" class-javadoc-count="36" class-api-count="83" name="org.eclipse.wst.sse"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="676" method-javadoc-count="19" method-api-count="21" class-javadoc-count="7" class-api-count="14" name="org.eclipse.wst.html"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="53" method-javadoc-count="152" method-api-count="183" class-javadoc-count="9" class-api-count="17" name="org.eclipse.wst.common.modulecore"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="57" method-javadoc-count="75" method-api-count="158" class-javadoc-count="8" class-api-count="30" name="org.eclipse.wst.common.snippets"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="116" method-javadoc-count="14" method-api-count="23" class-javadoc-count="6" class-api-count="10" name="org.eclipse.jst.jsp"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="19" method-javadoc-count="62" method-api-count="62" class-javadoc-count="10" class-api-count="10" name="org.eclipse.wst.internet"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="106" method-javadoc-count="14" method-api-count="124" class-javadoc-count="4" class-api-count="36" name="org.eclipse.wst.css"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="1" method-javadoc-count="0" method-api-count="0" class-javadoc-count="0" class-api-count="1" name="org.eclipse.wst.javascript"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="164" method-javadoc-count="145" method-api-count="274" class-javadoc-count="17" class-api-count="41" name="org.eclipse.wst.xml"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="0" method-javadoc-count="0" method-api-count="0" class-javadoc-count="0" class-api-count="0" name="org.eclipse.wst.common.navigator.views"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="1" method-javadoc-count="14" method-api-count="14" class-javadoc-count="2" class-api-count="4" name="org.eclipse.wst.dtd"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="13" method-javadoc-count="44" method-api-count="55" class-javadoc-count="3" class-api-count="9" name="org.eclipse.jst.j2ee"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="0" method-javadoc-count="0" method-api-count="0" class-javadoc-count="0" class-api-count="0" name="wst.rdb"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="415" method-javadoc-count="351" method-api-count="434" class-javadoc-count="21" class-api-count="51" name="org.eclipse.wst.wsdl"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="0" method-javadoc-count="0" method-api-count="0" class-javadoc-count="0" class-api-count="0" name="org.eclipse.jst.common.frameworks"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="0" method-javadoc-count="0" method-api-count="0" class-javadoc-count="0" class-api-count="0" name="org.eclipse.jst.j2ee.webservice"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="0" method-javadoc-count="0" method-api-count="0" class-javadoc-count="0" class-api-count="0" name="org.eclipse.wst.web"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="4" method-javadoc-count="27" method-api-count="39" class-javadoc-count="2" class-api-count="8" name="org.eclipse.jst.j2ee.web"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="0" method-javadoc-count="0" method-api-count="0" class-javadoc-count="0" class-api-count="0" name="org.eclipse.jst.ws"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="0" method-javadoc-count="0" method-api-count="0" class-javadoc-count="0" class-api-count="0" name="org.eclipse.wst.common.migration"/></component-api-javadoc-summary>
\ No newline at end of file
diff --git a/archive/releng.builder/tools/apitools/api_progress/1.0/20050330/index-api-tc.xml b/archive/releng.builder/tools/apitools/api_progress/1.0/20050330/index-api-tc.xml
new file mode 100644
index 0000000..e4b6b6c
--- /dev/null
+++ b/archive/releng.builder/tools/apitools/api_progress/1.0/20050330/index-api-tc.xml
@@ -0,0 +1,2 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<component-api-tc-summary timestamp="20050330"><component-api-tc ref="" missing-coverage-count="0" test-coverage-count="0" api-count="0" name="org.eclipse.wst.command"/><component-api-tc ref="" missing-coverage-count="298" test-coverage-count="2" api-count="300" name="org.eclipse.wst.common"/><component-api-tc ref="" missing-coverage-count="0" test-coverage-count="0" api-count="0" name="org.eclipse.wst.ws"/><component-api-tc ref="" missing-coverage-count="147" test-coverage-count="333" api-count="480" name="org.eclipse.wst.server"/><component-api-tc ref="" missing-coverage-count="1273" test-coverage-count="349" api-count="1622" name="org.eclipse.jst.j2ee.core"/><component-api-tc ref="" missing-coverage-count="0" test-coverage-count="0" api-count="0" name="org.eclipse.jst.j2ee.ejb"/><component-api-tc ref="" missing-coverage-count="0" test-coverage-count="0" api-count="0" name="org.eclipse.wst.common.frameworks"/><component-api-tc ref="" missing-coverage-count="34" test-coverage-count="27" api-count="61" name="org.eclipse.wst.validation"/><component-api-tc ref="" missing-coverage-count="0" test-coverage-count="0" api-count="0" name="org.eclipse.jst.j2ee.jca"/><component-api-tc ref="" missing-coverage-count="125" test-coverage-count="95" api-count="220" name="org.eclipse.jst.server"/><component-api-tc ref="" missing-coverage-count="0" test-coverage-count="0" api-count="0" name="org.eclipse.wst.xsd"/><component-api-tc ref="" missing-coverage-count="0" test-coverage-count="0" api-count="0" name="org.eclipse.wst.common.emf"/><component-api-tc ref="" missing-coverage-count="698" test-coverage-count="75" api-count="773" name="org.eclipse.wst.sse"/><component-api-tc ref="" missing-coverage-count="19" test-coverage-count="2" api-count="21" name="org.eclipse.wst.html"/><component-api-tc ref="" missing-coverage-count="141" test-coverage-count="42" api-count="183" name="org.eclipse.wst.common.modulecore"/><component-api-tc ref="" missing-coverage-count="158" test-coverage-count="0" api-count="158" name="org.eclipse.wst.common.snippets"/><component-api-tc ref="" missing-coverage-count="12" test-coverage-count="11" api-count="23" name="org.eclipse.jst.jsp"/><component-api-tc ref="" missing-coverage-count="7" test-coverage-count="55" api-count="62" name="org.eclipse.wst.internet"/><component-api-tc ref="" missing-coverage-count="97" test-coverage-count="27" api-count="124" name="org.eclipse.wst.css"/><component-api-tc ref="" missing-coverage-count="0" test-coverage-count="0" api-count="0" name="org.eclipse.wst.javascript"/><component-api-tc ref="" missing-coverage-count="264" test-coverage-count="10" api-count="274" name="org.eclipse.wst.xml"/><component-api-tc ref="" missing-coverage-count="0" test-coverage-count="0" api-count="0" name="org.eclipse.wst.common.navigator.views"/><component-api-tc ref="" missing-coverage-count="14" test-coverage-count="0" api-count="14" name="org.eclipse.wst.dtd"/><component-api-tc ref="" missing-coverage-count="53" test-coverage-count="2" api-count="55" name="org.eclipse.jst.j2ee"/><component-api-tc ref="" missing-coverage-count="0" test-coverage-count="0" api-count="0" name="wst.rdb"/><component-api-tc ref="" missing-coverage-count="418" test-coverage-count="16" api-count="434" name="org.eclipse.wst.wsdl"/><component-api-tc ref="" missing-coverage-count="0" test-coverage-count="0" api-count="0" name="org.eclipse.jst.common.frameworks"/><component-api-tc ref="" missing-coverage-count="0" test-coverage-count="0" api-count="0" name="org.eclipse.jst.j2ee.webservice"/><component-api-tc ref="" missing-coverage-count="0" test-coverage-count="0" api-count="0" name="org.eclipse.wst.web"/><component-api-tc ref="" missing-coverage-count="39" test-coverage-count="0" api-count="39" name="org.eclipse.jst.j2ee.web"/><component-api-tc ref="" missing-coverage-count="0" test-coverage-count="0" api-count="0" name="org.eclipse.jst.ws"/><component-api-tc ref="" missing-coverage-count="0" test-coverage-count="0" api-count="0" name="org.eclipse.wst.common.migration"/></component-api-tc-summary>
\ No newline at end of file
diff --git a/archive/releng.builder/tools/apitools/api_progress/1.0/20050330/index-comp-summary.xml b/archive/releng.builder/tools/apitools/api_progress/1.0/20050330/index-comp-summary.xml
new file mode 100644
index 0000000..3154a71
--- /dev/null
+++ b/archive/releng.builder/tools/apitools/api_progress/1.0/20050330/index-comp-summary.xml
@@ -0,0 +1 @@
+<?xml version="1.0" encoding="UTF-8"?><component-summary timestamp="20050330"><component name="org.eclipse.wst.command" ref="./org.eclipse.wst.command/component-api.xml"/><component name="org.eclipse.wst.common" ref="./org.eclipse.wst.common/component-api.xml"/><component name="org.eclipse.wst.ws" ref="./org.eclipse.wst.ws/component-api.xml"/><component name="org.eclipse.wst.server" ref="./org.eclipse.wst.server/component-api.xml"/><component name="org.eclipse.jst.j2ee.core" ref="./org.eclipse.jst.j2ee.core/component-api.xml"/><component name="org.eclipse.jst.j2ee.ejb" ref="./org.eclipse.jst.j2ee.ejb/component-api.xml"/><component name="org.eclipse.wst.common.frameworks" ref="./org.eclipse.wst.common.frameworks/component-api.xml"/><component name="org.eclipse.wst.validation" ref="./org.eclipse.wst.validation/component-api.xml"/><component name="org.eclipse.jst.j2ee.jca" ref="./org.eclipse.jst.j2ee.jca/component-api.xml"/><component name="org.eclipse.jst.server" ref="./org.eclipse.jst.server/component-api.xml"/><component name="org.eclipse.wst.xsd" ref="./org.eclipse.wst.xsd/component-api.xml"/><component name="org.eclipse.wst.common.emf" ref="./org.eclipse.wst.common.emf/component-api.xml"/><component name="org.eclipse.wst.sse" ref="./org.eclipse.wst.sse/component-api.xml"/><component name="org.eclipse.wst.html" ref="./org.eclipse.wst.html/component-api.xml"/><component name="org.eclipse.wst.common.modulecore" ref="./org.eclipse.wst.common.modulecore/component-api.xml"/><component name="org.eclipse.wst.common.snippets" ref="./org.eclipse.wst.common.snippets/component-api.xml"/><component name="org.eclipse.jst.jsp" ref="./org.eclipse.jst.jsp/component-api.xml"/><component name="org.eclipse.wst.internet" ref="./org.eclipse.wst.internet/component-api.xml"/><component name="org.eclipse.wst.css" ref="./org.eclipse.wst.css/component-api.xml"/><component name="org.eclipse.wst.javascript" ref="./org.eclipse.wst.javascript/component-api.xml"/><component name="org.eclipse.wst.xml" ref="./org.eclipse.wst.xml/component-api.xml"/><component name="org.eclipse.wst.common.navigator.views" ref="./org.eclipse.wst.common.navigator.views/component-api.xml"/><component name="org.eclipse.wst.dtd" ref="./org.eclipse.wst.dtd/component-api.xml"/><component name="org.eclipse.jst.j2ee" ref="./org.eclipse.jst.j2ee/component-api.xml"/><component name="wst.rdb" ref="./wst.rdb/component-api.xml"/><component name="org.eclipse.wst.wsdl" ref="./org.eclipse.wst.wsdl/component-api.xml"/><component name="org.eclipse.jst.common.frameworks" ref="./org.eclipse.jst.common.frameworks/component-api.xml"/><component name="org.eclipse.jst.j2ee.webservice" ref="./org.eclipse.jst.j2ee.webservice/component-api.xml"/><component name="org.eclipse.wst.web" ref="./org.eclipse.wst.web/component-api.xml"/><component name="org.eclipse.jst.j2ee.web" ref="./org.eclipse.jst.j2ee.web/component-api.xml"/><component name="org.eclipse.jst.ws" ref="./org.eclipse.jst.ws/component-api.xml"/><component name="org.eclipse.wst.common.migration" ref="./org.eclipse.wst.common.migration/component-api.xml"/></component-summary>
\ No newline at end of file
diff --git a/archive/releng.builder/tools/apitools/api_progress/1.0/20050331/index-api-javadoc.xml b/archive/releng.builder/tools/apitools/api_progress/1.0/20050331/index-api-javadoc.xml
new file mode 100644
index 0000000..e6923cd
--- /dev/null
+++ b/archive/releng.builder/tools/apitools/api_progress/1.0/20050331/index-api-javadoc.xml
@@ -0,0 +1,2 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<component-api-javadoc-summary timestamp="20050331"><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="0" method-javadoc-count="0" method-api-count="0" class-javadoc-count="0" class-api-count="0" name="org.eclipse.wst.command"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="44" method-javadoc-count="50" method-api-count="61" class-javadoc-count="4" class-api-count="8" name="org.eclipse.wst.common"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="0" method-javadoc-count="0" method-api-count="0" class-javadoc-count="0" class-api-count="0" name="org.eclipse.wst.ws"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="70" method-javadoc-count="459" method-api-count="480" class-javadoc-count="69" class-api-count="74" name="org.eclipse.wst.server"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="258" method-javadoc-count="1259" method-api-count="1622" class-javadoc-count="109" class-api-count="221" name="org.eclipse.jst.j2ee.core"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="0" method-javadoc-count="0" method-api-count="0" class-javadoc-count="0" class-api-count="0" name="org.eclipse.jst.j2ee.ejb"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="0" method-javadoc-count="0" method-api-count="0" class-javadoc-count="0" class-api-count="0" name="org.eclipse.wst.common.frameworks"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="14" method-javadoc-count="55" method-api-count="61" class-javadoc-count="4" class-api-count="9" name="org.eclipse.wst.validation"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="0" method-javadoc-count="0" method-api-count="0" class-javadoc-count="0" class-api-count="0" name="org.eclipse.jst.j2ee.jca"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="81" method-javadoc-count="218" method-api-count="220" class-javadoc-count="26" class-api-count="28" name="org.eclipse.jst.server"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="0" method-javadoc-count="0" method-api-count="0" class-javadoc-count="0" class-api-count="0" name="org.eclipse.wst.xsd"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="0" method-javadoc-count="0" method-api-count="0" class-javadoc-count="0" class-api-count="0" name="org.eclipse.wst.common.emf"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="103" method-javadoc-count="427" method-api-count="580" class-javadoc-count="33" class-api-count="59" name="org.eclipse.wst.sse"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="642" method-javadoc-count="14" method-api-count="14" class-javadoc-count="6" class-api-count="7" name="org.eclipse.wst.html"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="52" method-javadoc-count="157" method-api-count="188" class-javadoc-count="9" class-api-count="17" name="org.eclipse.wst.common.modulecore"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="21" method-javadoc-count="56" method-api-count="139" class-javadoc-count="5" class-api-count="26" name="org.eclipse.wst.common.snippets"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="116" method-javadoc-count="14" method-api-count="14" class-javadoc-count="6" class-api-count="9" name="org.eclipse.jst.jsp"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="19" method-javadoc-count="62" method-api-count="62" class-javadoc-count="10" class-api-count="10" name="org.eclipse.wst.internet"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="101" method-javadoc-count="8" method-api-count="116" class-javadoc-count="3" class-api-count="33" name="org.eclipse.wst.css"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="1" method-javadoc-count="6" method-api-count="6" class-javadoc-count="1" class-api-count="2" name="org.eclipse.wst.javascript"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="164" method-javadoc-count="145" method-api-count="274" class-javadoc-count="17" class-api-count="41" name="org.eclipse.wst.xml"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="0" method-javadoc-count="0" method-api-count="0" class-javadoc-count="0" class-api-count="0" name="org.eclipse.wst.common.navigator.views"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="1" method-javadoc-count="15" method-api-count="15" class-javadoc-count="2" class-api-count="4" name="org.eclipse.wst.dtd"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="13" method-javadoc-count="50" method-api-count="61" class-javadoc-count="4" class-api-count="10" name="org.eclipse.jst.j2ee"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="0" method-javadoc-count="0" method-api-count="0" class-javadoc-count="0" class-api-count="0" name="wst.rdb"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="325" method-javadoc-count="317" method-api-count="374" class-javadoc-count="18" class-api-count="38" name="org.eclipse.wst.wsdl"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="0" method-javadoc-count="0" method-api-count="0" class-javadoc-count="0" class-api-count="0" name="org.eclipse.jst.common.frameworks"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="0" method-javadoc-count="0" method-api-count="0" class-javadoc-count="0" class-api-count="0" name="org.eclipse.jst.j2ee.webservice"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="0" method-javadoc-count="0" method-api-count="0" class-javadoc-count="0" class-api-count="0" name="org.eclipse.wst.web"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="4" method-javadoc-count="27" method-api-count="39" class-javadoc-count="2" class-api-count="8" name="org.eclipse.jst.j2ee.web"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="0" method-javadoc-count="0" method-api-count="0" class-javadoc-count="0" class-api-count="0" name="org.eclipse.jst.ws"/><component-api-javadoc ref="" field-javadoc-count="-1" field-api-count="0" method-javadoc-count="0" method-api-count="0" class-javadoc-count="0" class-api-count="0" name="org.eclipse.wst.common.migration"/></component-api-javadoc-summary>
\ No newline at end of file
diff --git a/archive/releng.builder/tools/apitools/api_progress/1.0/20050331/index-api-tc.xml b/archive/releng.builder/tools/apitools/api_progress/1.0/20050331/index-api-tc.xml
new file mode 100644
index 0000000..926cfd9
--- /dev/null
+++ b/archive/releng.builder/tools/apitools/api_progress/1.0/20050331/index-api-tc.xml
@@ -0,0 +1,2 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<component-api-tc-summary timestamp="20050331"><component-api-tc ref="" missing-coverage-count="0" test-coverage-count="0" api-count="0" name="org.eclipse.wst.command"/><component-api-tc ref="" missing-coverage-count="61" test-coverage-count="0" api-count="61" name="org.eclipse.wst.common"/><component-api-tc ref="" missing-coverage-count="0" test-coverage-count="0" api-count="0" name="org.eclipse.wst.ws"/><component-api-tc ref="" missing-coverage-count="147" test-coverage-count="333" api-count="480" name="org.eclipse.wst.server"/><component-api-tc ref="" missing-coverage-count="1274" test-coverage-count="348" api-count="1622" name="org.eclipse.jst.j2ee.core"/><component-api-tc ref="" missing-coverage-count="0" test-coverage-count="0" api-count="0" name="org.eclipse.jst.j2ee.ejb"/><component-api-tc ref="" missing-coverage-count="0" test-coverage-count="0" api-count="0" name="org.eclipse.wst.common.frameworks"/><component-api-tc ref="" missing-coverage-count="34" test-coverage-count="27" api-count="61" name="org.eclipse.wst.validation"/><component-api-tc ref="" missing-coverage-count="0" test-coverage-count="0" api-count="0" name="org.eclipse.jst.j2ee.jca"/><component-api-tc ref="" missing-coverage-count="125" test-coverage-count="95" api-count="220" name="org.eclipse.jst.server"/><component-api-tc ref="" missing-coverage-count="0" test-coverage-count="0" api-count="0" name="org.eclipse.wst.xsd"/><component-api-tc ref="" missing-coverage-count="0" test-coverage-count="0" api-count="0" name="org.eclipse.wst.common.emf"/><component-api-tc ref="" missing-coverage-count="507" test-coverage-count="73" api-count="580" name="org.eclipse.wst.sse"/><component-api-tc ref="" missing-coverage-count="1" test-coverage-count="13" api-count="14" name="org.eclipse.wst.html"/><component-api-tc ref="" missing-coverage-count="147" test-coverage-count="41" api-count="188" name="org.eclipse.wst.common.modulecore"/><component-api-tc ref="" missing-coverage-count="139" test-coverage-count="0" api-count="139" name="org.eclipse.wst.common.snippets"/><component-api-tc ref="" missing-coverage-count="1" test-coverage-count="13" api-count="14" name="org.eclipse.jst.jsp"/><component-api-tc ref="" missing-coverage-count="7" test-coverage-count="55" api-count="62" name="org.eclipse.wst.internet"/><component-api-tc ref="" missing-coverage-count="89" test-coverage-count="27" api-count="116" name="org.eclipse.wst.css"/><component-api-tc ref="" missing-coverage-count="6" test-coverage-count="0" api-count="6" name="org.eclipse.wst.javascript"/><component-api-tc ref="" missing-coverage-count="253" test-coverage-count="21" api-count="274" name="org.eclipse.wst.xml"/><component-api-tc ref="" missing-coverage-count="0" test-coverage-count="0" api-count="0" name="org.eclipse.wst.common.navigator.views"/><component-api-tc ref="" missing-coverage-count="15" test-coverage-count="0" api-count="15" name="org.eclipse.wst.dtd"/><component-api-tc ref="" missing-coverage-count="58" test-coverage-count="3" api-count="61" name="org.eclipse.jst.j2ee"/><component-api-tc ref="" missing-coverage-count="0" test-coverage-count="0" api-count="0" name="wst.rdb"/><component-api-tc ref="" missing-coverage-count="298" test-coverage-count="76" api-count="374" name="org.eclipse.wst.wsdl"/><component-api-tc ref="" missing-coverage-count="0" test-coverage-count="0" api-count="0" name="org.eclipse.jst.common.frameworks"/><component-api-tc ref="" missing-coverage-count="0" test-coverage-count="0" api-count="0" name="org.eclipse.jst.j2ee.webservice"/><component-api-tc ref="" missing-coverage-count="0" test-coverage-count="0" api-count="0" name="org.eclipse.wst.web"/><component-api-tc ref="" missing-coverage-count="39" test-coverage-count="0" api-count="39" name="org.eclipse.jst.j2ee.web"/><component-api-tc ref="" missing-coverage-count="0" test-coverage-count="0" api-count="0" name="org.eclipse.jst.ws"/><component-api-tc ref="" missing-coverage-count="0" test-coverage-count="0" api-count="0" name="org.eclipse.wst.common.migration"/></component-api-tc-summary>
\ No newline at end of file
diff --git a/archive/releng.builder/tools/apitools/api_progress/1.0/20050331/index-comp-summary.xml b/archive/releng.builder/tools/apitools/api_progress/1.0/20050331/index-comp-summary.xml
new file mode 100644
index 0000000..345f63d
--- /dev/null
+++ b/archive/releng.builder/tools/apitools/api_progress/1.0/20050331/index-comp-summary.xml
@@ -0,0 +1 @@
+<?xml version="1.0" encoding="UTF-8"?><component-summary timestamp="20050331"><component name="org.eclipse.wst.command" ref="./org.eclipse.wst.command/component-api.xml"/><component name="org.eclipse.wst.common" ref="./org.eclipse.wst.common/component-api.xml"/><component name="org.eclipse.wst.ws" ref="./org.eclipse.wst.ws/component-api.xml"/><component name="org.eclipse.wst.server" ref="./org.eclipse.wst.server/component-api.xml"/><component name="org.eclipse.jst.j2ee.core" ref="./org.eclipse.jst.j2ee.core/component-api.xml"/><component name="org.eclipse.jst.j2ee.ejb" ref="./org.eclipse.jst.j2ee.ejb/component-api.xml"/><component name="org.eclipse.wst.common.frameworks" ref="./org.eclipse.wst.common.frameworks/component-api.xml"/><component name="org.eclipse.wst.validation" ref="./org.eclipse.wst.validation/component-api.xml"/><component name="org.eclipse.jst.j2ee.jca" ref="./org.eclipse.jst.j2ee.jca/component-api.xml"/><component name="org.eclipse.jst.server" ref="./org.eclipse.jst.server/component-api.xml"/><component name="org.eclipse.wst.xsd" ref="./org.eclipse.wst.xsd/component-api.xml"/><component name="org.eclipse.wst.common.emf" ref="./org.eclipse.wst.common.emf/component-api.xml"/><component name="org.eclipse.wst.sse" ref="./org.eclipse.wst.sse/component-api.xml"/><component name="org.eclipse.wst.html" ref="./org.eclipse.wst.html/component-api.xml"/><component name="org.eclipse.wst.common.modulecore" ref="./org.eclipse.wst.common.modulecore/component-api.xml"/><component name="org.eclipse.wst.common.snippets" ref="./org.eclipse.wst.common.snippets/component-api.xml"/><component name="org.eclipse.jst.jsp" ref="./org.eclipse.jst.jsp/component-api.xml"/><component name="org.eclipse.wst.internet" ref="./org.eclipse.wst.internet/component-api.xml"/><component name="org.eclipse.wst.css" ref="./org.eclipse.wst.css/component-api.xml"/><component name="org.eclipse.wst.javascript" ref="./org.eclipse.wst.javascript/component-api.xml"/><component name="org.eclipse.wst.xml" ref="./org.eclipse.wst.xml/component-api.xml"/><component name="org.eclipse.wst.common.navigator.views" ref="./org.eclipse.wst.common.navigator.views/component-api.xml"/><component name="org.eclipse.wst.dtd" ref="./org.eclipse.wst.dtd/component-api.xml"/><component name="org.eclipse.jst.j2ee" ref="./org.eclipse.jst.j2ee/component-api.xml"/><component name="wst.rdb" ref="./wst.rdb/component-api.xml"/><component name="org.eclipse.wst.wsdl" ref="./org.eclipse.wst.wsdl/component-api.xml"/><component name="org.eclipse.jst.common.frameworks" ref="./org.eclipse.jst.common.frameworks/component-api.xml"/><component name="org.eclipse.jst.j2ee.webservice" ref="./org.eclipse.jst.j2ee.webservice/component-api.xml"/><component name="org.eclipse.wst.web" ref="./org.eclipse.wst.web/component-api.xml"/><component name="org.eclipse.jst.j2ee.web" ref="./org.eclipse.jst.j2ee.web/component-api.xml"/><component name="org.eclipse.jst.ws" ref="./org.eclipse.jst.ws/component-api.xml"/><component name="org.eclipse.wst.common.migration" ref="./org.eclipse.wst.common.migration/component-api.xml"/></component-summary>
\ No newline at end of file
diff --git a/archive/releng.builder/tools/apitools/api_progress/1.0/20050409/index-api-javadoc.xml b/archive/releng.builder/tools/apitools/api_progress/1.0/20050409/index-api-javadoc.xml
new file mode 100644
index 0000000..442dd81
--- /dev/null
+++ b/archive/releng.builder/tools/apitools/api_progress/1.0/20050409/index-api-javadoc.xml
@@ -0,0 +1 @@
+<?xml version="1.0" encoding="UTF-8"?><component-api-javadoc-summary><component-api-javadoc name="org.eclipse.wst.common" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.common/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.command" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.command/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.common.componentcore" class-api-count="8" class-javadoc-count="4" method-api-count="89" method-javadoc-count="77" field-api-count="8" field-javadoc-count="7" ref="./org.eclipse.wst.common.componentcore/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.jst.jsp" class-api-count="9" class-javadoc-count="6" method-api-count="14" method-javadoc-count="14" field-api-count="115" field-javadoc-count="107" ref="./org.eclipse.jst.jsp/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.jst.server" class-api-count="28" class-javadoc-count="26" method-api-count="220" method-javadoc-count="220" field-api-count="81" field-javadoc-count="81" ref="./org.eclipse.jst.server/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.jst.j2ee.jca" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.jst.j2ee.jca/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.xml" class-api-count="16" class-javadoc-count="15" method-api-count="97" method-javadoc-count="60" field-api-count="77" field-javadoc-count="46" ref="./org.eclipse.wst.xml/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.jst.j2ee.web" class-api-count="1" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="4" field-javadoc-count="0" ref="./org.eclipse.jst.j2ee.web/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.jst.j2ee.ejb" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.jst.j2ee.ejb/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.common.snippets" class-api-count="6" class-javadoc-count="3" method-api-count="54" method-javadoc-count="31" field-api-count="4" field-javadoc-count="1" ref="./org.eclipse.wst.common.snippets/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.html" class-api-count="7" class-javadoc-count="6" method-api-count="14" method-javadoc-count="14" field-api-count="641" field-javadoc-count="637" ref="./org.eclipse.wst.html/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.dtd" class-api-count="4" class-javadoc-count="2" method-api-count="16" method-javadoc-count="16" field-api-count="1" field-javadoc-count="1" ref="./org.eclipse.wst.dtd/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.wsdl" class-api-count="39" class-javadoc-count="39" method-api-count="198" method-javadoc-count="198" field-api-count="55" field-javadoc-count="55" ref="./org.eclipse.wst.wsdl/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.jst.j2ee.core" class-api-count="214" class-javadoc-count="108" method-api-count="1581" method-javadoc-count="1494" field-api-count="229" field-javadoc-count="217" ref="./org.eclipse.jst.j2ee.core/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.web" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.web/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.javascript" class-api-count="2" class-javadoc-count="1" method-api-count="6" method-javadoc-count="6" field-api-count="1" field-javadoc-count="1" ref="./org.eclipse.wst.javascript/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.jst.j2ee" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.jst.j2ee/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.sse" class-api-count="44" class-javadoc-count="36" method-api-count="402" method-javadoc-count="360" field-api-count="78" field-javadoc-count="76" ref="./org.eclipse.wst.sse/component-api-javadoc.html"/><component-api-javadoc name="wst.rdb" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./wst.rdb/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.common.emf" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.common.emf/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.internet" class-api-count="10" class-javadoc-count="10" method-api-count="62" method-javadoc-count="62" field-api-count="19" field-javadoc-count="19" ref="./org.eclipse.wst.internet/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.server" class-api-count="74" class-javadoc-count="66" method-api-count="480" method-javadoc-count="480" field-api-count="70" field-javadoc-count="63" ref="./org.eclipse.wst.server/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.jst.j2ee.webservice" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.jst.j2ee.webservice/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.common.navigator.views" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.common.navigator.views/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.wsi" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.wsi/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.jst.common.frameworks" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.jst.common.frameworks/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.css" class-api-count="33" class-javadoc-count="3" method-api-count="116" method-javadoc-count="98" field-api-count="100" field-javadoc-count="50" ref="./org.eclipse.wst.css/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.common.frameworks" class-api-count="17" class-javadoc-count="12" method-api-count="208" method-javadoc-count="193" field-api-count="30" field-javadoc-count="30" ref="./org.eclipse.wst.common.frameworks/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.validation" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.validation/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.ws" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.ws/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.jst.ws" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.jst.ws/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.common.migration" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.common.migration/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.xsd" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.xsd/component-api-javadoc.html"/></component-api-javadoc-summary>
\ No newline at end of file
diff --git a/archive/releng.builder/tools/apitools/api_progress/1.0/20050409/index-api-tc.xml b/archive/releng.builder/tools/apitools/api_progress/1.0/20050409/index-api-tc.xml
new file mode 100644
index 0000000..0b4b8c6
--- /dev/null
+++ b/archive/releng.builder/tools/apitools/api_progress/1.0/20050409/index-api-tc.xml
@@ -0,0 +1 @@
+<?xml version="1.0" encoding="UTF-8"?><component-api-tc-summary timestamp="20050409"><component-api-tc name="org.eclipse.wst.common" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.common/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.command" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.command/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.common.componentcore" api-count="89" test-coverage-count="43" missing-coverage-count="46" ref="./org.eclipse.wst.common.componentcore/component-api-tc.html"/><component-api-tc name="org.eclipse.jst.jsp" api-count="14" test-coverage-count="14" missing-coverage-count="0" ref="./org.eclipse.jst.jsp/component-api-tc.html"/><component-api-tc name="org.eclipse.jst.server" api-count="220" test-coverage-count="89" missing-coverage-count="131" ref="./org.eclipse.jst.server/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.xml" api-count="97" test-coverage-count="22" missing-coverage-count="75" ref="./org.eclipse.wst.xml/component-api-tc.html"/><component-api-tc name="org.eclipse.jst.j2ee.jca" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.jst.j2ee.jca/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.common.snippets" api-count="54" test-coverage-count="0" missing-coverage-count="54" ref="./org.eclipse.wst.common.snippets/component-api-tc.html"/><component-api-tc name="org.eclipse.jst.j2ee.web" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.jst.j2ee.web/component-api-tc.html"/><component-api-tc name="org.eclipse.jst.j2ee.ejb" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.jst.j2ee.ejb/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.dtd" api-count="16" test-coverage-count="4" missing-coverage-count="12" ref="./org.eclipse.wst.dtd/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.html" api-count="14" test-coverage-count="14" missing-coverage-count="0" ref="./org.eclipse.wst.html/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.wsdl" api-count="198" test-coverage-count="145" missing-coverage-count="53" ref="./org.eclipse.wst.wsdl/component-api-tc.html"/><component-api-tc name="org.eclipse.jst.j2ee.core" api-count="1581" test-coverage-count="348" missing-coverage-count="1233" ref="./org.eclipse.jst.j2ee.core/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.web" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.web/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.javascript" api-count="6" test-coverage-count="0" missing-coverage-count="6" ref="./org.eclipse.wst.javascript/component-api-tc.html"/><component-api-tc name="org.eclipse.jst.j2ee" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.jst.j2ee/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.sse" api-count="402" test-coverage-count="81" missing-coverage-count="321" ref="./org.eclipse.wst.sse/component-api-tc.html"/><component-api-tc name="wst.rdb" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./wst.rdb/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.common.emf" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.common.emf/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.internet" api-count="62" test-coverage-count="55" missing-coverage-count="7" ref="./org.eclipse.wst.internet/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.server" api-count="480" test-coverage-count="333" missing-coverage-count="147" ref="./org.eclipse.wst.server/component-api-tc.html"/><component-api-tc name="org.eclipse.jst.j2ee.webservice" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.jst.j2ee.webservice/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.common.navigator.views" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.common.navigator.views/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.wsi" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.wsi/component-api-tc.html"/><component-api-tc name="org.eclipse.jst.common.frameworks" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.jst.common.frameworks/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.css" api-count="116" test-coverage-count="27" missing-coverage-count="89" ref="./org.eclipse.wst.css/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.common.frameworks" api-count="208" test-coverage-count="46" missing-coverage-count="162" ref="./org.eclipse.wst.common.frameworks/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.validation" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.validation/component-api-tc.html"/><component-api-tc name="org.eclipse.jst.ws" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.jst.ws/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.ws" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.ws/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.common.migration" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.common.migration/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.xsd" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.xsd/component-api-tc.html"/></component-api-tc-summary>
\ No newline at end of file
diff --git a/archive/releng.builder/tools/apitools/api_progress/1.0/20050409/index-comp-summary.xml b/archive/releng.builder/tools/apitools/api_progress/1.0/20050409/index-comp-summary.xml
new file mode 100644
index 0000000..0d7ef2b
--- /dev/null
+++ b/archive/releng.builder/tools/apitools/api_progress/1.0/20050409/index-comp-summary.xml
@@ -0,0 +1 @@
+<?xml version="1.0" encoding="UTF-8"?><component-summary timestamp="20050409"><component name="org.eclipse.wst.common" ref="./org.eclipse.wst.common/component-api.xml"/><component name="org.eclipse.wst.command" ref="./org.eclipse.wst.command/component-api.xml"/><component name="org.eclipse.wst.common.componentcore" ref="./org.eclipse.wst.common.componentcore/component-api.xml"/><component name="org.eclipse.jst.jsp" ref="./org.eclipse.jst.jsp/component-api.xml"/><component name="org.eclipse.jst.server" ref="./org.eclipse.jst.server/component-api.xml"/><component name="org.eclipse.wst.xml" ref="./org.eclipse.wst.xml/component-api.xml"/><component name="org.eclipse.jst.j2ee.jca" ref="./org.eclipse.jst.j2ee.jca/component-api.xml"/><component name="org.eclipse.wst.common.snippets" ref="./org.eclipse.wst.common.snippets/component-api.xml"/><component name="org.eclipse.jst.j2ee.web" ref="./org.eclipse.jst.j2ee.web/component-api.xml"/><component name="org.eclipse.jst.j2ee.ejb" ref="./org.eclipse.jst.j2ee.ejb/component-api.xml"/><component name="org.eclipse.wst.dtd" ref="./org.eclipse.wst.dtd/component-api.xml"/><component name="org.eclipse.wst.html" ref="./org.eclipse.wst.html/component-api.xml"/><component name="org.eclipse.wst.wsdl" ref="./org.eclipse.wst.wsdl/component-api.xml"/><component name="org.eclipse.jst.j2ee.core" ref="./org.eclipse.jst.j2ee.core/component-api.xml"/><component name="org.eclipse.wst.web" ref="./org.eclipse.wst.web/component-api.xml"/><component name="org.eclipse.wst.javascript" ref="./org.eclipse.wst.javascript/component-api.xml"/><component name="org.eclipse.jst.j2ee" ref="./org.eclipse.jst.j2ee/component-api.xml"/><component name="org.eclipse.wst.sse" ref="./org.eclipse.wst.sse/component-api.xml"/><component name="wst.rdb" ref="./wst.rdb/component-api.xml"/><component name="org.eclipse.wst.common.emf" ref="./org.eclipse.wst.common.emf/component-api.xml"/><component name="org.eclipse.wst.internet" ref="./org.eclipse.wst.internet/component-api.xml"/><component name="org.eclipse.wst.server" ref="./org.eclipse.wst.server/component-api.xml"/><component name="org.eclipse.jst.j2ee.webservice" ref="./org.eclipse.jst.j2ee.webservice/component-api.xml"/><component name="org.eclipse.wst.common.navigator.views" ref="./org.eclipse.wst.common.navigator.views/component-api.xml"/><component name="org.eclipse.wst.wsi" ref="./org.eclipse.wst.wsi/component-api.xml"/><component name="org.eclipse.jst.common.frameworks" ref="./org.eclipse.jst.common.frameworks/component-api.xml"/><component name="org.eclipse.wst.css" ref="./org.eclipse.wst.css/component-api.xml"/><component name="org.eclipse.wst.common.frameworks" ref="./org.eclipse.wst.common.frameworks/component-api.xml"/><component name="org.eclipse.wst.validation" ref="./org.eclipse.wst.validation/component-api.xml"/><component name="org.eclipse.jst.ws" ref="./org.eclipse.jst.ws/component-api.xml"/><component name="org.eclipse.wst.ws" ref="./org.eclipse.wst.ws/component-api.xml"/><component name="org.eclipse.wst.common.migration" ref="./org.eclipse.wst.common.migration/component-api.xml"/><component name="org.eclipse.wst.xsd" ref="./org.eclipse.wst.xsd/component-api.xml"/></component-summary>
\ No newline at end of file
diff --git a/archive/releng.builder/tools/apitools/api_progress/1.0/20050410/index-api-javadoc.xml b/archive/releng.builder/tools/apitools/api_progress/1.0/20050410/index-api-javadoc.xml
new file mode 100644
index 0000000..3d279d9
--- /dev/null
+++ b/archive/releng.builder/tools/apitools/api_progress/1.0/20050410/index-api-javadoc.xml
@@ -0,0 +1 @@
+<?xml version="1.0" encoding="UTF-8"?><component-api-javadoc-summary><component-api-javadoc name="org.eclipse.wst.common" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.common/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.command" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.command/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.common.componentcore" class-api-count="8" class-javadoc-count="4" method-api-count="89" method-javadoc-count="77" field-api-count="8" field-javadoc-count="7" ref="./org.eclipse.wst.common.componentcore/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.jst.jsp" class-api-count="9" class-javadoc-count="6" method-api-count="14" method-javadoc-count="14" field-api-count="115" field-javadoc-count="107" ref="./org.eclipse.jst.jsp/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.jst.server" class-api-count="28" class-javadoc-count="26" method-api-count="220" method-javadoc-count="220" field-api-count="81" field-javadoc-count="81" ref="./org.eclipse.jst.server/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.jst.j2ee.jca" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.jst.j2ee.jca/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.xml" class-api-count="16" class-javadoc-count="15" method-api-count="97" method-javadoc-count="60" field-api-count="77" field-javadoc-count="46" ref="./org.eclipse.wst.xml/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.jst.j2ee.web" class-api-count="1" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="4" field-javadoc-count="0" ref="./org.eclipse.jst.j2ee.web/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.jst.j2ee.ejb" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.jst.j2ee.ejb/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.common.snippets" class-api-count="6" class-javadoc-count="3" method-api-count="54" method-javadoc-count="31" field-api-count="4" field-javadoc-count="1" ref="./org.eclipse.wst.common.snippets/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.html" class-api-count="7" class-javadoc-count="6" method-api-count="14" method-javadoc-count="14" field-api-count="641" field-javadoc-count="637" ref="./org.eclipse.wst.html/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.dtd" class-api-count="4" class-javadoc-count="2" method-api-count="16" method-javadoc-count="16" field-api-count="1" field-javadoc-count="1" ref="./org.eclipse.wst.dtd/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.wsdl" class-api-count="39" class-javadoc-count="39" method-api-count="198" method-javadoc-count="198" field-api-count="55" field-javadoc-count="55" ref="./org.eclipse.wst.wsdl/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.jst.j2ee.core" class-api-count="214" class-javadoc-count="108" method-api-count="1581" method-javadoc-count="1494" field-api-count="229" field-javadoc-count="217" ref="./org.eclipse.jst.j2ee.core/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.web" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.web/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.javascript" class-api-count="2" class-javadoc-count="1" method-api-count="6" method-javadoc-count="6" field-api-count="1" field-javadoc-count="1" ref="./org.eclipse.wst.javascript/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.jst.j2ee" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.jst.j2ee/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.sse" class-api-count="47" class-javadoc-count="39" method-api-count="339" method-javadoc-count="292" field-api-count="79" field-javadoc-count="77" ref="./org.eclipse.wst.sse/component-api-javadoc.html"/><component-api-javadoc name="wst.rdb" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./wst.rdb/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.common.emf" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.common.emf/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.internet" class-api-count="10" class-javadoc-count="10" method-api-count="62" method-javadoc-count="62" field-api-count="19" field-javadoc-count="19" ref="./org.eclipse.wst.internet/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.server" class-api-count="74" class-javadoc-count="66" method-api-count="480" method-javadoc-count="480" field-api-count="70" field-javadoc-count="63" ref="./org.eclipse.wst.server/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.jst.j2ee.webservice" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.jst.j2ee.webservice/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.common.navigator.views" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.common.navigator.views/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.wsi" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.wsi/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.jst.common.frameworks" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.jst.common.frameworks/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.css" class-api-count="3" class-javadoc-count="2" method-api-count="7" method-javadoc-count="7" field-api-count="2" field-javadoc-count="1" ref="./org.eclipse.wst.css/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.common.frameworks" class-api-count="17" class-javadoc-count="12" method-api-count="208" method-javadoc-count="193" field-api-count="30" field-javadoc-count="30" ref="./org.eclipse.wst.common.frameworks/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.validation" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.validation/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.ws" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.ws/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.jst.ws" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.jst.ws/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.common.migration" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.common.migration/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.xsd" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.xsd/component-api-javadoc.html"/></component-api-javadoc-summary>
\ No newline at end of file
diff --git a/archive/releng.builder/tools/apitools/api_progress/1.0/20050410/index-api-tc.xml b/archive/releng.builder/tools/apitools/api_progress/1.0/20050410/index-api-tc.xml
new file mode 100644
index 0000000..073ff14
--- /dev/null
+++ b/archive/releng.builder/tools/apitools/api_progress/1.0/20050410/index-api-tc.xml
@@ -0,0 +1 @@
+<?xml version="1.0" encoding="UTF-8"?><component-api-tc-summary timestamp="20050410"><component-api-tc name="org.eclipse.wst.common" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.common/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.command" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.command/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.common.componentcore" api-count="89" test-coverage-count="43" missing-coverage-count="46" ref="./org.eclipse.wst.common.componentcore/component-api-tc.html"/><component-api-tc name="org.eclipse.jst.jsp" api-count="14" test-coverage-count="14" missing-coverage-count="0" ref="./org.eclipse.jst.jsp/component-api-tc.html"/><component-api-tc name="org.eclipse.jst.server" api-count="220" test-coverage-count="89" missing-coverage-count="131" ref="./org.eclipse.jst.server/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.xml" api-count="97" test-coverage-count="22" missing-coverage-count="75" ref="./org.eclipse.wst.xml/component-api-tc.html"/><component-api-tc name="org.eclipse.jst.j2ee.jca" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.jst.j2ee.jca/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.common.snippets" api-count="54" test-coverage-count="0" missing-coverage-count="54" ref="./org.eclipse.wst.common.snippets/component-api-tc.html"/><component-api-tc name="org.eclipse.jst.j2ee.web" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.jst.j2ee.web/component-api-tc.html"/><component-api-tc name="org.eclipse.jst.j2ee.ejb" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.jst.j2ee.ejb/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.dtd" api-count="16" test-coverage-count="4" missing-coverage-count="12" ref="./org.eclipse.wst.dtd/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.html" api-count="14" test-coverage-count="14" missing-coverage-count="0" ref="./org.eclipse.wst.html/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.wsdl" api-count="198" test-coverage-count="145" missing-coverage-count="53" ref="./org.eclipse.wst.wsdl/component-api-tc.html"/><component-api-tc name="org.eclipse.jst.j2ee.core" api-count="1581" test-coverage-count="348" missing-coverage-count="1233" ref="./org.eclipse.jst.j2ee.core/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.web" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.web/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.javascript" api-count="6" test-coverage-count="0" missing-coverage-count="6" ref="./org.eclipse.wst.javascript/component-api-tc.html"/><component-api-tc name="org.eclipse.jst.j2ee" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.jst.j2ee/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.sse" api-count="339" test-coverage-count="50" missing-coverage-count="289" ref="./org.eclipse.wst.sse/component-api-tc.html"/><component-api-tc name="wst.rdb" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./wst.rdb/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.common.emf" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.common.emf/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.internet" api-count="62" test-coverage-count="55" missing-coverage-count="7" ref="./org.eclipse.wst.internet/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.server" api-count="480" test-coverage-count="333" missing-coverage-count="147" ref="./org.eclipse.wst.server/component-api-tc.html"/><component-api-tc name="org.eclipse.jst.j2ee.webservice" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.jst.j2ee.webservice/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.common.navigator.views" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.common.navigator.views/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.wsi" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.wsi/component-api-tc.html"/><component-api-tc name="org.eclipse.jst.common.frameworks" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.jst.common.frameworks/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.css" api-count="7" test-coverage-count="0" missing-coverage-count="7" ref="./org.eclipse.wst.css/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.common.frameworks" api-count="208" test-coverage-count="46" missing-coverage-count="162" ref="./org.eclipse.wst.common.frameworks/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.validation" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.validation/component-api-tc.html"/><component-api-tc name="org.eclipse.jst.ws" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.jst.ws/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.ws" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.ws/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.common.migration" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.common.migration/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.xsd" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.xsd/component-api-tc.html"/></component-api-tc-summary>
\ No newline at end of file
diff --git a/archive/releng.builder/tools/apitools/api_progress/1.0/20050410/index-comp-summary.xml b/archive/releng.builder/tools/apitools/api_progress/1.0/20050410/index-comp-summary.xml
new file mode 100644
index 0000000..2635934
--- /dev/null
+++ b/archive/releng.builder/tools/apitools/api_progress/1.0/20050410/index-comp-summary.xml
@@ -0,0 +1 @@
+<?xml version="1.0" encoding="UTF-8"?><component-summary timestamp="20050410"><component name="org.eclipse.wst.common" ref="./org.eclipse.wst.common/component-api.xml"/><component name="org.eclipse.wst.command" ref="./org.eclipse.wst.command/component-api.xml"/><component name="org.eclipse.wst.common.componentcore" ref="./org.eclipse.wst.common.componentcore/component-api.xml"/><component name="org.eclipse.jst.jsp" ref="./org.eclipse.jst.jsp/component-api.xml"/><component name="org.eclipse.jst.server" ref="./org.eclipse.jst.server/component-api.xml"/><component name="org.eclipse.wst.xml" ref="./org.eclipse.wst.xml/component-api.xml"/><component name="org.eclipse.jst.j2ee.jca" ref="./org.eclipse.jst.j2ee.jca/component-api.xml"/><component name="org.eclipse.wst.common.snippets" ref="./org.eclipse.wst.common.snippets/component-api.xml"/><component name="org.eclipse.jst.j2ee.web" ref="./org.eclipse.jst.j2ee.web/component-api.xml"/><component name="org.eclipse.jst.j2ee.ejb" ref="./org.eclipse.jst.j2ee.ejb/component-api.xml"/><component name="org.eclipse.wst.dtd" ref="./org.eclipse.wst.dtd/component-api.xml"/><component name="org.eclipse.wst.html" ref="./org.eclipse.wst.html/component-api.xml"/><component name="org.eclipse.wst.wsdl" ref="./org.eclipse.wst.wsdl/component-api.xml"/><component name="org.eclipse.jst.j2ee.core" ref="./org.eclipse.jst.j2ee.core/component-api.xml"/><component name="org.eclipse.wst.web" ref="./org.eclipse.wst.web/component-api.xml"/><component name="org.eclipse.wst.javascript" ref="./org.eclipse.wst.javascript/component-api.xml"/><component name="org.eclipse.jst.j2ee" ref="./org.eclipse.jst.j2ee/component-api.xml"/><component name="org.eclipse.wst.sse" ref="./org.eclipse.wst.sse/component-api.xml"/><component name="wst.rdb" ref="./wst.rdb/component-api.xml"/><component name="org.eclipse.wst.common.emf" ref="./org.eclipse.wst.common.emf/component-api.xml"/><component name="org.eclipse.wst.internet" ref="./org.eclipse.wst.internet/component-api.xml"/><component name="org.eclipse.wst.server" ref="./org.eclipse.wst.server/component-api.xml"/><component name="org.eclipse.jst.j2ee.webservice" ref="./org.eclipse.jst.j2ee.webservice/component-api.xml"/><component name="org.eclipse.wst.common.navigator.views" ref="./org.eclipse.wst.common.navigator.views/component-api.xml"/><component name="org.eclipse.wst.wsi" ref="./org.eclipse.wst.wsi/component-api.xml"/><component name="org.eclipse.jst.common.frameworks" ref="./org.eclipse.jst.common.frameworks/component-api.xml"/><component name="org.eclipse.wst.css" ref="./org.eclipse.wst.css/component-api.xml"/><component name="org.eclipse.wst.common.frameworks" ref="./org.eclipse.wst.common.frameworks/component-api.xml"/><component name="org.eclipse.wst.validation" ref="./org.eclipse.wst.validation/component-api.xml"/><component name="org.eclipse.jst.ws" ref="./org.eclipse.jst.ws/component-api.xml"/><component name="org.eclipse.wst.ws" ref="./org.eclipse.wst.ws/component-api.xml"/><component name="org.eclipse.wst.common.migration" ref="./org.eclipse.wst.common.migration/component-api.xml"/><component name="org.eclipse.wst.xsd" ref="./org.eclipse.wst.xsd/component-api.xml"/></component-summary>
\ No newline at end of file
diff --git a/archive/releng.builder/tools/apitools/api_progress/1.0/20050416/index-api-javadoc.xml b/archive/releng.builder/tools/apitools/api_progress/1.0/20050416/index-api-javadoc.xml
new file mode 100644
index 0000000..b698596
--- /dev/null
+++ b/archive/releng.builder/tools/apitools/api_progress/1.0/20050416/index-api-javadoc.xml
@@ -0,0 +1 @@
+<?xml version="1.0" encoding="UTF-8"?><component-api-javadoc-summary><component-api-javadoc name="org.eclipse.wst.common" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.common/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.command" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.command/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.common.componentcore" class-api-count="17" class-javadoc-count="11" method-api-count="129" method-javadoc-count="123" field-api-count="36" field-javadoc-count="36" ref="./org.eclipse.wst.common.componentcore/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.jst.jsp" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.jst.jsp/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.jst.server" class-api-count="28" class-javadoc-count="26" method-api-count="220" method-javadoc-count="220" field-api-count="81" field-javadoc-count="81" ref="./org.eclipse.jst.server/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.jst.j2ee.jca" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.jst.j2ee.jca/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.xml" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.xml/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.jst.j2ee.web" class-api-count="4" class-javadoc-count="3" method-api-count="22" method-javadoc-count="22" field-api-count="5" field-javadoc-count="5" ref="./org.eclipse.jst.j2ee.web/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.jst.j2ee.ejb" class-api-count="5" class-javadoc-count="4" method-api-count="20" method-javadoc-count="20" field-api-count="14" field-javadoc-count="14" ref="./org.eclipse.jst.j2ee.ejb/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.common.snippets" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.common.snippets/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.html" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.html/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.dtd" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.dtd/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.wsdl" class-api-count="39" class-javadoc-count="39" method-api-count="198" method-javadoc-count="198" field-api-count="55" field-javadoc-count="55" ref="./org.eclipse.wst.wsdl/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.jst.j2ee.core" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.jst.j2ee.core/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.web" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.web/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.javascript" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.javascript/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.jst.j2ee" class-api-count="16" class-javadoc-count="13" method-api-count="35" method-javadoc-count="35" field-api-count="53" field-javadoc-count="53" ref="./org.eclipse.jst.j2ee/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.sse" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.sse/component-api-javadoc.html"/><component-api-javadoc name="wst.rdb" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./wst.rdb/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.common.emf" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.common.emf/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.internet" class-api-count="10" class-javadoc-count="9" method-api-count="62" method-javadoc-count="61" field-api-count="19" field-javadoc-count="19" ref="./org.eclipse.wst.internet/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.server" class-api-count="74" class-javadoc-count="66" method-api-count="483" method-javadoc-count="483" field-api-count="70" field-javadoc-count="63" ref="./org.eclipse.wst.server/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.jst.j2ee.webservice" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.jst.j2ee.webservice/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.common.navigator.views" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.common.navigator.views/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.wsi" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.wsi/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.jst.common.frameworks" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.jst.common.frameworks/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.css" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.css/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.common.frameworks" class-api-count="11" class-javadoc-count="11" method-api-count="103" method-javadoc-count="103" field-api-count="15" field-javadoc-count="15" ref="./org.eclipse.wst.common.frameworks/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.validation" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.validation/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.ws" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.ws/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.jst.ws" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.jst.ws/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.common.migration" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.common.migration/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.xsd" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.xsd/component-api-javadoc.html"/></component-api-javadoc-summary>
\ No newline at end of file
diff --git a/archive/releng.builder/tools/apitools/api_progress/1.0/20050416/index-api-tc.xml b/archive/releng.builder/tools/apitools/api_progress/1.0/20050416/index-api-tc.xml
new file mode 100644
index 0000000..954f118
--- /dev/null
+++ b/archive/releng.builder/tools/apitools/api_progress/1.0/20050416/index-api-tc.xml
@@ -0,0 +1 @@
+<?xml version="1.0" encoding="UTF-8"?><component-api-tc-summary timestamp="20050416"><component-api-tc name="org.eclipse.wst.common" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.common/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.command" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.command/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.common.componentcore" api-count="129" test-coverage-count="120" missing-coverage-count="9" ref="./org.eclipse.wst.common.componentcore/component-api-tc.html"/><component-api-tc name="org.eclipse.jst.jsp" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.jst.jsp/component-api-tc.html"/><component-api-tc name="org.eclipse.jst.server" api-count="220" test-coverage-count="89" missing-coverage-count="131" ref="./org.eclipse.jst.server/component-api-tc.html"/><component-api-tc name="org.eclipse.jst.j2ee.jca" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.jst.j2ee.jca/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.xml" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.xml/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.common.snippets" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.common.snippets/component-api-tc.html"/><component-api-tc name="org.eclipse.jst.j2ee.web" api-count="22" test-coverage-count="21" missing-coverage-count="1" ref="./org.eclipse.jst.j2ee.web/component-api-tc.html"/><component-api-tc name="org.eclipse.jst.j2ee.ejb" api-count="20" test-coverage-count="19" missing-coverage-count="1" ref="./org.eclipse.jst.j2ee.ejb/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.html" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.html/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.dtd" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.dtd/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.wsdl" api-count="198" test-coverage-count="171" missing-coverage-count="27" ref="./org.eclipse.wst.wsdl/component-api-tc.html"/><component-api-tc name="org.eclipse.jst.j2ee.core" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.jst.j2ee.core/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.web" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.web/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.javascript" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.javascript/component-api-tc.html"/><component-api-tc name="org.eclipse.jst.j2ee" api-count="35" test-coverage-count="33" missing-coverage-count="2" ref="./org.eclipse.jst.j2ee/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.sse" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.sse/component-api-tc.html"/><component-api-tc name="wst.rdb" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./wst.rdb/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.common.emf" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.common.emf/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.internet" api-count="62" test-coverage-count="55" missing-coverage-count="7" ref="./org.eclipse.wst.internet/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.server" api-count="483" test-coverage-count="333" missing-coverage-count="150" ref="./org.eclipse.wst.server/component-api-tc.html"/><component-api-tc name="org.eclipse.jst.j2ee.webservice" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.jst.j2ee.webservice/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.common.navigator.views" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.common.navigator.views/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.wsi" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.wsi/component-api-tc.html"/><component-api-tc name="org.eclipse.jst.common.frameworks" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.jst.common.frameworks/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.css" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.css/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.validation" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.validation/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.common.frameworks" api-count="103" test-coverage-count="102" missing-coverage-count="1" ref="./org.eclipse.wst.common.frameworks/component-api-tc.html"/><component-api-tc name="org.eclipse.jst.ws" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.jst.ws/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.ws" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.ws/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.common.migration" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.common.migration/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.xsd" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.xsd/component-api-tc.html"/></component-api-tc-summary>
\ No newline at end of file
diff --git a/archive/releng.builder/tools/apitools/api_progress/1.0/20050416/index-comp-summary.xml b/archive/releng.builder/tools/apitools/api_progress/1.0/20050416/index-comp-summary.xml
new file mode 100644
index 0000000..b9e9323
--- /dev/null
+++ b/archive/releng.builder/tools/apitools/api_progress/1.0/20050416/index-comp-summary.xml
@@ -0,0 +1 @@
+<?xml version="1.0" encoding="UTF-8"?><component-summary timestamp="20050416"><component name="org.eclipse.wst.common" ref="./org.eclipse.wst.common/component-api.xml"/><component name="org.eclipse.wst.command" ref="./org.eclipse.wst.command/component-api.xml"/><component name="org.eclipse.wst.common.componentcore" ref="./org.eclipse.wst.common.componentcore/component-api.xml"/><component name="org.eclipse.jst.jsp" ref="./org.eclipse.jst.jsp/component-api.xml"/><component name="org.eclipse.jst.server" ref="./org.eclipse.jst.server/component-api.xml"/><component name="org.eclipse.jst.j2ee.jca" ref="./org.eclipse.jst.j2ee.jca/component-api.xml"/><component name="org.eclipse.wst.xml" ref="./org.eclipse.wst.xml/component-api.xml"/><component name="org.eclipse.wst.common.snippets" ref="./org.eclipse.wst.common.snippets/component-api.xml"/><component name="org.eclipse.jst.j2ee.web" ref="./org.eclipse.jst.j2ee.web/component-api.xml"/><component name="org.eclipse.jst.j2ee.ejb" ref="./org.eclipse.jst.j2ee.ejb/component-api.xml"/><component name="org.eclipse.wst.html" ref="./org.eclipse.wst.html/component-api.xml"/><component name="org.eclipse.wst.dtd" ref="./org.eclipse.wst.dtd/component-api.xml"/><component name="org.eclipse.wst.wsdl" ref="./org.eclipse.wst.wsdl/component-api.xml"/><component name="org.eclipse.jst.j2ee.core" ref="./org.eclipse.jst.j2ee.core/component-api.xml"/><component name="org.eclipse.wst.web" ref="./org.eclipse.wst.web/component-api.xml"/><component name="org.eclipse.wst.javascript" ref="./org.eclipse.wst.javascript/component-api.xml"/><component name="org.eclipse.jst.j2ee" ref="./org.eclipse.jst.j2ee/component-api.xml"/><component name="org.eclipse.wst.sse" ref="./org.eclipse.wst.sse/component-api.xml"/><component name="wst.rdb" ref="./wst.rdb/component-api.xml"/><component name="org.eclipse.wst.common.emf" ref="./org.eclipse.wst.common.emf/component-api.xml"/><component name="org.eclipse.wst.internet" ref="./org.eclipse.wst.internet/component-api.xml"/><component name="org.eclipse.wst.server" ref="./org.eclipse.wst.server/component-api.xml"/><component name="org.eclipse.jst.j2ee.webservice" ref="./org.eclipse.jst.j2ee.webservice/component-api.xml"/><component name="org.eclipse.wst.common.navigator.views" ref="./org.eclipse.wst.common.navigator.views/component-api.xml"/><component name="org.eclipse.wst.wsi" ref="./org.eclipse.wst.wsi/component-api.xml"/><component name="org.eclipse.jst.common.frameworks" ref="./org.eclipse.jst.common.frameworks/component-api.xml"/><component name="org.eclipse.wst.css" ref="./org.eclipse.wst.css/component-api.xml"/><component name="org.eclipse.wst.validation" ref="./org.eclipse.wst.validation/component-api.xml"/><component name="org.eclipse.wst.common.frameworks" ref="./org.eclipse.wst.common.frameworks/component-api.xml"/><component name="org.eclipse.jst.ws" ref="./org.eclipse.jst.ws/component-api.xml"/><component name="org.eclipse.wst.ws" ref="./org.eclipse.wst.ws/component-api.xml"/><component name="org.eclipse.wst.common.migration" ref="./org.eclipse.wst.common.migration/component-api.xml"/><component name="org.eclipse.wst.xsd" ref="./org.eclipse.wst.xsd/component-api.xml"/></component-summary>
\ No newline at end of file
diff --git a/archive/releng.builder/tools/apitools/api_progress/1.0/20050417/index-api-javadoc.xml b/archive/releng.builder/tools/apitools/api_progress/1.0/20050417/index-api-javadoc.xml
new file mode 100644
index 0000000..b698596
--- /dev/null
+++ b/archive/releng.builder/tools/apitools/api_progress/1.0/20050417/index-api-javadoc.xml
@@ -0,0 +1 @@
+<?xml version="1.0" encoding="UTF-8"?><component-api-javadoc-summary><component-api-javadoc name="org.eclipse.wst.common" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.common/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.command" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.command/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.common.componentcore" class-api-count="17" class-javadoc-count="11" method-api-count="129" method-javadoc-count="123" field-api-count="36" field-javadoc-count="36" ref="./org.eclipse.wst.common.componentcore/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.jst.jsp" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.jst.jsp/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.jst.server" class-api-count="28" class-javadoc-count="26" method-api-count="220" method-javadoc-count="220" field-api-count="81" field-javadoc-count="81" ref="./org.eclipse.jst.server/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.jst.j2ee.jca" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.jst.j2ee.jca/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.xml" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.xml/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.jst.j2ee.web" class-api-count="4" class-javadoc-count="3" method-api-count="22" method-javadoc-count="22" field-api-count="5" field-javadoc-count="5" ref="./org.eclipse.jst.j2ee.web/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.jst.j2ee.ejb" class-api-count="5" class-javadoc-count="4" method-api-count="20" method-javadoc-count="20" field-api-count="14" field-javadoc-count="14" ref="./org.eclipse.jst.j2ee.ejb/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.common.snippets" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.common.snippets/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.html" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.html/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.dtd" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.dtd/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.wsdl" class-api-count="39" class-javadoc-count="39" method-api-count="198" method-javadoc-count="198" field-api-count="55" field-javadoc-count="55" ref="./org.eclipse.wst.wsdl/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.jst.j2ee.core" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.jst.j2ee.core/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.web" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.web/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.javascript" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.javascript/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.jst.j2ee" class-api-count="16" class-javadoc-count="13" method-api-count="35" method-javadoc-count="35" field-api-count="53" field-javadoc-count="53" ref="./org.eclipse.jst.j2ee/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.sse" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.sse/component-api-javadoc.html"/><component-api-javadoc name="wst.rdb" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./wst.rdb/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.common.emf" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.common.emf/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.internet" class-api-count="10" class-javadoc-count="9" method-api-count="62" method-javadoc-count="61" field-api-count="19" field-javadoc-count="19" ref="./org.eclipse.wst.internet/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.server" class-api-count="74" class-javadoc-count="66" method-api-count="483" method-javadoc-count="483" field-api-count="70" field-javadoc-count="63" ref="./org.eclipse.wst.server/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.jst.j2ee.webservice" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.jst.j2ee.webservice/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.common.navigator.views" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.common.navigator.views/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.wsi" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.wsi/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.jst.common.frameworks" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.jst.common.frameworks/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.css" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.css/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.common.frameworks" class-api-count="11" class-javadoc-count="11" method-api-count="103" method-javadoc-count="103" field-api-count="15" field-javadoc-count="15" ref="./org.eclipse.wst.common.frameworks/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.validation" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.validation/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.ws" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.ws/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.jst.ws" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.jst.ws/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.common.migration" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.common.migration/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.xsd" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.xsd/component-api-javadoc.html"/></component-api-javadoc-summary>
\ No newline at end of file
diff --git a/archive/releng.builder/tools/apitools/api_progress/1.0/20050417/index-api-tc.xml b/archive/releng.builder/tools/apitools/api_progress/1.0/20050417/index-api-tc.xml
new file mode 100644
index 0000000..1a3ce53
--- /dev/null
+++ b/archive/releng.builder/tools/apitools/api_progress/1.0/20050417/index-api-tc.xml
@@ -0,0 +1 @@
+<?xml version="1.0" encoding="UTF-8"?><component-api-tc-summary timestamp="20050417"><component-api-tc name="org.eclipse.wst.common" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.common/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.command" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.command/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.common.componentcore" api-count="129" test-coverage-count="120" missing-coverage-count="9" ref="./org.eclipse.wst.common.componentcore/component-api-tc.html"/><component-api-tc name="org.eclipse.jst.jsp" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.jst.jsp/component-api-tc.html"/><component-api-tc name="org.eclipse.jst.server" api-count="220" test-coverage-count="89" missing-coverage-count="131" ref="./org.eclipse.jst.server/component-api-tc.html"/><component-api-tc name="org.eclipse.jst.j2ee.jca" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.jst.j2ee.jca/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.xml" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.xml/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.common.snippets" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.common.snippets/component-api-tc.html"/><component-api-tc name="org.eclipse.jst.j2ee.web" api-count="22" test-coverage-count="21" missing-coverage-count="1" ref="./org.eclipse.jst.j2ee.web/component-api-tc.html"/><component-api-tc name="org.eclipse.jst.j2ee.ejb" api-count="20" test-coverage-count="19" missing-coverage-count="1" ref="./org.eclipse.jst.j2ee.ejb/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.html" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.html/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.dtd" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.dtd/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.wsdl" api-count="198" test-coverage-count="171" missing-coverage-count="27" ref="./org.eclipse.wst.wsdl/component-api-tc.html"/><component-api-tc name="org.eclipse.jst.j2ee.core" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.jst.j2ee.core/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.web" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.web/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.javascript" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.javascript/component-api-tc.html"/><component-api-tc name="org.eclipse.jst.j2ee" api-count="35" test-coverage-count="33" missing-coverage-count="2" ref="./org.eclipse.jst.j2ee/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.sse" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.sse/component-api-tc.html"/><component-api-tc name="wst.rdb" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./wst.rdb/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.common.emf" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.common.emf/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.internet" api-count="62" test-coverage-count="55" missing-coverage-count="7" ref="./org.eclipse.wst.internet/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.server" api-count="483" test-coverage-count="333" missing-coverage-count="150" ref="./org.eclipse.wst.server/component-api-tc.html"/><component-api-tc name="org.eclipse.jst.j2ee.webservice" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.jst.j2ee.webservice/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.common.navigator.views" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.common.navigator.views/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.wsi" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.wsi/component-api-tc.html"/><component-api-tc name="org.eclipse.jst.common.frameworks" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.jst.common.frameworks/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.css" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.css/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.validation" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.validation/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.common.frameworks" api-count="103" test-coverage-count="102" missing-coverage-count="1" ref="./org.eclipse.wst.common.frameworks/component-api-tc.html"/><component-api-tc name="org.eclipse.jst.ws" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.jst.ws/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.ws" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.ws/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.common.migration" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.common.migration/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.xsd" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.xsd/component-api-tc.html"/></component-api-tc-summary>
\ No newline at end of file
diff --git a/archive/releng.builder/tools/apitools/api_progress/1.0/20050417/index-comp-summary.xml b/archive/releng.builder/tools/apitools/api_progress/1.0/20050417/index-comp-summary.xml
new file mode 100644
index 0000000..e2b949f
--- /dev/null
+++ b/archive/releng.builder/tools/apitools/api_progress/1.0/20050417/index-comp-summary.xml
@@ -0,0 +1 @@
+<?xml version="1.0" encoding="UTF-8"?><component-summary timestamp="20050417"><component name="org.eclipse.wst.common" ref="./org.eclipse.wst.common/component-api.xml"/><component name="org.eclipse.wst.command" ref="./org.eclipse.wst.command/component-api.xml"/><component name="org.eclipse.wst.common.componentcore" ref="./org.eclipse.wst.common.componentcore/component-api.xml"/><component name="org.eclipse.jst.jsp" ref="./org.eclipse.jst.jsp/component-api.xml"/><component name="org.eclipse.jst.server" ref="./org.eclipse.jst.server/component-api.xml"/><component name="org.eclipse.jst.j2ee.jca" ref="./org.eclipse.jst.j2ee.jca/component-api.xml"/><component name="org.eclipse.wst.xml" ref="./org.eclipse.wst.xml/component-api.xml"/><component name="org.eclipse.wst.common.snippets" ref="./org.eclipse.wst.common.snippets/component-api.xml"/><component name="org.eclipse.jst.j2ee.web" ref="./org.eclipse.jst.j2ee.web/component-api.xml"/><component name="org.eclipse.jst.j2ee.ejb" ref="./org.eclipse.jst.j2ee.ejb/component-api.xml"/><component name="org.eclipse.wst.html" ref="./org.eclipse.wst.html/component-api.xml"/><component name="org.eclipse.wst.dtd" ref="./org.eclipse.wst.dtd/component-api.xml"/><component name="org.eclipse.wst.wsdl" ref="./org.eclipse.wst.wsdl/component-api.xml"/><component name="org.eclipse.jst.j2ee.core" ref="./org.eclipse.jst.j2ee.core/component-api.xml"/><component name="org.eclipse.wst.web" ref="./org.eclipse.wst.web/component-api.xml"/><component name="org.eclipse.wst.javascript" ref="./org.eclipse.wst.javascript/component-api.xml"/><component name="org.eclipse.jst.j2ee" ref="./org.eclipse.jst.j2ee/component-api.xml"/><component name="org.eclipse.wst.sse" ref="./org.eclipse.wst.sse/component-api.xml"/><component name="wst.rdb" ref="./wst.rdb/component-api.xml"/><component name="org.eclipse.wst.common.emf" ref="./org.eclipse.wst.common.emf/component-api.xml"/><component name="org.eclipse.wst.internet" ref="./org.eclipse.wst.internet/component-api.xml"/><component name="org.eclipse.wst.server" ref="./org.eclipse.wst.server/component-api.xml"/><component name="org.eclipse.jst.j2ee.webservice" ref="./org.eclipse.jst.j2ee.webservice/component-api.xml"/><component name="org.eclipse.wst.common.navigator.views" ref="./org.eclipse.wst.common.navigator.views/component-api.xml"/><component name="org.eclipse.wst.wsi" ref="./org.eclipse.wst.wsi/component-api.xml"/><component name="org.eclipse.jst.common.frameworks" ref="./org.eclipse.jst.common.frameworks/component-api.xml"/><component name="org.eclipse.wst.css" ref="./org.eclipse.wst.css/component-api.xml"/><component name="org.eclipse.wst.validation" ref="./org.eclipse.wst.validation/component-api.xml"/><component name="org.eclipse.wst.common.frameworks" ref="./org.eclipse.wst.common.frameworks/component-api.xml"/><component name="org.eclipse.jst.ws" ref="./org.eclipse.jst.ws/component-api.xml"/><component name="org.eclipse.wst.ws" ref="./org.eclipse.wst.ws/component-api.xml"/><component name="org.eclipse.wst.common.migration" ref="./org.eclipse.wst.common.migration/component-api.xml"/><component name="org.eclipse.wst.xsd" ref="./org.eclipse.wst.xsd/component-api.xml"/></component-summary>
\ No newline at end of file
diff --git a/archive/releng.builder/tools/apitools/api_progress/1.0/20050505/index-api-javadoc.xml b/archive/releng.builder/tools/apitools/api_progress/1.0/20050505/index-api-javadoc.xml
new file mode 100644
index 0000000..611a9f1
--- /dev/null
+++ b/archive/releng.builder/tools/apitools/api_progress/1.0/20050505/index-api-javadoc.xml
@@ -0,0 +1 @@
+<?xml version="1.0" encoding="UTF-8"?><component-api-javadoc-summary><component-api-javadoc name="org.eclipse.wst.common" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.common/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.command" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.command/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.common.componentcore" class-api-count="17" class-javadoc-count="11" method-api-count="106" method-javadoc-count="99" field-api-count="34" field-javadoc-count="34" ref="./org.eclipse.wst.common.componentcore/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.jst.jsp" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.jst.jsp/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.jst.server" class-api-count="26" class-javadoc-count="24" method-api-count="109" method-javadoc-count="109" field-api-count="3" field-javadoc-count="3" ref="./org.eclipse.jst.server/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.jst.j2ee.jca" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.jst.j2ee.jca/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.xml" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.xml/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.jst.j2ee.web" class-api-count="4" class-javadoc-count="3" method-api-count="22" method-javadoc-count="22" field-api-count="8" field-javadoc-count="8" ref="./org.eclipse.jst.j2ee.web/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.jst.j2ee.ejb" class-api-count="5" class-javadoc-count="4" method-api-count="20" method-javadoc-count="20" field-api-count="14" field-javadoc-count="14" ref="./org.eclipse.jst.j2ee.ejb/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.common.snippets" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.common.snippets/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.html" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.html/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.dtd" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.dtd/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.wsdl" class-api-count="39" class-javadoc-count="39" method-api-count="196" method-javadoc-count="196" field-api-count="55" field-javadoc-count="55" ref="./org.eclipse.wst.wsdl/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.jst.j2ee.core" class-api-count="214" class-javadoc-count="108" method-api-count="1581" method-javadoc-count="1491" field-api-count="229" field-javadoc-count="217" ref="./org.eclipse.jst.j2ee.core/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.web" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.web/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.javascript" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.javascript/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.jst.j2ee" class-api-count="16" class-javadoc-count="13" method-api-count="35" method-javadoc-count="35" field-api-count="53" field-javadoc-count="53" ref="./org.eclipse.jst.j2ee/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.sse" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.sse/component-api-javadoc.html"/><component-api-javadoc name="wst.rdb" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./wst.rdb/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.common.emf" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.common.emf/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.internet" class-api-count="7" class-javadoc-count="7" method-api-count="56" method-javadoc-count="56" field-api-count="14" field-javadoc-count="14" ref="./org.eclipse.wst.internet/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.server" class-api-count="60" class-javadoc-count="60" method-api-count="426" method-javadoc-count="426" field-api-count="63" field-javadoc-count="63" ref="./org.eclipse.wst.server/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.jst.j2ee.webservice" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.jst.j2ee.webservice/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.common.navigator.views" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.common.navigator.views/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.wsi" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.wsi/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.jst.common.frameworks" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.jst.common.frameworks/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.css" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.css/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.common.frameworks" class-api-count="11" class-javadoc-count="11" method-api-count="103" method-javadoc-count="103" field-api-count="15" field-javadoc-count="15" ref="./org.eclipse.wst.common.frameworks/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.validation" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.validation/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.ws" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.ws/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.jst.ws" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.jst.ws/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.common.migration" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.common.migration/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.xsd" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.xsd/component-api-javadoc.html"/></component-api-javadoc-summary>
\ No newline at end of file
diff --git a/archive/releng.builder/tools/apitools/api_progress/1.0/20050505/index-api-tc.xml b/archive/releng.builder/tools/apitools/api_progress/1.0/20050505/index-api-tc.xml
new file mode 100644
index 0000000..7d49682
--- /dev/null
+++ b/archive/releng.builder/tools/apitools/api_progress/1.0/20050505/index-api-tc.xml
@@ -0,0 +1 @@
+<?xml version="1.0" encoding="UTF-8"?><component-api-tc-summary timestamp="20050505"><component-api-tc name="org.eclipse.wst.common" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.common/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.command" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.command/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.common.componentcore" api-count="106" test-coverage-count="92" missing-coverage-count="14" ref="./org.eclipse.wst.common.componentcore/component-api-tc.html"/><component-api-tc name="org.eclipse.jst.jsp" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.jst.jsp/component-api-tc.html"/><component-api-tc name="org.eclipse.jst.server" api-count="109" test-coverage-count="108" missing-coverage-count="1" ref="./org.eclipse.jst.server/component-api-tc.html"/><component-api-tc name="org.eclipse.jst.j2ee.jca" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.jst.j2ee.jca/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.xml" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.xml/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.common.snippets" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.common.snippets/component-api-tc.html"/><component-api-tc name="org.eclipse.jst.j2ee.web" api-count="22" test-coverage-count="21" missing-coverage-count="1" ref="./org.eclipse.jst.j2ee.web/component-api-tc.html"/><component-api-tc name="org.eclipse.jst.j2ee.ejb" api-count="20" test-coverage-count="19" missing-coverage-count="1" ref="./org.eclipse.jst.j2ee.ejb/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.html" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.html/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.dtd" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.dtd/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.wsdl" api-count="196" test-coverage-count="178" missing-coverage-count="18" ref="./org.eclipse.wst.wsdl/component-api-tc.html"/><component-api-tc name="org.eclipse.jst.j2ee.core" api-count="1581" test-coverage-count="443" missing-coverage-count="1138" ref="./org.eclipse.jst.j2ee.core/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.web" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.web/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.javascript" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.javascript/component-api-tc.html"/><component-api-tc name="org.eclipse.jst.j2ee" api-count="35" test-coverage-count="33" missing-coverage-count="2" ref="./org.eclipse.jst.j2ee/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.sse" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.sse/component-api-tc.html"/><component-api-tc name="wst.rdb" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./wst.rdb/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.common.emf" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.common.emf/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.internet" api-count="56" test-coverage-count="52" missing-coverage-count="4" ref="./org.eclipse.wst.internet/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.server" api-count="426" test-coverage-count="378" missing-coverage-count="48" ref="./org.eclipse.wst.server/component-api-tc.html"/><component-api-tc name="org.eclipse.jst.j2ee.webservice" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.jst.j2ee.webservice/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.common.navigator.views" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.common.navigator.views/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.wsi" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.wsi/component-api-tc.html"/><component-api-tc name="org.eclipse.jst.common.frameworks" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.jst.common.frameworks/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.css" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.css/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.validation" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.validation/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.common.frameworks" api-count="103" test-coverage-count="102" missing-coverage-count="1" ref="./org.eclipse.wst.common.frameworks/component-api-tc.html"/><component-api-tc name="org.eclipse.jst.ws" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.jst.ws/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.ws" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.ws/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.common.migration" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.common.migration/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.xsd" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.xsd/component-api-tc.html"/></component-api-tc-summary>
\ No newline at end of file
diff --git a/archive/releng.builder/tools/apitools/api_progress/1.0/20050505/index-comp-summary.xml b/archive/releng.builder/tools/apitools/api_progress/1.0/20050505/index-comp-summary.xml
new file mode 100644
index 0000000..81d1b7e
--- /dev/null
+++ b/archive/releng.builder/tools/apitools/api_progress/1.0/20050505/index-comp-summary.xml
@@ -0,0 +1 @@
+<?xml version="1.0" encoding="UTF-8"?><component-summary timestamp="20050505"><component name="org.eclipse.wst.common" ref="./org.eclipse.wst.common/component-api.xml"/><component name="org.eclipse.wst.command" ref="./org.eclipse.wst.command/component-api.xml"/><component name="org.eclipse.wst.common.componentcore" ref="./org.eclipse.wst.common.componentcore/component-api.xml"/><component name="org.eclipse.jst.jsp" ref="./org.eclipse.jst.jsp/component-api.xml"/><component name="org.eclipse.jst.server" ref="./org.eclipse.jst.server/component-api.xml"/><component name="org.eclipse.jst.j2ee.jca" ref="./org.eclipse.jst.j2ee.jca/component-api.xml"/><component name="org.eclipse.wst.xml" ref="./org.eclipse.wst.xml/component-api.xml"/><component name="org.eclipse.wst.common.snippets" ref="./org.eclipse.wst.common.snippets/component-api.xml"/><component name="org.eclipse.jst.j2ee.web" ref="./org.eclipse.jst.j2ee.web/component-api.xml"/><component name="org.eclipse.jst.j2ee.ejb" ref="./org.eclipse.jst.j2ee.ejb/component-api.xml"/><component name="org.eclipse.wst.html" ref="./org.eclipse.wst.html/component-api.xml"/><component name="org.eclipse.wst.dtd" ref="./org.eclipse.wst.dtd/component-api.xml"/><component name="org.eclipse.wst.wsdl" ref="./org.eclipse.wst.wsdl/component-api.xml"/><component name="org.eclipse.jst.j2ee.core" ref="./org.eclipse.jst.j2ee.core/component-api.xml"/><component name="org.eclipse.wst.web" ref="./org.eclipse.wst.web/component-api.xml"/><component name="org.eclipse.wst.javascript" ref="./org.eclipse.wst.javascript/component-api.xml"/><component name="org.eclipse.jst.j2ee" ref="./org.eclipse.jst.j2ee/component-api.xml"/><component name="org.eclipse.wst.sse" ref="./org.eclipse.wst.sse/component-api.xml"/><component name="wst.rdb" ref="./wst.rdb/component-api.xml"/><component name="org.eclipse.wst.common.emf" ref="./org.eclipse.wst.common.emf/component-api.xml"/><component name="org.eclipse.wst.internet" ref="./org.eclipse.wst.internet/component-api.xml"/><component name="org.eclipse.wst.server" ref="./org.eclipse.wst.server/component-api.xml"/><component name="org.eclipse.jst.j2ee.webservice" ref="./org.eclipse.jst.j2ee.webservice/component-api.xml"/><component name="org.eclipse.wst.common.navigator.views" ref="./org.eclipse.wst.common.navigator.views/component-api.xml"/><component name="org.eclipse.wst.wsi" ref="./org.eclipse.wst.wsi/component-api.xml"/><component name="org.eclipse.jst.common.frameworks" ref="./org.eclipse.jst.common.frameworks/component-api.xml"/><component name="org.eclipse.wst.css" ref="./org.eclipse.wst.css/component-api.xml"/><component name="org.eclipse.wst.validation" ref="./org.eclipse.wst.validation/component-api.xml"/><component name="org.eclipse.wst.common.frameworks" ref="./org.eclipse.wst.common.frameworks/component-api.xml"/><component name="org.eclipse.jst.ws" ref="./org.eclipse.jst.ws/component-api.xml"/><component name="org.eclipse.wst.ws" ref="./org.eclipse.wst.ws/component-api.xml"/><component name="org.eclipse.wst.common.migration" ref="./org.eclipse.wst.common.migration/component-api.xml"/><component name="org.eclipse.wst.xsd" ref="./org.eclipse.wst.xsd/component-api.xml"/></component-summary>
\ No newline at end of file
diff --git a/archive/releng.builder/tools/apitools/api_progress/1.0/20050513/index-api-javadoc.xml b/archive/releng.builder/tools/apitools/api_progress/1.0/20050513/index-api-javadoc.xml
new file mode 100644
index 0000000..774cc47
--- /dev/null
+++ b/archive/releng.builder/tools/apitools/api_progress/1.0/20050513/index-api-javadoc.xml
@@ -0,0 +1 @@
+<?xml version="1.0" encoding="UTF-8"?><component-api-javadoc-summary><component-api-javadoc name="org.eclipse.wst.common" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.common/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.command" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.command/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.common.componentcore" class-api-count="17" class-javadoc-count="10" method-api-count="107" method-javadoc-count="100" field-api-count="36" field-javadoc-count="36" ref="./org.eclipse.wst.common.componentcore/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.jst.jsp" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.jst.jsp/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.jst.server" class-api-count="26" class-javadoc-count="24" method-api-count="109" method-javadoc-count="109" field-api-count="3" field-javadoc-count="3" ref="./org.eclipse.jst.server/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.jst.j2ee.jca" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.jst.j2ee.jca/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.xml" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.xml/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.jst.j2ee.web" class-api-count="4" class-javadoc-count="3" method-api-count="22" method-javadoc-count="22" field-api-count="8" field-javadoc-count="8" ref="./org.eclipse.jst.j2ee.web/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.jst.j2ee.ejb" class-api-count="5" class-javadoc-count="4" method-api-count="20" method-javadoc-count="20" field-api-count="15" field-javadoc-count="15" ref="./org.eclipse.jst.j2ee.ejb/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.common.snippets" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.common.snippets/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.html" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.html/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.dtd" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.dtd/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.wsdl" class-api-count="39" class-javadoc-count="39" method-api-count="196" method-javadoc-count="196" field-api-count="55" field-javadoc-count="55" ref="./org.eclipse.wst.wsdl/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.jst.j2ee.core" class-api-count="214" class-javadoc-count="108" method-api-count="1581" method-javadoc-count="1491" field-api-count="229" field-javadoc-count="217" ref="./org.eclipse.jst.j2ee.core/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.web" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.web/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.javascript" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.javascript/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.jst.j2ee" class-api-count="16" class-javadoc-count="13" method-api-count="38" method-javadoc-count="38" field-api-count="54" field-javadoc-count="54" ref="./org.eclipse.jst.j2ee/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.sse" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.sse/component-api-javadoc.html"/><component-api-javadoc name="wst.rdb" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./wst.rdb/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.common.emf" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.common.emf/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.internet" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.internet/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.server" class-api-count="56" class-javadoc-count="56" method-api-count="409" method-javadoc-count="409" field-api-count="56" field-javadoc-count="56" ref="./org.eclipse.wst.server/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.jst.j2ee.webservice" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.jst.j2ee.webservice/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.common.navigator.views" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.common.navigator.views/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.wsi" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.wsi/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.jst.common.frameworks" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.jst.common.frameworks/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.css" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.css/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.common.frameworks" class-api-count="11" class-javadoc-count="11" method-api-count="103" method-javadoc-count="103" field-api-count="15" field-javadoc-count="15" ref="./org.eclipse.wst.common.frameworks/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.validation" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.validation/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.ws" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.ws/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.jst.ws" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.jst.ws/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.common.migration" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.common.migration/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.xsd" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.xsd/component-api-javadoc.html"/></component-api-javadoc-summary>
\ No newline at end of file
diff --git a/archive/releng.builder/tools/apitools/api_progress/1.0/20050513/index-api-tc.xml b/archive/releng.builder/tools/apitools/api_progress/1.0/20050513/index-api-tc.xml
new file mode 100644
index 0000000..f6678f5
--- /dev/null
+++ b/archive/releng.builder/tools/apitools/api_progress/1.0/20050513/index-api-tc.xml
@@ -0,0 +1 @@
+<?xml version="1.0" encoding="UTF-8"?><component-api-tc-summary timestamp="20050513"><component-api-tc name="org.eclipse.wst.common" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.common/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.command" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.command/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.common.componentcore" api-count="107" test-coverage-count="92" missing-coverage-count="15" ref="./org.eclipse.wst.common.componentcore/component-api-tc.html"/><component-api-tc name="org.eclipse.jst.jsp" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.jst.jsp/component-api-tc.html"/><component-api-tc name="org.eclipse.jst.server" api-count="109" test-coverage-count="108" missing-coverage-count="1" ref="./org.eclipse.jst.server/component-api-tc.html"/><component-api-tc name="org.eclipse.jst.j2ee.jca" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.jst.j2ee.jca/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.xml" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.xml/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.common.snippets" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.common.snippets/component-api-tc.html"/><component-api-tc name="org.eclipse.jst.j2ee.web" api-count="22" test-coverage-count="21" missing-coverage-count="1" ref="./org.eclipse.jst.j2ee.web/component-api-tc.html"/><component-api-tc name="org.eclipse.jst.j2ee.ejb" api-count="20" test-coverage-count="19" missing-coverage-count="1" ref="./org.eclipse.jst.j2ee.ejb/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.html" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.html/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.dtd" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.dtd/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.wsdl" api-count="196" test-coverage-count="178" missing-coverage-count="18" ref="./org.eclipse.wst.wsdl/component-api-tc.html"/><component-api-tc name="org.eclipse.jst.j2ee.core" api-count="1581" test-coverage-count="352" missing-coverage-count="1229" ref="./org.eclipse.jst.j2ee.core/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.web" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.web/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.javascript" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.javascript/component-api-tc.html"/><component-api-tc name="org.eclipse.jst.j2ee" api-count="38" test-coverage-count="33" missing-coverage-count="5" ref="./org.eclipse.jst.j2ee/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.sse" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.sse/component-api-tc.html"/><component-api-tc name="wst.rdb" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./wst.rdb/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.common.emf" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.common.emf/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.internet" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.internet/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.server" api-count="409" test-coverage-count="358" missing-coverage-count="51" ref="./org.eclipse.wst.server/component-api-tc.html"/><component-api-tc name="org.eclipse.jst.j2ee.webservice" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.jst.j2ee.webservice/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.common.navigator.views" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.common.navigator.views/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.wsi" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.wsi/component-api-tc.html"/><component-api-tc name="org.eclipse.jst.common.frameworks" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.jst.common.frameworks/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.css" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.css/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.validation" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.validation/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.common.frameworks" api-count="103" test-coverage-count="102" missing-coverage-count="1" ref="./org.eclipse.wst.common.frameworks/component-api-tc.html"/><component-api-tc name="org.eclipse.jst.ws" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.jst.ws/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.ws" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.ws/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.common.migration" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.common.migration/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.xsd" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.xsd/component-api-tc.html"/></component-api-tc-summary>
\ No newline at end of file
diff --git a/archive/releng.builder/tools/apitools/api_progress/1.0/20050513/index-comp-summary.xml b/archive/releng.builder/tools/apitools/api_progress/1.0/20050513/index-comp-summary.xml
new file mode 100644
index 0000000..39f2642
--- /dev/null
+++ b/archive/releng.builder/tools/apitools/api_progress/1.0/20050513/index-comp-summary.xml
@@ -0,0 +1 @@
+<?xml version="1.0" encoding="UTF-8"?><component-summary timestamp="20050513"><component name="org.eclipse.wst.common" ref="./org.eclipse.wst.common/component-api.xml"/><component name="org.eclipse.wst.command" ref="./org.eclipse.wst.command/component-api.xml"/><component name="org.eclipse.wst.common.componentcore" ref="./org.eclipse.wst.common.componentcore/component-api.xml"/><component name="org.eclipse.jst.jsp" ref="./org.eclipse.jst.jsp/component-api.xml"/><component name="org.eclipse.jst.server" ref="./org.eclipse.jst.server/component-api.xml"/><component name="org.eclipse.jst.j2ee.jca" ref="./org.eclipse.jst.j2ee.jca/component-api.xml"/><component name="org.eclipse.wst.xml" ref="./org.eclipse.wst.xml/component-api.xml"/><component name="org.eclipse.wst.common.snippets" ref="./org.eclipse.wst.common.snippets/component-api.xml"/><component name="org.eclipse.jst.j2ee.web" ref="./org.eclipse.jst.j2ee.web/component-api.xml"/><component name="org.eclipse.jst.j2ee.ejb" ref="./org.eclipse.jst.j2ee.ejb/component-api.xml"/><component name="org.eclipse.wst.html" ref="./org.eclipse.wst.html/component-api.xml"/><component name="org.eclipse.wst.dtd" ref="./org.eclipse.wst.dtd/component-api.xml"/><component name="org.eclipse.wst.wsdl" ref="./org.eclipse.wst.wsdl/component-api.xml"/><component name="org.eclipse.jst.j2ee.core" ref="./org.eclipse.jst.j2ee.core/component-api.xml"/><component name="org.eclipse.wst.web" ref="./org.eclipse.wst.web/component-api.xml"/><component name="org.eclipse.wst.javascript" ref="./org.eclipse.wst.javascript/component-api.xml"/><component name="org.eclipse.jst.j2ee" ref="./org.eclipse.jst.j2ee/component-api.xml"/><component name="org.eclipse.wst.sse" ref="./org.eclipse.wst.sse/component-api.xml"/><component name="wst.rdb" ref="./wst.rdb/component-api.xml"/><component name="org.eclipse.wst.common.emf" ref="./org.eclipse.wst.common.emf/component-api.xml"/><component name="org.eclipse.wst.internet" ref="./org.eclipse.wst.internet/component-api.xml"/><component name="org.eclipse.wst.server" ref="./org.eclipse.wst.server/component-api.xml"/><component name="org.eclipse.jst.j2ee.webservice" ref="./org.eclipse.jst.j2ee.webservice/component-api.xml"/><component name="org.eclipse.wst.common.navigator.views" ref="./org.eclipse.wst.common.navigator.views/component-api.xml"/><component name="org.eclipse.wst.wsi" ref="./org.eclipse.wst.wsi/component-api.xml"/><component name="org.eclipse.jst.common.frameworks" ref="./org.eclipse.jst.common.frameworks/component-api.xml"/><component name="org.eclipse.wst.css" ref="./org.eclipse.wst.css/component-api.xml"/><component name="org.eclipse.wst.validation" ref="./org.eclipse.wst.validation/component-api.xml"/><component name="org.eclipse.wst.common.frameworks" ref="./org.eclipse.wst.common.frameworks/component-api.xml"/><component name="org.eclipse.jst.ws" ref="./org.eclipse.jst.ws/component-api.xml"/><component name="org.eclipse.wst.ws" ref="./org.eclipse.wst.ws/component-api.xml"/><component name="org.eclipse.wst.common.migration" ref="./org.eclipse.wst.common.migration/component-api.xml"/><component name="org.eclipse.wst.xsd" ref="./org.eclipse.wst.xsd/component-api.xml"/></component-summary>
\ No newline at end of file
diff --git a/archive/releng.builder/tools/apitools/api_progress/1.0/20050517/index-api-javadoc.xml b/archive/releng.builder/tools/apitools/api_progress/1.0/20050517/index-api-javadoc.xml
new file mode 100644
index 0000000..4b993cd
--- /dev/null
+++ b/archive/releng.builder/tools/apitools/api_progress/1.0/20050517/index-api-javadoc.xml
@@ -0,0 +1 @@
+<?xml version="1.0" encoding="UTF-8"?><component-api-javadoc-summary><component-api-javadoc name="org.eclipse.wst.common" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.common/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.command" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.command/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.common.componentcore" class-api-count="17" class-javadoc-count="16" method-api-count="109" method-javadoc-count="107" field-api-count="36" field-javadoc-count="36" ref="./org.eclipse.wst.common.componentcore/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.jst.jsp" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.jst.jsp/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.jst.server" class-api-count="26" class-javadoc-count="24" method-api-count="109" method-javadoc-count="109" field-api-count="3" field-javadoc-count="3" ref="./org.eclipse.jst.server/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.jst.j2ee.jca" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.jst.j2ee.jca/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.xml" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.xml/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.jst.j2ee.web" class-api-count="4" class-javadoc-count="3" method-api-count="22" method-javadoc-count="22" field-api-count="8" field-javadoc-count="8" ref="./org.eclipse.jst.j2ee.web/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.jst.j2ee.ejb" class-api-count="5" class-javadoc-count="4" method-api-count="20" method-javadoc-count="20" field-api-count="15" field-javadoc-count="15" ref="./org.eclipse.jst.j2ee.ejb/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.common.snippets" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.common.snippets/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.html" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.html/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.dtd" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.dtd/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.wsdl" class-api-count="40" class-javadoc-count="40" method-api-count="197" method-javadoc-count="197" field-api-count="55" field-javadoc-count="55" ref="./org.eclipse.wst.wsdl/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.jst.j2ee.core" class-api-count="214" class-javadoc-count="108" method-api-count="1581" method-javadoc-count="1491" field-api-count="229" field-javadoc-count="217" ref="./org.eclipse.jst.j2ee.core/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.web" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.web/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.javascript" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.javascript/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.jst.j2ee" class-api-count="16" class-javadoc-count="13" method-api-count="36" method-javadoc-count="36" field-api-count="55" field-javadoc-count="55" ref="./org.eclipse.jst.j2ee/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.sse" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.sse/component-api-javadoc.html"/><component-api-javadoc name="wst.rdb" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./wst.rdb/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.common.emf" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.common.emf/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.internet" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.internet/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.server" class-api-count="56" class-javadoc-count="56" method-api-count="409" method-javadoc-count="409" field-api-count="56" field-javadoc-count="56" ref="./org.eclipse.wst.server/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.jst.j2ee.webservice" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.jst.j2ee.webservice/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.common.navigator.views" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.common.navigator.views/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.wsi" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.wsi/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.jst.common.frameworks" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.jst.common.frameworks/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.css" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.css/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.common.frameworks" class-api-count="11" class-javadoc-count="11" method-api-count="103" method-javadoc-count="103" field-api-count="15" field-javadoc-count="15" ref="./org.eclipse.wst.common.frameworks/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.validation" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.validation/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.ws" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.ws/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.jst.ws" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.jst.ws/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.common.migration" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.common.migration/component-api-javadoc.html"/><component-api-javadoc name="org.eclipse.wst.xsd" class-api-count="0" class-javadoc-count="0" method-api-count="0" method-javadoc-count="0" field-api-count="0" field-javadoc-count="0" ref="./org.eclipse.wst.xsd/component-api-javadoc.html"/></component-api-javadoc-summary>
\ No newline at end of file
diff --git a/archive/releng.builder/tools/apitools/api_progress/1.0/20050517/index-api-tc.xml b/archive/releng.builder/tools/apitools/api_progress/1.0/20050517/index-api-tc.xml
new file mode 100644
index 0000000..2bdc0b0
--- /dev/null
+++ b/archive/releng.builder/tools/apitools/api_progress/1.0/20050517/index-api-tc.xml
@@ -0,0 +1 @@
+<?xml version="1.0" encoding="UTF-8"?><component-api-tc-summary timestamp="20050517"><component-api-tc name="org.eclipse.wst.common" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.common/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.command" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.command/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.common.componentcore" api-count="109" test-coverage-count="98" missing-coverage-count="11" ref="./org.eclipse.wst.common.componentcore/component-api-tc.html"/><component-api-tc name="org.eclipse.jst.jsp" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.jst.jsp/component-api-tc.html"/><component-api-tc name="org.eclipse.jst.server" api-count="109" test-coverage-count="108" missing-coverage-count="1" ref="./org.eclipse.jst.server/component-api-tc.html"/><component-api-tc name="org.eclipse.jst.j2ee.jca" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.jst.j2ee.jca/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.xml" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.xml/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.common.snippets" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.common.snippets/component-api-tc.html"/><component-api-tc name="org.eclipse.jst.j2ee.web" api-count="22" test-coverage-count="22" missing-coverage-count="0" ref="./org.eclipse.jst.j2ee.web/component-api-tc.html"/><component-api-tc name="org.eclipse.jst.j2ee.ejb" api-count="20" test-coverage-count="20" missing-coverage-count="0" ref="./org.eclipse.jst.j2ee.ejb/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.html" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.html/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.dtd" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.dtd/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.wsdl" api-count="197" test-coverage-count="193" missing-coverage-count="4" ref="./org.eclipse.wst.wsdl/component-api-tc.html"/><component-api-tc name="org.eclipse.jst.j2ee.core" api-count="1581" test-coverage-count="1206" missing-coverage-count="375" ref="./org.eclipse.jst.j2ee.core/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.web" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.web/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.javascript" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.javascript/component-api-tc.html"/><component-api-tc name="org.eclipse.jst.j2ee" api-count="36" test-coverage-count="36" missing-coverage-count="0" ref="./org.eclipse.jst.j2ee/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.sse" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.sse/component-api-tc.html"/><component-api-tc name="wst.rdb" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./wst.rdb/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.common.emf" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.common.emf/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.internet" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.internet/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.server" api-count="409" test-coverage-count="406" missing-coverage-count="3" ref="./org.eclipse.wst.server/component-api-tc.html"/><component-api-tc name="org.eclipse.jst.j2ee.webservice" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.jst.j2ee.webservice/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.common.navigator.views" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.common.navigator.views/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.wsi" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.wsi/component-api-tc.html"/><component-api-tc name="org.eclipse.jst.common.frameworks" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.jst.common.frameworks/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.css" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.css/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.validation" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.validation/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.common.frameworks" api-count="103" test-coverage-count="102" missing-coverage-count="1" ref="./org.eclipse.wst.common.frameworks/component-api-tc.html"/><component-api-tc name="org.eclipse.jst.ws" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.jst.ws/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.ws" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.ws/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.common.migration" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.common.migration/component-api-tc.html"/><component-api-tc name="org.eclipse.wst.xsd" api-count="0" test-coverage-count="0" missing-coverage-count="0" ref="./org.eclipse.wst.xsd/component-api-tc.html"/></component-api-tc-summary>
\ No newline at end of file
diff --git a/archive/releng.builder/tools/apitools/api_progress/1.0/20050517/index-comp-summary.xml b/archive/releng.builder/tools/apitools/api_progress/1.0/20050517/index-comp-summary.xml
new file mode 100644
index 0000000..cdccdd0
--- /dev/null
+++ b/archive/releng.builder/tools/apitools/api_progress/1.0/20050517/index-comp-summary.xml
@@ -0,0 +1 @@
+<?xml version="1.0" encoding="UTF-8"?><component-summary timestamp="20050517"><component name="org.eclipse.wst.common" ref="./org.eclipse.wst.common/component-api.xml"/><component name="org.eclipse.wst.command" ref="./org.eclipse.wst.command/component-api.xml"/><component name="org.eclipse.wst.common.componentcore" ref="./org.eclipse.wst.common.componentcore/component-api.xml"/><component name="org.eclipse.jst.jsp" ref="./org.eclipse.jst.jsp/component-api.xml"/><component name="org.eclipse.jst.server" ref="./org.eclipse.jst.server/component-api.xml"/><component name="org.eclipse.jst.j2ee.jca" ref="./org.eclipse.jst.j2ee.jca/component-api.xml"/><component name="org.eclipse.wst.xml" ref="./org.eclipse.wst.xml/component-api.xml"/><component name="org.eclipse.wst.common.snippets" ref="./org.eclipse.wst.common.snippets/component-api.xml"/><component name="org.eclipse.jst.j2ee.web" ref="./org.eclipse.jst.j2ee.web/component-api.xml"/><component name="org.eclipse.jst.j2ee.ejb" ref="./org.eclipse.jst.j2ee.ejb/component-api.xml"/><component name="org.eclipse.wst.html" ref="./org.eclipse.wst.html/component-api.xml"/><component name="org.eclipse.wst.dtd" ref="./org.eclipse.wst.dtd/component-api.xml"/><component name="org.eclipse.wst.wsdl" ref="./org.eclipse.wst.wsdl/component-api.xml"/><component name="org.eclipse.jst.j2ee.core" ref="./org.eclipse.jst.j2ee.core/component-api.xml"/><component name="org.eclipse.wst.web" ref="./org.eclipse.wst.web/component-api.xml"/><component name="org.eclipse.wst.javascript" ref="./org.eclipse.wst.javascript/component-api.xml"/><component name="org.eclipse.jst.j2ee" ref="./org.eclipse.jst.j2ee/component-api.xml"/><component name="org.eclipse.wst.sse" ref="./org.eclipse.wst.sse/component-api.xml"/><component name="wst.rdb" ref="./wst.rdb/component-api.xml"/><component name="org.eclipse.wst.common.emf" ref="./org.eclipse.wst.common.emf/component-api.xml"/><component name="org.eclipse.wst.internet" ref="./org.eclipse.wst.internet/component-api.xml"/><component name="org.eclipse.wst.server" ref="./org.eclipse.wst.server/component-api.xml"/><component name="org.eclipse.jst.j2ee.webservice" ref="./org.eclipse.jst.j2ee.webservice/component-api.xml"/><component name="org.eclipse.wst.common.navigator.views" ref="./org.eclipse.wst.common.navigator.views/component-api.xml"/><component name="org.eclipse.wst.wsi" ref="./org.eclipse.wst.wsi/component-api.xml"/><component name="org.eclipse.jst.common.frameworks" ref="./org.eclipse.jst.common.frameworks/component-api.xml"/><component name="org.eclipse.wst.css" ref="./org.eclipse.wst.css/component-api.xml"/><component name="org.eclipse.wst.validation" ref="./org.eclipse.wst.validation/component-api.xml"/><component name="org.eclipse.wst.common.frameworks" ref="./org.eclipse.wst.common.frameworks/component-api.xml"/><component name="org.eclipse.jst.ws" ref="./org.eclipse.jst.ws/component-api.xml"/><component name="org.eclipse.wst.ws" ref="./org.eclipse.wst.ws/component-api.xml"/><component name="org.eclipse.wst.common.migration" ref="./org.eclipse.wst.common.migration/component-api.xml"/><component name="org.eclipse.wst.xsd" ref="./org.eclipse.wst.xsd/component-api.xml"/></component-summary>
\ No newline at end of file
diff --git a/archive/releng.builder/tools/apitools/api_progress/1.0_Final/index-comp-summary.xml b/archive/releng.builder/tools/apitools/api_progress/1.0_Final/index-comp-summary.xml
new file mode 100644
index 0000000..425154d
--- /dev/null
+++ b/archive/releng.builder/tools/apitools/api_progress/1.0_Final/index-comp-summary.xml
@@ -0,0 +1 @@
+<?xml version="1.0" encoding="UTF-8"?><component-summary timestamp="20050429"><component name="org.eclipse.wst.common" ref="./org.eclipse.wst.common/component-api.xml"/><component name="org.eclipse.wst.command" ref="./org.eclipse.wst.command/component-api.xml"/><component name="org.eclipse.wst.common.componentcore" ref="./org.eclipse.wst.common.componentcore/component-api.xml"/><component name="org.eclipse.jst.jsp" ref="./org.eclipse.jst.jsp/component-api.xml"/><component name="org.eclipse.jst.server" ref="./org.eclipse.jst.server/component-api.xml"/><component name="org.eclipse.jst.j2ee.jca" ref="./org.eclipse.jst.j2ee.jca/component-api.xml"/><component name="org.eclipse.wst.xml" ref="./org.eclipse.wst.xml/component-api.xml"/><component name="org.eclipse.wst.common.snippets" ref="./org.eclipse.wst.common.snippets/component-api.xml"/><component name="org.eclipse.jst.j2ee.web" ref="./org.eclipse.jst.j2ee.web/component-api.xml"/><component name="org.eclipse.jst.j2ee.ejb" ref="./org.eclipse.jst.j2ee.ejb/component-api.xml"/><component name="org.eclipse.wst.html" ref="./org.eclipse.wst.html/component-api.xml"/><component name="org.eclipse.wst.dtd" ref="./org.eclipse.wst.dtd/component-api.xml"/><component name="org.eclipse.wst.wsdl" ref="./org.eclipse.wst.wsdl/component-api.xml"/><component name="org.eclipse.jst.j2ee.core" ref="./org.eclipse.jst.j2ee.core/component-api.xml"/><component name="org.eclipse.wst.web" ref="./org.eclipse.wst.web/component-api.xml"/><component name="org.eclipse.wst.javascript" ref="./org.eclipse.wst.javascript/component-api.xml"/><component name="org.eclipse.jst.j2ee" ref="./org.eclipse.jst.j2ee/component-api.xml"/><component name="org.eclipse.wst.sse" ref="./org.eclipse.wst.sse/component-api.xml"/><component name="wst.rdb" ref="./wst.rdb/component-api.xml"/><component name="org.eclipse.wst.common.emf" ref="./org.eclipse.wst.common.emf/component-api.xml"/><component name="org.eclipse.wst.internet" ref="./org.eclipse.wst.internet/component-api.xml"/><component name="org.eclipse.wst.server" ref="./org.eclipse.wst.server/component-api.xml"/><component name="org.eclipse.jst.j2ee.webservice" ref="./org.eclipse.jst.j2ee.webservice/component-api.xml"/><component name="org.eclipse.wst.common.navigator.views" ref="./org.eclipse.wst.common.navigator.views/component-api.xml"/><component name="org.eclipse.wst.wsi" ref="./org.eclipse.wst.wsi/component-api.xml"/><component name="org.eclipse.jst.common.frameworks" ref="./org.eclipse.jst.common.frameworks/component-api.xml"/><component name="org.eclipse.wst.css" ref="./org.eclipse.wst.css/component-api.xml"/><component name="org.eclipse.wst.validation" ref="./org.eclipse.wst.validation/component-api.xml"/><component name="org.eclipse.wst.common.frameworks" ref="./org.eclipse.wst.common.frameworks/component-api.xml"/><component name="org.eclipse.jst.ws" ref="./org.eclipse.jst.ws/component-api.xml"/><component name="org.eclipse.wst.ws" ref="./org.eclipse.wst.ws/component-api.xml"/><component name="org.eclipse.wst.common.migration" ref="./org.eclipse.wst.common.migration/component-api.xml"/><component name="org.eclipse.wst.xsd" ref="./org.eclipse.wst.xsd/component-api.xml"/></component-summary>
\ No newline at end of file
diff --git a/archive/releng.builder/tools/apitools/api_progress/1.0_Final/org.eclipse.jst.common.frameworks/component-api.xml b/archive/releng.builder/tools/apitools/api_progress/1.0_Final/org.eclipse.jst.common.frameworks/component-api.xml
new file mode 100644
index 0000000..ef2b18e
--- /dev/null
+++ b/archive/releng.builder/tools/apitools/api_progress/1.0_Final/org.eclipse.jst.common.frameworks/component-api.xml
@@ -0,0 +1 @@
+<?xml version="1.0" encoding="UTF-8"?><component-api name="org.eclipse.jst.common.frameworks" timestamp="20050429"></component-api>
\ No newline at end of file
diff --git a/archive/releng.builder/tools/apitools/api_progress/1.0_Final/org.eclipse.jst.j2ee.core/component-api.xml b/archive/releng.builder/tools/apitools/api_progress/1.0_Final/org.eclipse.jst.j2ee.core/component-api.xml
new file mode 100644
index 0000000..ad74f20
--- /dev/null
+++ b/archive/releng.builder/tools/apitools/api_progress/1.0_Final/org.eclipse.jst.j2ee.core/component-api.xml
@@ -0,0 +1 @@
+<?xml version="1.0" encoding="UTF-8"?><component-api name="org.eclipse.jst.j2ee.core" timestamp="20050429"><package-api name="org.eclipse.jst.j2ee.webservice.jaxrpcmap"><class-api name="org.eclipse.jst.j2ee.webservice.jaxrpcmap.ServiceEndpointMethodMapping" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><method-api name="getId" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setId" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getJavaMethodName" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setJavaMethodName" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getWsdlOperation" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setWsdlOperation" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="isWrappedElement" descriptor="()Z" access="1025"></method-api><method-api name="setWrappedElement" descriptor="(Z)V" access="1025"></method-api><method-api name="unsetWrappedElement" descriptor="()V" access="1025"></method-api><method-api name="isSetWrappedElement" descriptor="()Z" access="1025"></method-api><method-api name="getMethodParamPartsMappings" descriptor="()Lorg/eclipse/emf/common/util/EList;" access="1025"></method-api><method-api name="getWsdlReturnValueMapping" descriptor="()Lorg/eclipse/jst/j2ee/webservice/jaxrpcmap/WSDLReturnValueMapping;" access="1025"></method-api><method-api name="setWsdlReturnValueMapping" descriptor="(Lorg/eclipse/jst/j2ee/webservice/jaxrpcmap/WSDLReturnValueMapping;)V" access="1025"></method-api></class-api><class-api name="org.eclipse.jst.j2ee.webservice.jaxrpcmap.XMLElementName" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><javadoc-coverage since="false"></javadoc-coverage><method-api name="getId" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setId" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getXmlElementName" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setXmlElementName" descriptor="(Ljava/lang/String;)V" access="1025"></method-api></class-api><class-api name="org.eclipse.jst.j2ee.webservice.jaxrpcmap.JavaVariableName" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><javadoc-coverage since="false"></javadoc-coverage><method-api name="getId" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setId" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getJavaVariableName" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setJavaVariableName" descriptor="(Ljava/lang/String;)V" access="1025"></method-api></class-api><class-api name="org.eclipse.jst.j2ee.webservice.jaxrpcmap.JaxrpcmapResource" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><javadoc-coverage since="false"></javadoc-coverage><method-api name="getJavaWSDLMapping" descriptor="()Lorg/eclipse/jst/j2ee/webservice/jaxrpcmap/JavaWSDLMapping;" access="1025"><javadoc-coverage return="false"></javadoc-coverage></method-api><method-api name="isJaxrpcmap1_0" descriptor="()Z" access="1025"><javadoc-coverage return="false"></javadoc-coverage></method-api><method-api name="isJaxrpcmap1_1" descriptor="()Z" access="1025"><javadoc-coverage return="false"></javadoc-coverage></method-api><field-api name="JAXRPC_MAP_TYPE" descriptor="I" access="25"><javadoc-coverage></javadoc-coverage></field-api></class-api><class-api name="org.eclipse.jst.j2ee.webservice.jaxrpcmap.ServiceEndpointInterfaceMapping" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><method-api name="getId" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setId" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getServiceEndpointInterface" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setServiceEndpointInterface" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getWsdlPortType" descriptor="()Lorg/eclipse/jst/j2ee/webservice/jaxrpcmap/WSDLPortType;" access="1025"></method-api><method-api name="setWsdlPortType" descriptor="(Lorg/eclipse/jst/j2ee/webservice/jaxrpcmap/WSDLPortType;)V" access="1025"></method-api><method-api name="getWsdlBinding" descriptor="()Lorg/eclipse/jst/j2ee/webservice/jaxrpcmap/WSDLBinding;" access="1025"></method-api><method-api name="setWsdlBinding" descriptor="(Lorg/eclipse/jst/j2ee/webservice/jaxrpcmap/WSDLBinding;)V" access="1025"></method-api><method-api name="getServiceEndpointMethodMappings" descriptor="()Lorg/eclipse/emf/common/util/EList;" access="1025"></method-api></class-api><class-api name="org.eclipse.jst.j2ee.webservice.jaxrpcmap.MethodReturnValue" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><javadoc-coverage since="false"></javadoc-coverage><method-api name="getId" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setId" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getMethodReturnValue" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setMethodReturnValue" descriptor="(Ljava/lang/String;)V" access="1025"></method-api></class-api><class-api name="org.eclipse.jst.j2ee.webservice.jaxrpcmap.ExceptionType" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><javadoc-coverage since="false"></javadoc-coverage><method-api name="getId" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setId" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getName" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setName" descriptor="(Ljava/lang/String;)V" access="1025"></method-api></class-api><class-api name="org.eclipse.jst.j2ee.webservice.jaxrpcmap.PackageType" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><javadoc-coverage since="false"></javadoc-coverage><method-api name="getId" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setId" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getPackageType" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setPackageType" descriptor="(Ljava/lang/String;)V" access="1025"></method-api></class-api><class-api name="org.eclipse.jst.j2ee.webservice.jaxrpcmap.ParamPosition" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><javadoc-coverage since="false"></javadoc-coverage><method-api name="getId" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setId" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getParamPosition" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setParamPosition" descriptor="(Ljava/lang/String;)V" access="1025"></method-api></class-api><class-api name="org.eclipse.jst.j2ee.webservice.jaxrpcmap.WSDLServiceName" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><javadoc-coverage since="false"></javadoc-coverage></class-api><class-api name="org.eclipse.jst.j2ee.webservice.jaxrpcmap.JaxrpcmapFactory" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><method-api name="createJavaWSDLMapping" descriptor="()Lorg/eclipse/jst/j2ee/webservice/jaxrpcmap/JavaWSDLMapping;" access="1025"></method-api><method-api name="createPackageMapping" descriptor="()Lorg/eclipse/jst/j2ee/webservice/jaxrpcmap/PackageMapping;" access="1025"></method-api><method-api name="createJavaXMLTypeMapping" descriptor="()Lorg/eclipse/jst/j2ee/webservice/jaxrpcmap/JavaXMLTypeMapping;" access="1025"></method-api><method-api name="createExceptionMapping" descriptor="()Lorg/eclipse/jst/j2ee/webservice/jaxrpcmap/ExceptionMapping;" access="1025"></method-api><method-api name="createServiceInterfaceMapping" descriptor="()Lorg/eclipse/jst/j2ee/webservice/jaxrpcmap/ServiceInterfaceMapping;" access="1025"></method-api><method-api name="createServiceEndpointInterfaceMapping" descriptor="()Lorg/eclipse/jst/j2ee/webservice/jaxrpcmap/ServiceEndpointInterfaceMapping;" access="1025"></method-api><method-api name="createPackageType" descriptor="()Lorg/eclipse/jst/j2ee/webservice/jaxrpcmap/PackageType;" access="1025"></method-api><method-api name="createClassType" descriptor="()Lorg/eclipse/jst/j2ee/webservice/jaxrpcmap/ClassType;" access="1025"></method-api><method-api name="createRootTypeQname" descriptor="()Lorg/eclipse/jst/j2ee/webservice/jaxrpcmap/RootTypeQname;" access="1025"></method-api><method-api name="createQnameScope" descriptor="()Lorg/eclipse/jst/j2ee/webservice/jaxrpcmap/QnameScope;" access="1025"></method-api><method-api name="createVariableMapping" descriptor="()Lorg/eclipse/jst/j2ee/webservice/jaxrpcmap/VariableMapping;" access="1025"></method-api><method-api name="createExceptionType" descriptor="()Lorg/eclipse/jst/j2ee/webservice/jaxrpcmap/ExceptionType;" access="1025"></method-api><method-api name="createWSDLMessage" descriptor="()Lorg/eclipse/jst/j2ee/webservice/jaxrpcmap/WSDLMessage;" access="1025"></method-api><method-api name="createConstructorParameterOrder" descriptor="()Lorg/eclipse/jst/j2ee/webservice/jaxrpcmap/ConstructorParameterOrder;" access="1025"></method-api><method-api name="createJavaVariableName" descriptor="()Lorg/eclipse/jst/j2ee/webservice/jaxrpcmap/JavaVariableName;" access="1025"></method-api><method-api name="createXMLElementName" descriptor="()Lorg/eclipse/jst/j2ee/webservice/jaxrpcmap/XMLElementName;" access="1025"></method-api><method-api name="createElementName" descriptor="()Lorg/eclipse/jst/j2ee/webservice/jaxrpcmap/ElementName;" access="1025"></method-api><method-api name="createWSDLServiceName" descriptor="()Lorg/eclipse/jst/j2ee/webservice/jaxrpcmap/WSDLServiceName;" access="1025"></method-api><method-api name="createPortMapping" descriptor="()Lorg/eclipse/jst/j2ee/webservice/jaxrpcmap/PortMapping;" access="1025"></method-api><method-api name="createJavaPortName" descriptor="()Lorg/eclipse/jst/j2ee/webservice/jaxrpcmap/JavaPortName;" access="1025"></method-api><method-api name="createWSDLPortType" descriptor="()Lorg/eclipse/jst/j2ee/webservice/jaxrpcmap/WSDLPortType;" access="1025"></method-api><method-api name="createWSDLBinding" descriptor="()Lorg/eclipse/jst/j2ee/webservice/jaxrpcmap/WSDLBinding;" access="1025"></method-api><method-api name="createServiceEndpointMethodMapping" descriptor="()Lorg/eclipse/jst/j2ee/webservice/jaxrpcmap/ServiceEndpointMethodMapping;" access="1025"></method-api><method-api name="createJavaMethodName" descriptor="()Lorg/eclipse/jst/j2ee/webservice/jaxrpcmap/JavaMethodName;" access="1025"></method-api><method-api name="createWSDLOperation" descriptor="()Lorg/eclipse/jst/j2ee/webservice/jaxrpcmap/WSDLOperation;" access="1025"></method-api><method-api name="createMethodParamPartsMapping" descriptor="()Lorg/eclipse/jst/j2ee/webservice/jaxrpcmap/MethodParamPartsMapping;" access="1025"></method-api><method-api name="createWSDLReturnValueMapping" descriptor="()Lorg/eclipse/jst/j2ee/webservice/jaxrpcmap/WSDLReturnValueMapping;" access="1025"></method-api><method-api name="createParamPosition" descriptor="()Lorg/eclipse/jst/j2ee/webservice/jaxrpcmap/ParamPosition;" access="1025"></method-api><method-api name="createParamType" descriptor="()Lorg/eclipse/jst/j2ee/webservice/jaxrpcmap/ParamType;" access="1025"></method-api><method-api name="createWSDLMessageMapping" descriptor="()Lorg/eclipse/jst/j2ee/webservice/jaxrpcmap/WSDLMessageMapping;" access="1025"></method-api><method-api name="createWSDLMessagePartName" descriptor="()Lorg/eclipse/jst/j2ee/webservice/jaxrpcmap/WSDLMessagePartName;" access="1025"></method-api><method-api name="createParameterMode" descriptor="()Lorg/eclipse/jst/j2ee/webservice/jaxrpcmap/ParameterMode;" access="1025"></method-api><method-api name="createMethodReturnValue" descriptor="()Lorg/eclipse/jst/j2ee/webservice/jaxrpcmap/MethodReturnValue;" access="1025"></method-api><method-api name="createInterfaceMapping" descriptor="()Lorg/eclipse/jst/j2ee/webservice/jaxrpcmap/InterfaceMapping;" access="1025"></method-api><method-api name="getJaxrpcmapPackage" descriptor="()Lorg/eclipse/jst/j2ee/webservice/internal/jaxrpcmap/JaxrpcmapPackage;" access="1025"></method-api><field-api name="eINSTANCE" descriptor="Lorg/eclipse/jst/j2ee/webservice/jaxrpcmap/JaxrpcmapFactory;" access="25"></field-api></class-api><class-api name="org.eclipse.jst.j2ee.webservice.jaxrpcmap.WSDLMessagePartName" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><javadoc-coverage since="false"></javadoc-coverage><method-api name="getId" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setId" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getWsdlMessagePartName" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setWsdlMessagePartName" descriptor="(Ljava/lang/String;)V" access="1025"></method-api></class-api><class-api name="org.eclipse.jst.j2ee.webservice.jaxrpcmap.WSDLReturnValueMapping" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><method-api name="getId" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setId" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getMethodReturnValue" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setMethodReturnValue" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getWsdlMessagePartName" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setWsdlMessagePartName" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getWsdlMessage" descriptor="()Lorg/eclipse/jst/j2ee/webservice/jaxrpcmap/WSDLMessage;" access="1025"></method-api><method-api name="setWsdlMessage" descriptor="(Lorg/eclipse/jst/j2ee/webservice/jaxrpcmap/WSDLMessage;)V" access="1025"></method-api></class-api><class-api name="org.eclipse.jst.j2ee.webservice.jaxrpcmap.PackageMapping" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><method-api name="getId" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setId" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getPackageType" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setPackageType" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getNamespaceURI" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setNamespaceURI" descriptor="(Ljava/lang/String;)V" access="1025"></method-api></class-api><class-api name="org.eclipse.jst.j2ee.webservice.jaxrpcmap.JavaPortName" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><javadoc-coverage since="false"></javadoc-coverage><method-api name="getId" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setId" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getJavaPortName" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setJavaPortName" descriptor="(Ljava/lang/String;)V" access="1025"></method-api></class-api><class-api name="org.eclipse.jst.j2ee.webservice.jaxrpcmap.WSDLMessageMapping" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><method-api name="getId" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setId" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getWsdlMessagePartName" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setWsdlMessagePartName" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getParameterMode" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setParameterMode" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="isSoapHeader" descriptor="()Z" access="1025"></method-api><method-api name="setSoapHeader" descriptor="(Z)V" access="1025"></method-api><method-api name="unsetSoapHeader" descriptor="()V" access="1025"></method-api><method-api name="isSetSoapHeader" descriptor="()Z" access="1025"></method-api><method-api name="getWsdlMessage" descriptor="()Lorg/eclipse/jst/j2ee/webservice/jaxrpcmap/WSDLMessage;" access="1025"></method-api><method-api name="setWsdlMessage" descriptor="(Lorg/eclipse/jst/j2ee/webservice/jaxrpcmap/WSDLMessage;)V" access="1025"></method-api></class-api><class-api name="org.eclipse.jst.j2ee.webservice.jaxrpcmap.JaxrpcmapResourceFactory" access="33" reference="true" implement="false" subclass="true" instantiate="true"><javadoc-coverage since="false"></javadoc-coverage><method-api name="<init>" descriptor="(Lorg/eclipse/wst/common/internal/emf/resource/RendererFactory;)V" access="1"><javadoc-coverage><param name="aRendererFactory"/></javadoc-coverage></method-api><method-api name="registerWith" descriptor="(Lorg/eclipse/wst/common/internal/emf/resource/RendererFactory;)V" access="9"><javadoc-coverage><param name="aRendererFactory"/></javadoc-coverage></method-api><method-api name="register" descriptor="()V" access="9"></method-api><method-api name="registerDtds" descriptor="()V" access="9"></method-api><method-api name="createResource" descriptor="(Lorg/eclipse/emf/common/util/URI;Lorg/eclipse/wst/common/internal/emf/resource/Renderer;)Lorg/eclipse/wst/common/internal/emf/resource/TranslatorResource;" access="4"><javadoc-coverage return="false"><param name="uri"/><param name="aRenderer"/></javadoc-coverage></method-api></class-api><class-api name="org.eclipse.jst.j2ee.webservice.jaxrpcmap.WSDLMessage" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><javadoc-coverage since="false"></javadoc-coverage></class-api><class-api name="org.eclipse.jst.j2ee.webservice.jaxrpcmap.ParameterMode" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><javadoc-coverage since="false"></javadoc-coverage><method-api name="getId" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setId" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getParameterMode" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setParameterMode" descriptor="(Ljava/lang/String;)V" access="1025"></method-api></class-api><class-api name="org.eclipse.jst.j2ee.webservice.jaxrpcmap.VariableMapping" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><method-api name="getId" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setId" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getJavaVariableName" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setJavaVariableName" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getXmlElementName" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setXmlElementName" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="isDataMember" descriptor="()Z" access="1025"></method-api><method-api name="setDataMember" descriptor="(Z)V" access="1025"></method-api><method-api name="unsetDataMember" descriptor="()V" access="1025"></method-api><method-api name="isSetDataMember" descriptor="()Z" access="1025"></method-api><method-api name="getXmlAttributeName" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setXmlAttributeName" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="isXmlWildcard" descriptor="()Z" access="1025"></method-api><method-api name="setXmlWildcard" descriptor="(Z)V" access="1025"></method-api><method-api name="unsetXmlWildcard" descriptor="()V" access="1025"></method-api><method-api name="isSetXmlWildcard" descriptor="()Z" access="1025"></method-api></class-api><class-api name="org.eclipse.jst.j2ee.webservice.jaxrpcmap.InterfaceMapping" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><javadoc-coverage since="false"></javadoc-coverage></class-api><class-api name="org.eclipse.jst.j2ee.webservice.jaxrpcmap.ElementName" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><javadoc-coverage since="false"></javadoc-coverage><method-api name="getId" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setId" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getText" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setText" descriptor="(Ljava/lang/String;)V" access="1025"></method-api></class-api><class-api name="org.eclipse.jst.j2ee.webservice.jaxrpcmap.ExceptionMapping" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><method-api name="getId" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setId" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getExceptionType" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setExceptionType" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getWsdlMessagePartName" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setWsdlMessagePartName" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getWsdlMessage" descriptor="()Lorg/eclipse/jst/j2ee/webservice/jaxrpcmap/WSDLMessage;" access="1025"></method-api><method-api name="setWsdlMessage" descriptor="(Lorg/eclipse/jst/j2ee/webservice/jaxrpcmap/WSDLMessage;)V" access="1025"></method-api><method-api name="getConstructorParameterOrder" descriptor="()Lorg/eclipse/jst/j2ee/webservice/jaxrpcmap/ConstructorParameterOrder;" access="1025"></method-api><method-api name="setConstructorParameterOrder" descriptor="(Lorg/eclipse/jst/j2ee/webservice/jaxrpcmap/ConstructorParameterOrder;)V" access="1025"></method-api></class-api><class-api name="org.eclipse.jst.j2ee.webservice.jaxrpcmap.JavaXMLTypeMapping" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><method-api name="getId" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setId" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getClassType" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setClassType" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getQnameScope" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setQnameScope" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getAnonymousTypeQname" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setAnonymousTypeQname" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getRootTypeQname" descriptor="()Lorg/eclipse/jst/j2ee/webservice/jaxrpcmap/RootTypeQname;" access="1025"></method-api><method-api name="setRootTypeQname" descriptor="(Lorg/eclipse/jst/j2ee/webservice/jaxrpcmap/RootTypeQname;)V" access="1025"></method-api><method-api name="getVariableMappings" descriptor="()Lorg/eclipse/emf/common/util/EList;" access="1025"></method-api></class-api><class-api name="org.eclipse.jst.j2ee.webservice.jaxrpcmap.WSDLOperation" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><javadoc-coverage since="false"></javadoc-coverage><method-api name="getId" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setId" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getWsdlOperation" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setWsdlOperation" descriptor="(Ljava/lang/String;)V" access="1025"></method-api></class-api><class-api name="org.eclipse.jst.j2ee.webservice.jaxrpcmap.ClassType" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><javadoc-coverage since="false"></javadoc-coverage><method-api name="getId" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setId" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getClassType" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setClassType" descriptor="(Ljava/lang/String;)V" access="1025"></method-api></class-api><class-api name="org.eclipse.jst.j2ee.webservice.jaxrpcmap.QnameScope" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><javadoc-coverage since="false"></javadoc-coverage><method-api name="getId" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setId" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getQnameScope" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setQnameScope" descriptor="(Ljava/lang/String;)V" access="1025"></method-api></class-api><class-api name="org.eclipse.jst.j2ee.webservice.jaxrpcmap.ConstructorParameterOrder" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><javadoc-coverage since="false"></javadoc-coverage><method-api name="getId" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setId" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getElementNames" descriptor="()Lorg/eclipse/emf/common/util/EList;" access="1025"></method-api></class-api><class-api name="org.eclipse.jst.j2ee.webservice.jaxrpcmap.ServiceInterfaceMapping" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><method-api name="getId" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setId" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getServiceInterface" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setServiceInterface" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getWsdlServiceName" descriptor="()Lorg/eclipse/jst/j2ee/webservice/jaxrpcmap/WSDLServiceName;" access="1025"></method-api><method-api name="setWsdlServiceName" descriptor="(Lorg/eclipse/jst/j2ee/webservice/jaxrpcmap/WSDLServiceName;)V" access="1025"></method-api><method-api name="getPortMappings" descriptor="()Lorg/eclipse/emf/common/util/EList;" access="1025"></method-api></class-api><class-api name="org.eclipse.jst.j2ee.webservice.jaxrpcmap.WSDLPortType" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><javadoc-coverage since="false"></javadoc-coverage></class-api><class-api name="org.eclipse.jst.j2ee.webservice.jaxrpcmap.JavaMethodName" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><javadoc-coverage since="false"></javadoc-coverage><method-api name="getId" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setId" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getJavaMethodName" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setJavaMethodName" descriptor="(Ljava/lang/String;)V" access="1025"></method-api></class-api><class-api name="org.eclipse.jst.j2ee.webservice.jaxrpcmap.MethodParamPartsMapping" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><method-api name="getId" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setId" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getParamPosition" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setParamPosition" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getParamType" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setParamType" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getWsdlMessageMapping" descriptor="()Lorg/eclipse/jst/j2ee/webservice/jaxrpcmap/WSDLMessageMapping;" access="1025"></method-api><method-api name="setWsdlMessageMapping" descriptor="(Lorg/eclipse/jst/j2ee/webservice/jaxrpcmap/WSDLMessageMapping;)V" access="1025"></method-api></class-api><class-api name="org.eclipse.jst.j2ee.webservice.jaxrpcmap.RootTypeQname" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><javadoc-coverage since="false"></javadoc-coverage></class-api><class-api name="org.eclipse.jst.j2ee.webservice.jaxrpcmap.PortMapping" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><method-api name="getId" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setId" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getPortName" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setPortName" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getJavaPortName" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setJavaPortName" descriptor="(Ljava/lang/String;)V" access="1025"></method-api></class-api><class-api name="org.eclipse.jst.j2ee.webservice.jaxrpcmap.JavaWSDLMapping" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><method-api name="getId" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setId" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getPackageMappings" descriptor="()Lorg/eclipse/emf/common/util/EList;" access="1025"></method-api><method-api name="getJavaXMLTypeMappings" descriptor="()Lorg/eclipse/emf/common/util/EList;" access="1025"></method-api><method-api name="getExceptionMappings" descriptor="()Lorg/eclipse/emf/common/util/EList;" access="1025"></method-api><method-api name="getInterfaceMappings" descriptor="()Lorg/eclipse/emf/common/util/EList;" access="1025"></method-api></class-api><class-api name="org.eclipse.jst.j2ee.webservice.jaxrpcmap.ParamType" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><javadoc-coverage since="false"></javadoc-coverage><method-api name="getId" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setId" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getParamType" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setParamType" descriptor="(Ljava/lang/String;)V" access="1025"></method-api></class-api><class-api name="org.eclipse.jst.j2ee.webservice.jaxrpcmap.WSDLBinding" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><javadoc-coverage since="false"></javadoc-coverage></class-api></package-api><package-api name="org.eclipse.jst.j2ee.webapplication"><class-api name="org.eclipse.jst.j2ee.webapplication.ServletType" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><javadoc-coverage since="false"></javadoc-coverage><method-api name="getClassName" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setClassName" descriptor="(Ljava/lang/String;)V" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.flexible.project.apitests.artifactedit.WebArtifactEditTest"/></test-coverage></method-api></class-api><class-api name="org.eclipse.jst.j2ee.webapplication.TransportGuaranteeType" access="49" reference="true" implement="false" subclass="true" instantiate="true"><method-api name="get" descriptor="(Ljava/lang/String;)Lorg/eclipse/jst/j2ee/webapplication/TransportGuaranteeType;" access="9"></method-api><method-api name="get" descriptor="(I)Lorg/eclipse/jst/j2ee/webapplication/TransportGuaranteeType;" access="9"></method-api><field-api name="NONE" descriptor="I" access="25"></field-api><field-api name="INTEGRAL" descriptor="I" access="25"></field-api><field-api name="CONFIDENTIAL" descriptor="I" access="25"></field-api><field-api name="NONE_LITERAL" descriptor="Lorg/eclipse/jst/j2ee/webapplication/TransportGuaranteeType;" access="25"></field-api><field-api name="INTEGRAL_LITERAL" descriptor="Lorg/eclipse/jst/j2ee/webapplication/TransportGuaranteeType;" access="25"></field-api><field-api name="CONFIDENTIAL_LITERAL" descriptor="Lorg/eclipse/jst/j2ee/webapplication/TransportGuaranteeType;" access="25"></field-api><field-api name="VALUES" descriptor="Ljava/util/List;" access="25"></field-api></class-api><class-api name="org.eclipse.jst.j2ee.webapplication.WebAppResource" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><javadoc-coverage since="false"></javadoc-coverage><method-api name="getWebApp" descriptor="()Lorg/eclipse/jst/j2ee/webapplication/WebApp;" access="1025"><javadoc-coverage return="false"></javadoc-coverage></method-api><method-api name="isWeb2_2" descriptor="()Z" access="1025"><javadoc-coverage return="false"></javadoc-coverage></method-api><method-api name="isWeb2_3" descriptor="()Z" access="1025"><javadoc-coverage return="false"></javadoc-coverage></method-api><method-api name="isWeb2_4" descriptor="()Z" access="1025"><javadoc-coverage return="false"></javadoc-coverage></method-api></class-api><class-api name="org.eclipse.jst.j2ee.webapplication.ServletMapping" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><method-api name="getUrlPattern" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setUrlPattern" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getName" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setName" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getWebApp" descriptor="()Lorg/eclipse/jst/j2ee/webapplication/WebApp;" access="1025"></method-api><method-api name="setWebApp" descriptor="(Lorg/eclipse/jst/j2ee/webapplication/WebApp;)V" access="1025"></method-api><method-api name="getServlet" descriptor="()Lorg/eclipse/jst/j2ee/webapplication/Servlet;" access="1025"></method-api><method-api name="setServlet" descriptor="(Lorg/eclipse/jst/j2ee/webapplication/Servlet;)V" access="1025"></method-api></class-api><class-api name="org.eclipse.jst.j2ee.webapplication.AuthMethodKind" access="49" reference="true" implement="false" subclass="true" instantiate="true"><method-api name="get" descriptor="(Ljava/lang/String;)Lorg/eclipse/jst/j2ee/webapplication/AuthMethodKind;" access="9"></method-api><method-api name="get" descriptor="(I)Lorg/eclipse/jst/j2ee/webapplication/AuthMethodKind;" access="9"></method-api><field-api name="UNSPECIFIED" descriptor="I" access="25"></field-api><field-api name="BASIC" descriptor="I" access="25"></field-api><field-api name="DIGEST" descriptor="I" access="25"></field-api><field-api name="FORM" descriptor="I" access="25"></field-api><field-api name="CLIENT_CERT" descriptor="I" access="25"></field-api><field-api name="UNSPECIFIED_LITERAL" descriptor="Lorg/eclipse/jst/j2ee/webapplication/AuthMethodKind;" access="25"></field-api><field-api name="BASIC_LITERAL" descriptor="Lorg/eclipse/jst/j2ee/webapplication/AuthMethodKind;" access="25"></field-api><field-api name="DIGEST_LITERAL" descriptor="Lorg/eclipse/jst/j2ee/webapplication/AuthMethodKind;" access="25"></field-api><field-api name="FORM_LITERAL" descriptor="Lorg/eclipse/jst/j2ee/webapplication/AuthMethodKind;" access="25"></field-api><field-api name="CLIENT_CERT_LITERAL" descriptor="Lorg/eclipse/jst/j2ee/webapplication/AuthMethodKind;" access="25"></field-api><field-api name="VALUES" descriptor="Ljava/util/List;" access="25"></field-api></class-api><class-api name="org.eclipse.jst.j2ee.webapplication.DispatcherType" access="49" reference="true" implement="false" subclass="true" instantiate="true"><method-api name="get" descriptor="(Ljava/lang/String;)Lorg/eclipse/jst/j2ee/webapplication/DispatcherType;" access="9"></method-api><method-api name="get" descriptor="(I)Lorg/eclipse/jst/j2ee/webapplication/DispatcherType;" access="9"></method-api><field-api name="FORWARD" descriptor="I" access="25"></field-api><field-api name="INCLUDE" descriptor="I" access="25"></field-api><field-api name="REQUEST" descriptor="I" access="25"></field-api><field-api name="ERROR" descriptor="I" access="25"></field-api><field-api name="FORWARD_LITERAL" descriptor="Lorg/eclipse/jst/j2ee/webapplication/DispatcherType;" access="25"></field-api><field-api name="INCLUDE_LITERAL" descriptor="Lorg/eclipse/jst/j2ee/webapplication/DispatcherType;" access="25"></field-api><field-api name="REQUEST_LITERAL" descriptor="Lorg/eclipse/jst/j2ee/webapplication/DispatcherType;" access="25"></field-api><field-api name="ERROR_LITERAL" descriptor="Lorg/eclipse/jst/j2ee/webapplication/DispatcherType;" access="25"></field-api><field-api name="VALUES" descriptor="Ljava/util/List;" access="25"></field-api></class-api><class-api name="org.eclipse.jst.j2ee.webapplication.Filter" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><method-api name="getFilterClassName" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setFilterClassName" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getName" descriptor="()Ljava/lang/String;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.archive.test.DefectVerificationTests"/></test-coverage></method-api><method-api name="setName" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getInitParams" descriptor="()Lorg/eclipse/emf/common/util/EList;" access="1025"></method-api><method-api name="getFilterClass" descriptor="()Lorg/eclipse/jem/java/JavaClass;" access="1025"></method-api><method-api name="setFilterClass" descriptor="(Lorg/eclipse/jem/java/JavaClass;)V" access="1025"></method-api><method-api name="getInitParamValues" descriptor="()Lorg/eclipse/emf/common/util/EList;" access="1025"></method-api></class-api><class-api name="org.eclipse.jst.j2ee.webapplication.WebapplicationFactory" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><method-api name="createWebApp" descriptor="()Lorg/eclipse/jst/j2ee/webapplication/WebApp;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.webapplication.test.WebapplicationFactoryTest"/></test-coverage></method-api><method-api name="createContextParam" descriptor="()Lorg/eclipse/jst/j2ee/webapplication/ContextParam;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.webapplication.test.WebapplicationFactoryTest"/></test-coverage></method-api><method-api name="createErrorPage" descriptor="()Lorg/eclipse/jst/j2ee/webapplication/ErrorPage;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.webapplication.test.WebapplicationFactoryTest"/></test-coverage></method-api><method-api name="createExceptionTypeErrorPage" descriptor="()Lorg/eclipse/jst/j2ee/webapplication/ExceptionTypeErrorPage;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.webapplication.test.WebapplicationFactoryTest"/><test name="org.eclipse.jst.j2ee.archive.emftests.WarEMFTest"/><test name="org.eclipse.jst.j2ee.archive.emftests.WarEMFEditTest"/></test-coverage></method-api><method-api name="createErrorCodeErrorPage" descriptor="()Lorg/eclipse/jst/j2ee/webapplication/ErrorCodeErrorPage;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.webapplication.test.WebapplicationFactoryTest"/><test name="org.eclipse.jst.j2ee.archive.emftests.WarEMFTest"/><test name="org.eclipse.jst.j2ee.archive.emftests.WarEMFEditTest"/></test-coverage></method-api><method-api name="createWelcomeFileList" descriptor="()Lorg/eclipse/jst/j2ee/webapplication/WelcomeFileList;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.webapplication.test.WebapplicationFactoryTest"/></test-coverage></method-api><method-api name="createWelcomeFile" descriptor="()Lorg/eclipse/jst/j2ee/webapplication/WelcomeFile;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.webapplication.test.WebapplicationFactoryTest"/></test-coverage></method-api><method-api name="createTagLibRef" descriptor="()Lorg/eclipse/jst/j2ee/webapplication/TagLibRef;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.webapplication.test.WebapplicationFactoryTest"/></test-coverage></method-api><method-api name="createSecurityConstraint" descriptor="()Lorg/eclipse/jst/j2ee/webapplication/SecurityConstraint;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.webapplication.test.WebapplicationFactoryTest"/></test-coverage></method-api><method-api name="createWebResourceCollection" descriptor="()Lorg/eclipse/jst/j2ee/webapplication/WebResourceCollection;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.webapplication.test.WebapplicationFactoryTest"/></test-coverage></method-api><method-api name="createURLPatternType" descriptor="()Lorg/eclipse/jst/j2ee/webapplication/URLPatternType;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.webapplication.test.WebapplicationFactoryTest"/></test-coverage></method-api><method-api name="createAuthConstraint" descriptor="()Lorg/eclipse/jst/j2ee/webapplication/AuthConstraint;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.webapplication.test.WebapplicationFactoryTest"/></test-coverage></method-api><method-api name="createUserDataConstraint" descriptor="()Lorg/eclipse/jst/j2ee/webapplication/UserDataConstraint;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.webapplication.test.WebapplicationFactoryTest"/></test-coverage></method-api><method-api name="createLoginConfig" descriptor="()Lorg/eclipse/jst/j2ee/webapplication/LoginConfig;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.webapplication.test.WebapplicationFactoryTest"/></test-coverage></method-api><method-api name="createFormLoginConfig" descriptor="()Lorg/eclipse/jst/j2ee/webapplication/FormLoginConfig;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.webapplication.test.WebapplicationFactoryTest"/></test-coverage></method-api><method-api name="createMimeMapping" descriptor="()Lorg/eclipse/jst/j2ee/webapplication/MimeMapping;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.webapplication.test.WebapplicationFactoryTest"/></test-coverage></method-api><method-api name="createSessionConfig" descriptor="()Lorg/eclipse/jst/j2ee/webapplication/SessionConfig;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.webapplication.test.WebapplicationFactoryTest"/></test-coverage></method-api><method-api name="createServletMapping" descriptor="()Lorg/eclipse/jst/j2ee/webapplication/ServletMapping;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.webapplication.test.WebapplicationFactoryTest"/></test-coverage></method-api><method-api name="createServlet" descriptor="()Lorg/eclipse/jst/j2ee/webapplication/Servlet;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.archive.test.SimpleTests"/><test name="org.eclipse.jst.j2ee.webapplication.test.WebapplicationFactoryTest"/></test-coverage></method-api><method-api name="createServletType" descriptor="()Lorg/eclipse/jst/j2ee/webapplication/ServletType;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.webapplication.test.WebapplicationFactoryTest"/><test name="org.eclipse.jst.j2ee.archive.emftests.WarEMFTest"/><test name="org.eclipse.jst.j2ee.archive.emftests.WarEMFEditTest"/></test-coverage></method-api><method-api name="createJSPType" descriptor="()Lorg/eclipse/jst/j2ee/webapplication/JSPType;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.webapplication.test.WebapplicationFactoryTest"/><test name="org.eclipse.jst.j2ee.archive.emftests.WarEMFTest"/><test name="org.eclipse.jst.j2ee.archive.emftests.WarEMFEditTest"/></test-coverage></method-api><method-api name="createInitParam" descriptor="()Lorg/eclipse/jst/j2ee/webapplication/InitParam;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.webapplication.test.WebapplicationFactoryTest"/></test-coverage></method-api><method-api name="createFilter" descriptor="()Lorg/eclipse/jst/j2ee/webapplication/Filter;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.webapplication.test.WebapplicationFactoryTest"/></test-coverage></method-api><method-api name="createFilterMapping" descriptor="()Lorg/eclipse/jst/j2ee/webapplication/FilterMapping;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.webapplication.test.WebapplicationFactoryTest"/></test-coverage></method-api><method-api name="createLocalEncodingMappingList" descriptor="()Lorg/eclipse/jst/j2ee/webapplication/LocalEncodingMappingList;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.webapplication.test.WebapplicationFactoryTest"/></test-coverage></method-api><method-api name="createLocalEncodingMapping" descriptor="()Lorg/eclipse/jst/j2ee/webapplication/LocalEncodingMapping;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.webapplication.test.WebapplicationFactoryTest"/></test-coverage></method-api><method-api name="createHTTPMethodType" descriptor="()Lorg/eclipse/jst/j2ee/webapplication/HTTPMethodType;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.webapplication.test.WebapplicationFactoryTest"/></test-coverage></method-api><method-api name="createRoleNameType" descriptor="()Lorg/eclipse/jst/j2ee/webapplication/RoleNameType;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.webapplication.test.WebapplicationFactoryTest"/></test-coverage></method-api><method-api name="getWebapplicationPackage" descriptor="()Lorg/eclipse/jst/j2ee/internal/webapplication/WebapplicationPackage;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.webapplication.test.WebapplicationFactoryTest"/></test-coverage></method-api><field-api name="eINSTANCE" descriptor="Lorg/eclipse/jst/j2ee/webapplication/WebapplicationFactory;" access="25"></field-api></class-api><class-api name="org.eclipse.jst.j2ee.webapplication.LocalEncodingMapping" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><javadoc-coverage since="false"></javadoc-coverage><method-api name="getLocale" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setLocale" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getEncoding" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setEncoding" descriptor="(Ljava/lang/String;)V" access="1025"></method-api></class-api><class-api name="org.eclipse.jst.j2ee.webapplication.HTTPMethodType" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><javadoc-coverage since="false"></javadoc-coverage><method-api name="getHttpMethod" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setHttpMethod" descriptor="(Ljava/lang/String;)V" access="1025"></method-api></class-api><class-api name="org.eclipse.jst.j2ee.webapplication.LoginConfig" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><method-api name="getAuthMethod" descriptor="()Lorg/eclipse/jst/j2ee/webapplication/AuthMethodKind;" access="1025"></method-api><method-api name="setAuthMethod" descriptor="(Lorg/eclipse/jst/j2ee/webapplication/AuthMethodKind;)V" access="1025"></method-api><method-api name="unsetAuthMethod" descriptor="()V" access="1025"></method-api><method-api name="isSetAuthMethod" descriptor="()Z" access="1025"></method-api><method-api name="getRealmName" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setRealmName" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getAuthorizationMethod" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setAuthorizationMethod" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getWebApp" descriptor="()Lorg/eclipse/jst/j2ee/webapplication/WebApp;" access="1025"></method-api><method-api name="setWebApp" descriptor="(Lorg/eclipse/jst/j2ee/webapplication/WebApp;)V" access="1025"></method-api><method-api name="getFormLoginConfig" descriptor="()Lorg/eclipse/jst/j2ee/webapplication/FormLoginConfig;" access="1025"></method-api><method-api name="setFormLoginConfig" descriptor="(Lorg/eclipse/jst/j2ee/webapplication/FormLoginConfig;)V" access="1025"></method-api></class-api><class-api name="org.eclipse.jst.j2ee.webapplication.HTTPMethodTypeEnum" access="49" reference="true" implement="false" subclass="true" instantiate="true"><method-api name="get" descriptor="(Ljava/lang/String;)Lorg/eclipse/jst/j2ee/webapplication/HTTPMethodTypeEnum;" access="9"></method-api><method-api name="get" descriptor="(I)Lorg/eclipse/jst/j2ee/webapplication/HTTPMethodTypeEnum;" access="9"></method-api><field-api name="GET" descriptor="I" access="25"></field-api><field-api name="POST" descriptor="I" access="25"></field-api><field-api name="PUT" descriptor="I" access="25"></field-api><field-api name="DELETE" descriptor="I" access="25"></field-api><field-api name="HEAD" descriptor="I" access="25"></field-api><field-api name="OPTIONS" descriptor="I" access="25"></field-api><field-api name="TRACE" descriptor="I" access="25"></field-api><field-api name="GET_LITERAL" descriptor="Lorg/eclipse/jst/j2ee/webapplication/HTTPMethodTypeEnum;" access="25"></field-api><field-api name="POST_LITERAL" descriptor="Lorg/eclipse/jst/j2ee/webapplication/HTTPMethodTypeEnum;" access="25"></field-api><field-api name="PUT_LITERAL" descriptor="Lorg/eclipse/jst/j2ee/webapplication/HTTPMethodTypeEnum;" access="25"></field-api><field-api name="DELETE_LITERAL" descriptor="Lorg/eclipse/jst/j2ee/webapplication/HTTPMethodTypeEnum;" access="25"></field-api><field-api name="HEAD_LITERAL" descriptor="Lorg/eclipse/jst/j2ee/webapplication/HTTPMethodTypeEnum;" access="25"></field-api><field-api name="OPTIONS_LITERAL" descriptor="Lorg/eclipse/jst/j2ee/webapplication/HTTPMethodTypeEnum;" access="25"></field-api><field-api name="TRACE_LITERAL" descriptor="Lorg/eclipse/jst/j2ee/webapplication/HTTPMethodTypeEnum;" access="25"></field-api><field-api name="VALUES" descriptor="Ljava/util/List;" access="25"></field-api></class-api><class-api name="org.eclipse.jst.j2ee.webapplication.Servlet" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><method-api name="getMappings" descriptor="()Ljava/util/List;" access="1025"></method-api><method-api name="getParamsAsProperties" descriptor="()Ljava/util/Properties;" access="1025"></method-api><method-api name="reSyncSecurityRoleRef" descriptor="(Ljava/lang/String;Ljava/lang/String;)V" access="1025"></method-api><method-api name="getServletName" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setServletName" descriptor="(Ljava/lang/String;)V" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.flexible.project.apitests.artifactedit.WebArtifactEditTest"/></test-coverage></method-api><method-api name="getLoadOnStartup" descriptor="()Ljava/lang/Integer;" access="1025"></method-api><method-api name="setLoadOnStartup" descriptor="(Ljava/lang/Integer;)V" access="1025"></method-api><method-api name="unsetLoadOnStartup" descriptor="()V" access="1025"></method-api><method-api name="isSetLoadOnStartup" descriptor="()Z" access="1025"></method-api><method-api name="getWebApp" descriptor="()Lorg/eclipse/jst/j2ee/webapplication/WebApp;" access="1025"></method-api><method-api name="setWebApp" descriptor="(Lorg/eclipse/jst/j2ee/webapplication/WebApp;)V" access="1025"></method-api><method-api name="getWebType" descriptor="()Lorg/eclipse/jst/j2ee/webapplication/WebType;" access="1025"></method-api><method-api name="setWebType" descriptor="(Lorg/eclipse/jst/j2ee/webapplication/WebType;)V" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.flexible.project.apitests.artifactedit.WebArtifactEditTest"/></test-coverage></method-api><method-api name="getParams" descriptor="()Lorg/eclipse/emf/common/util/EList;" access="1025"></method-api><method-api name="getSecurityRoleRefs" descriptor="()Lorg/eclipse/emf/common/util/EList;" access="1025"></method-api><method-api name="getRunAs" descriptor="()Lorg/eclipse/jst/j2ee/common/RunAsSpecifiedIdentity;" access="1025"></method-api><method-api name="setRunAs" descriptor="(Lorg/eclipse/jst/j2ee/common/RunAsSpecifiedIdentity;)V" access="1025"></method-api><method-api name="getInitParams" descriptor="()Lorg/eclipse/emf/common/util/EList;" access="1025"></method-api><method-api name="getServletClass" descriptor="()Lorg/eclipse/jem/java/JavaClass;" access="1025"></method-api></class-api><class-api name="org.eclipse.jst.j2ee.webapplication.FormLoginConfig" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><javadoc-coverage since="false"></javadoc-coverage><method-api name="getFormLoginPage" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setFormLoginPage" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getFormErrorPage" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setFormErrorPage" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getLoginConfig" descriptor="()Lorg/eclipse/jst/j2ee/webapplication/LoginConfig;" access="1025"></method-api><method-api name="setLoginConfig" descriptor="(Lorg/eclipse/jst/j2ee/webapplication/LoginConfig;)V" access="1025"><javadoc-coverage><param name="value"/></javadoc-coverage></method-api></class-api><class-api name="org.eclipse.jst.j2ee.webapplication.ResAuthServletType" access="49" reference="true" implement="false" subclass="true" instantiate="true"><method-api name="get" descriptor="(Ljava/lang/String;)Lorg/eclipse/jst/j2ee/webapplication/ResAuthServletType;" access="9"></method-api><method-api name="get" descriptor="(I)Lorg/eclipse/jst/j2ee/webapplication/ResAuthServletType;" access="9"></method-api><field-api name="CONTAINER" descriptor="I" access="25"></field-api><field-api name="SERVLET" descriptor="I" access="25"></field-api><field-api name="CONTAINER_LITERAL" descriptor="Lorg/eclipse/jst/j2ee/webapplication/ResAuthServletType;" access="25"></field-api><field-api name="SERVLET_LITERAL" descriptor="Lorg/eclipse/jst/j2ee/webapplication/ResAuthServletType;" access="25"></field-api><field-api name="VALUES" descriptor="Ljava/util/List;" access="25"></field-api></class-api><class-api name="org.eclipse.jst.j2ee.webapplication.ContextParam" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><javadoc-coverage since="false"></javadoc-coverage><method-api name="getParamName" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setParamName" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getParamValue" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setParamValue" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getDescription" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setDescription" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getWebApp" descriptor="()Lorg/eclipse/jst/j2ee/webapplication/WebApp;" access="1025"></method-api><method-api name="setWebApp" descriptor="(Lorg/eclipse/jst/j2ee/webapplication/WebApp;)V" access="1025"><javadoc-coverage><param name="value"/></javadoc-coverage></method-api></class-api><class-api name="org.eclipse.jst.j2ee.webapplication.WelcomeFileList" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><javadoc-coverage since="false"></javadoc-coverage><method-api name="addFileNamed" descriptor="(Ljava/lang/String;)V" access="1025"><javadoc-coverage><param name="name"/></javadoc-coverage></method-api><method-api name="getWebApp" descriptor="()Lorg/eclipse/jst/j2ee/webapplication/WebApp;" access="1025"></method-api><method-api name="setWebApp" descriptor="(Lorg/eclipse/jst/j2ee/webapplication/WebApp;)V" access="1025"><javadoc-coverage><param name="value"/></javadoc-coverage></method-api><method-api name="getFile" descriptor="()Lorg/eclipse/emf/common/util/EList;" access="1025"></method-api></class-api><class-api name="org.eclipse.jst.j2ee.webapplication.ErrorPage" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><javadoc-coverage since="false"></javadoc-coverage><method-api name="isErrorCode" descriptor="()Z" access="1025"><javadoc-coverage return="false"></javadoc-coverage></method-api><method-api name="isExceptionType" descriptor="()Z" access="1025"><javadoc-coverage return="false"></javadoc-coverage></method-api><method-api name="getLocation" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setLocation" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getWebApp" descriptor="()Lorg/eclipse/jst/j2ee/webapplication/WebApp;" access="1025"></method-api><method-api name="setWebApp" descriptor="(Lorg/eclipse/jst/j2ee/webapplication/WebApp;)V" access="1025"><javadoc-coverage><param name="value"/></javadoc-coverage></method-api></class-api><class-api name="org.eclipse.jst.j2ee.webapplication.ErrorCodeErrorPage" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><javadoc-coverage since="false"></javadoc-coverage><method-api name="getErrorCode" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setErrorCode" descriptor="(Ljava/lang/String;)V" access="1025"></method-api></class-api><class-api name="org.eclipse.jst.j2ee.webapplication.WebResourceCollection" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><method-api name="addHTTP" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="addURL" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getWebResourceName" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setWebResourceName" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getDescription" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setDescription" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getUrlPattern" descriptor="()Lorg/eclipse/emf/common/util/EList;" access="1025"></method-api><method-api name="getHttpMethod" descriptor="()Lorg/eclipse/emf/common/util/EList;" access="1025"></method-api><method-api name="getHTTPs" descriptor="()Lorg/eclipse/emf/common/util/EList;" access="1025"></method-api><method-api name="getSecConstraint" descriptor="()Lorg/eclipse/jst/j2ee/webapplication/SecurityConstraint;" access="1025"></method-api><method-api name="setSecConstraint" descriptor="(Lorg/eclipse/jst/j2ee/webapplication/SecurityConstraint;)V" access="1025"></method-api><method-api name="getURLs" descriptor="()Lorg/eclipse/emf/common/util/EList;" access="1025"></method-api><method-api name="getDescriptions" descriptor="()Lorg/eclipse/emf/common/util/EList;" access="1025"></method-api></class-api><class-api name="org.eclipse.jst.j2ee.webapplication.JSPType" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><javadoc-coverage since="false"></javadoc-coverage><method-api name="getJspFile" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setJspFile" descriptor="(Ljava/lang/String;)V" access="1025"></method-api></class-api><class-api name="org.eclipse.jst.j2ee.webapplication.URLPatternType" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><javadoc-coverage since="false"></javadoc-coverage><method-api name="getUrlPattern" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setUrlPattern" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getResCollection" descriptor="()Lorg/eclipse/jst/j2ee/webapplication/WebResourceCollection;" access="1025"></method-api><method-api name="setResCollection" descriptor="(Lorg/eclipse/jst/j2ee/webapplication/WebResourceCollection;)V" access="1025"><javadoc-coverage><param name="value"/></javadoc-coverage></method-api></class-api><class-api name="org.eclipse.jst.j2ee.webapplication.WelcomeFile" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><javadoc-coverage since="false"></javadoc-coverage><method-api name="getWelcomeFile" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setWelcomeFile" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getFileList" descriptor="()Lorg/eclipse/jst/j2ee/webapplication/WelcomeFileList;" access="1025"></method-api><method-api name="setFileList" descriptor="(Lorg/eclipse/jst/j2ee/webapplication/WelcomeFileList;)V" access="1025"><javadoc-coverage><param name="value"/></javadoc-coverage></method-api></class-api><class-api name="org.eclipse.jst.j2ee.webapplication.AuthConstraint" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><javadoc-coverage since="false"></javadoc-coverage><method-api name="getDescription" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setDescription" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getRoles" descriptor="()Lorg/eclipse/emf/common/util/EList;" access="1025"></method-api><method-api name="getSecConstraint" descriptor="()Lorg/eclipse/jst/j2ee/webapplication/SecurityConstraint;" access="1025"></method-api><method-api name="setSecConstraint" descriptor="(Lorg/eclipse/jst/j2ee/webapplication/SecurityConstraint;)V" access="1025"><javadoc-coverage><param name="value"/></javadoc-coverage></method-api><method-api name="getDescriptions" descriptor="()Lorg/eclipse/emf/common/util/EList;" access="1025"></method-api></class-api><class-api name="org.eclipse.jst.j2ee.webapplication.InitParam" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><javadoc-coverage since="false"></javadoc-coverage><method-api name="getParamName" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setParamName" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getParamValue" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setParamValue" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getDescription" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setDescription" descriptor="(Ljava/lang/String;)V" access="1025"></method-api></class-api><class-api name="org.eclipse.jst.j2ee.webapplication.LocalEncodingMappingList" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><javadoc-coverage since="false"></javadoc-coverage><method-api name="getLocalEncodingMappings" descriptor="()Lorg/eclipse/emf/common/util/EList;" access="1025"></method-api></class-api><class-api name="org.eclipse.jst.j2ee.webapplication.SessionConfig" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><javadoc-coverage since="false"></javadoc-coverage><method-api name="getSessionTimeout" descriptor="()I" access="1025"></method-api><method-api name="setSessionTimeout" descriptor="(I)V" access="1025"></method-api><method-api name="unsetSessionTimeout" descriptor="()V" access="1025"></method-api><method-api name="isSetSessionTimeout" descriptor="()Z" access="1025"></method-api><method-api name="getWebApp" descriptor="()Lorg/eclipse/jst/j2ee/webapplication/WebApp;" access="1025"></method-api><method-api name="setWebApp" descriptor="(Lorg/eclipse/jst/j2ee/webapplication/WebApp;)V" access="1025"><javadoc-coverage><param name="value"/></javadoc-coverage></method-api></class-api><class-api name="org.eclipse.jst.j2ee.webapplication.TagLibRef" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><method-api name="getTaglibURI" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setTaglibURI" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getTaglibLocation" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setTaglibLocation" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getWebApp" descriptor="()Lorg/eclipse/jst/j2ee/webapplication/WebApp;" access="1025"></method-api><method-api name="setWebApp" descriptor="(Lorg/eclipse/jst/j2ee/webapplication/WebApp;)V" access="1025"></method-api></class-api><class-api name="org.eclipse.jst.j2ee.webapplication.WebApp" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><method-api name="containsSecurityRole" descriptor="(Ljava/lang/String;)Z" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.archive.test.SecurityRoleTests"/></test-coverage></method-api><method-api name="getErrorPageByCode" descriptor="(Ljava/lang/Integer;)Lorg/eclipse/jst/j2ee/webapplication/ErrorPage;" access="1025"></method-api><method-api name="getErrorPageByExceptionType" descriptor="(Ljava/lang/String;)Lorg/eclipse/jst/j2ee/webapplication/ErrorPage;" access="1025"></method-api><method-api name="getFilterMapping" descriptor="(Lorg/eclipse/jst/j2ee/webapplication/Filter;)Lorg/eclipse/jst/j2ee/webapplication/FilterMapping;" access="1025"></method-api><method-api name="getFilterNamed" descriptor="(Ljava/lang/String;)Lorg/eclipse/jst/j2ee/webapplication/Filter;" access="1025"></method-api><method-api name="getFilterNames" descriptor="()Ljava/util/List;" access="1025"></method-api><method-api name="getMimeType" descriptor="(Ljava/lang/String;)Ljava/lang/String;" access="1025"></method-api><method-api name="getSecurityRoleNamed" descriptor="(Ljava/lang/String;)Lorg/eclipse/jst/j2ee/common/SecurityRole;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.archive.test.SecurityRoleTests"/></test-coverage></method-api><method-api name="getServletMapping" descriptor="(Lorg/eclipse/jst/j2ee/webapplication/Servlet;)Lorg/eclipse/jst/j2ee/webapplication/ServletMapping;" access="1025"></method-api><method-api name="getServletNamed" descriptor="(Ljava/lang/String;)Lorg/eclipse/jst/j2ee/webapplication/Servlet;" access="1025"><test-coverage><test name="org.eclipse.wtp.j2ee.headless.tests.web.operations.AddServletOperationTest"/></test-coverage></method-api><method-api name="getServletNames" descriptor="()Ljava/util/List;" access="1025"></method-api><method-api name="isVersion2_2Descriptor" descriptor="()Z" access="1025"></method-api><method-api name="isVersion2_3Descriptor" descriptor="()Z" access="1025"></method-api><method-api name="renameSecurityRole" descriptor="(Ljava/lang/String;Ljava/lang/String;)V" access="1025"></method-api><method-api name="isDistributable" descriptor="()Z" access="1025"></method-api><method-api name="setDistributable" descriptor="(Z)V" access="1025"></method-api><method-api name="unsetDistributable" descriptor="()V" access="1025"></method-api><method-api name="isSetDistributable" descriptor="()Z" access="1025"></method-api><method-api name="getVersion" descriptor="()Ljava/lang/String;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.archive.emftests.WarEMFTest"/></test-coverage></method-api><method-api name="getVersionID" descriptor="()I" access="1025" throws="java.lang.IllegalStateException"></method-api><method-api name="getJ2EEVersionID" descriptor="()I" access="1025" throws="java.lang.IllegalStateException"></method-api><method-api name="setVersion" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getContexts" descriptor="()Lorg/eclipse/emf/common/util/EList;" access="1025"></method-api><method-api name="getErrorPages" descriptor="()Lorg/eclipse/emf/common/util/EList;" access="1025"></method-api><method-api name="getFileList" descriptor="()Lorg/eclipse/jst/j2ee/webapplication/WelcomeFileList;" access="1025"></method-api><method-api name="getEnvEntries" descriptor="()Lorg/eclipse/emf/common/util/EList;" access="1025"></method-api><method-api name="setFileList" descriptor="(Lorg/eclipse/jst/j2ee/webapplication/WelcomeFileList;)V" access="1025"></method-api><method-api name="getTagLibs" descriptor="()Lorg/eclipse/emf/common/util/EList;" access="1025"></method-api><method-api name="getConstraints" descriptor="()Lorg/eclipse/emf/common/util/EList;" access="1025"></method-api><method-api name="getLoginConfig" descriptor="()Lorg/eclipse/jst/j2ee/webapplication/LoginConfig;" access="1025"></method-api><method-api name="setLoginConfig" descriptor="(Lorg/eclipse/jst/j2ee/webapplication/LoginConfig;)V" access="1025"></method-api><method-api name="getMimeMappings" descriptor="()Lorg/eclipse/emf/common/util/EList;" access="1025"></method-api><method-api name="getSessionConfig" descriptor="()Lorg/eclipse/jst/j2ee/webapplication/SessionConfig;" access="1025"></method-api><method-api name="setSessionConfig" descriptor="(Lorg/eclipse/jst/j2ee/webapplication/SessionConfig;)V" access="1025"></method-api><method-api name="getServletMappings" descriptor="()Lorg/eclipse/emf/common/util/EList;" access="1025"></method-api><method-api name="getServlets" descriptor="()Lorg/eclipse/emf/common/util/EList;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.archive.test.SimpleTests"/><test name="org.eclipse.jst.j2ee.flexible.project.apitests.artifactedit.WebArtifactEditTest"/></test-coverage></method-api><method-api name="getSecurityRoles" descriptor="()Lorg/eclipse/emf/common/util/EList;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.archive.test.SecurityRoleTests"/></test-coverage></method-api><method-api name="getFilters" descriptor="()Lorg/eclipse/emf/common/util/EList;" access="1025"></method-api><method-api name="getFilterMappings" descriptor="()Lorg/eclipse/emf/common/util/EList;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.archive.test.DefectVerificationTests"/></test-coverage></method-api><method-api name="getListeners" descriptor="()Lorg/eclipse/emf/common/util/EList;" access="1025"></method-api><method-api name="getContextParams" descriptor="()Lorg/eclipse/emf/common/util/EList;" access="1025"></method-api><method-api name="getJspConfig" descriptor="()Lorg/eclipse/jst/j2ee/jsp/JSPConfig;" access="1025"></method-api><method-api name="setJspConfig" descriptor="(Lorg/eclipse/jst/j2ee/jsp/JSPConfig;)V" access="1025"></method-api><method-api name="getMessageDestinations" descriptor="()Lorg/eclipse/emf/common/util/EList;" access="1025"></method-api><method-api name="getLocalEncodingMappingList" descriptor="()Lorg/eclipse/jst/j2ee/webapplication/LocalEncodingMappingList;" access="1025"></method-api><method-api name="setLocalEncodingMappingList" descriptor="(Lorg/eclipse/jst/j2ee/webapplication/LocalEncodingMappingList;)V" access="1025"></method-api></class-api><class-api name="org.eclipse.jst.j2ee.webapplication.WebType" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><javadoc-coverage since="false"></javadoc-coverage><method-api name="isJspType" descriptor="()Z" access="1025"><javadoc-coverage return="false"></javadoc-coverage></method-api><method-api name="isServletType" descriptor="()Z" access="1025"><javadoc-coverage return="false"></javadoc-coverage></method-api></class-api><class-api name="org.eclipse.jst.j2ee.webapplication.RoleNameType" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><javadoc-coverage since="false"></javadoc-coverage><method-api name="getRoleName" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setRoleName" descriptor="(Ljava/lang/String;)V" access="1025"></method-api></class-api><class-api name="org.eclipse.jst.j2ee.webapplication.FilterMapping" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><method-api name="getServletName" descriptor="()Ljava/lang/String;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.archive.test.DefectVerificationTests"/></test-coverage></method-api><method-api name="setServletName" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getUrlPattern" descriptor="()Ljava/lang/String;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.archive.test.DefectVerificationTests"/></test-coverage></method-api><method-api name="setUrlPattern" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getDispatcherType" descriptor="()Lorg/eclipse/emf/common/util/EList;" access="1025"></method-api><method-api name="getFilter" descriptor="()Lorg/eclipse/jst/j2ee/webapplication/Filter;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.archive.test.DefectVerificationTests"/></test-coverage></method-api><method-api name="setFilter" descriptor="(Lorg/eclipse/jst/j2ee/webapplication/Filter;)V" access="1025"></method-api><method-api name="getServlet" descriptor="()Lorg/eclipse/jst/j2ee/webapplication/Servlet;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.archive.test.DefectVerificationTests"/></test-coverage></method-api><method-api name="setServlet" descriptor="(Lorg/eclipse/jst/j2ee/webapplication/Servlet;)V" access="1025"></method-api></class-api><class-api name="org.eclipse.jst.j2ee.webapplication.UserDataConstraint" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><method-api name="getDescription" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setDescription" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getTransportGuarantee" descriptor="()Lorg/eclipse/jst/j2ee/webapplication/TransportGuaranteeType;" access="1025"></method-api><method-api name="setTransportGuarantee" descriptor="(Lorg/eclipse/jst/j2ee/webapplication/TransportGuaranteeType;)V" access="1025"></method-api><method-api name="unsetTransportGuarantee" descriptor="()V" access="1025"></method-api><method-api name="isSetTransportGuarantee" descriptor="()Z" access="1025"></method-api><method-api name="getSecConstraint" descriptor="()Lorg/eclipse/jst/j2ee/webapplication/SecurityConstraint;" access="1025"></method-api><method-api name="setSecConstraint" descriptor="(Lorg/eclipse/jst/j2ee/webapplication/SecurityConstraint;)V" access="1025"></method-api><method-api name="getDescriptions" descriptor="()Lorg/eclipse/emf/common/util/EList;" access="1025"></method-api></class-api><class-api name="org.eclipse.jst.j2ee.webapplication.ExceptionTypeErrorPage" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><javadoc-coverage since="false"></javadoc-coverage><method-api name="getExceptionTypeName" descriptor="()Ljava/lang/String;" access="1025"><javadoc-coverage return="false"></javadoc-coverage></method-api><method-api name="setExceptionTypeName" descriptor="(Ljava/lang/String;)V" access="1025"><javadoc-coverage><param name="exceptionTypeName"/></javadoc-coverage></method-api><method-api name="setExceptionTypeName" descriptor="(Ljava/lang/String;Lorg/eclipse/emf/ecore/resource/ResourceSet;)V" access="1025"><javadoc-coverage><param name="exceptionTypeName"/><param name="context"/></javadoc-coverage></method-api><method-api name="getExceptionType" descriptor="()Lorg/eclipse/jem/java/JavaClass;" access="1025"></method-api><method-api name="setExceptionType" descriptor="(Lorg/eclipse/jem/java/JavaClass;)V" access="1025"><javadoc-coverage><param name="value"/></javadoc-coverage></method-api></class-api><class-api name="org.eclipse.jst.j2ee.webapplication.MimeMapping" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><javadoc-coverage since="false"></javadoc-coverage><method-api name="getExtension" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setExtension" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getMimeType" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setMimeType" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getWebApp" descriptor="()Lorg/eclipse/jst/j2ee/webapplication/WebApp;" access="1025"></method-api><method-api name="setWebApp" descriptor="(Lorg/eclipse/jst/j2ee/webapplication/WebApp;)V" access="1025"><javadoc-coverage><param name="value"/></javadoc-coverage></method-api></class-api><class-api name="org.eclipse.jst.j2ee.webapplication.SecurityConstraint" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><method-api name="getDisplayName" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setDisplayName" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getWebApp" descriptor="()Lorg/eclipse/jst/j2ee/webapplication/WebApp;" access="1025"></method-api><method-api name="setWebApp" descriptor="(Lorg/eclipse/jst/j2ee/webapplication/WebApp;)V" access="1025"></method-api><method-api name="getWebResourceCollections" descriptor="()Lorg/eclipse/emf/common/util/EList;" access="1025"></method-api><method-api name="getAuthConstraint" descriptor="()Lorg/eclipse/jst/j2ee/webapplication/AuthConstraint;" access="1025"></method-api><method-api name="setAuthConstraint" descriptor="(Lorg/eclipse/jst/j2ee/webapplication/AuthConstraint;)V" access="1025"></method-api><method-api name="getUserDataConstraint" descriptor="()Lorg/eclipse/jst/j2ee/webapplication/UserDataConstraint;" access="1025"></method-api><method-api name="setUserDataConstraint" descriptor="(Lorg/eclipse/jst/j2ee/webapplication/UserDataConstraint;)V" access="1025"></method-api><method-api name="getDisplayNames" descriptor="()Lorg/eclipse/emf/common/util/EList;" access="1025"></method-api></class-api></package-api><package-api name="org.eclipse.jst.j2ee.common"><class-api name="org.eclipse.jst.j2ee.common.RunAsSpecifiedIdentity" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><javadoc-coverage since="false"></javadoc-coverage><method-api name="getIdentity" descriptor="()Lorg/eclipse/jst/j2ee/common/Identity;" access="1025"></method-api><method-api name="setIdentity" descriptor="(Lorg/eclipse/jst/j2ee/common/Identity;)V" access="1025"><javadoc-coverage><param name="value"/></javadoc-coverage></method-api></class-api><class-api name="org.eclipse.jst.j2ee.common.MessageDestination" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><javadoc-coverage since="false"></javadoc-coverage><method-api name="getName" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setName" descriptor="(Ljava/lang/String;)V" access="1025"></method-api></class-api><class-api name="org.eclipse.jst.j2ee.common.ResourceEnvRef" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><method-api name="getTypeName" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setTypeName" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getDescription" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setDescription" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getName" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setName" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getType" descriptor="()Lorg/eclipse/jem/java/JavaClass;" access="1025"></method-api><method-api name="setType" descriptor="(Lorg/eclipse/jem/java/JavaClass;)V" access="1025"></method-api><method-api name="getDescriptions" descriptor="()Lorg/eclipse/emf/common/util/EList;" access="1025"></method-api></class-api><class-api name="org.eclipse.jst.j2ee.common.DescriptionGroup" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><method-api name="getIcons" descriptor="()Lorg/eclipse/emf/common/util/EList;" access="1025"></method-api><method-api name="getDisplayNames" descriptor="()Lorg/eclipse/emf/common/util/EList;" access="1025"></method-api><method-api name="getDescriptions" descriptor="()Lorg/eclipse/emf/common/util/EList;" access="1025"></method-api></class-api><class-api name="org.eclipse.jst.j2ee.common.ResAuthTypeBase" access="49" reference="true" implement="false" subclass="true" instantiate="true"><method-api name="get" descriptor="(Ljava/lang/String;)Lorg/eclipse/jst/j2ee/common/ResAuthTypeBase;" access="9"></method-api><method-api name="get" descriptor="(I)Lorg/eclipse/jst/j2ee/common/ResAuthTypeBase;" access="9"></method-api><field-api name="CONTAINER" descriptor="I" access="25"></field-api><field-api name="APPLICATION" descriptor="I" access="25"></field-api><field-api name="SERVLET" descriptor="I" access="25"></field-api><field-api name="CONTAINER_LITERAL" descriptor="Lorg/eclipse/jst/j2ee/common/ResAuthTypeBase;" access="25"></field-api><field-api name="APPLICATION_LITERAL" descriptor="Lorg/eclipse/jst/j2ee/common/ResAuthTypeBase;" access="25"></field-api><field-api name="SERVLET_LITERAL" descriptor="Lorg/eclipse/jst/j2ee/common/ResAuthTypeBase;" access="25"></field-api><field-api name="VALUES" descriptor="Ljava/util/List;" access="25"></field-api></class-api><class-api name="org.eclipse.jst.j2ee.common.CompatibilityDescriptionGroup" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><method-api name="getSmallIcon" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setSmallIcon" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="setSmallIconGen" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getLargeIcon" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setLargeIcon" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="setLargeIconGen" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getDescription" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setDescription" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="setDescriptionGen" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getDisplayName" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setDisplayName" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="setDisplayNameGen" descriptor="(Ljava/lang/String;)V" access="1025"></method-api></class-api><class-api name="org.eclipse.jst.j2ee.common.SecurityRole" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><javadoc-coverage since="false"></javadoc-coverage><method-api name="getDescription" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setDescription" descriptor="(Ljava/lang/String;)V" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.archive.test.SecurityRoleTests"/></test-coverage></method-api><method-api name="getRoleName" descriptor="()Ljava/lang/String;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.archive.test.SecurityRoleTests"/></test-coverage></method-api><method-api name="setRoleName" descriptor="(Ljava/lang/String;)V" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.ejb.test.MethodPermissionTest"/><test name="org.eclipse.jst.j2ee.archive.test.SecurityRoleTests"/><test name="org.eclipse.jst.j2ee.application.test.ApplicationTest"/><test name="org.eclipse.jst.j2ee.ejb.test.AssemblyDescriptorTest"/><test name="org.eclipse.jst.j2ee.ejb.test.EJBJarTest"/></test-coverage></method-api><method-api name="getDescriptions" descriptor="()Lorg/eclipse/emf/common/util/EList;" access="1025"></method-api></class-api><class-api name="org.eclipse.jst.j2ee.common.EJBLocalRef" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><javadoc-coverage since="false"></javadoc-coverage><method-api name="getLocal" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="getLocalHome" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setLocal" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="setLocalHome" descriptor="(Ljava/lang/String;)V" access="1025"></method-api></class-api><class-api name="org.eclipse.jst.j2ee.common.EnvEntry" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><method-api name="getDescription" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setDescription" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getName" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setName" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getValue" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setValue" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getType" descriptor="()Lorg/eclipse/jst/j2ee/common/EnvEntryType;" access="1025"></method-api><method-api name="setType" descriptor="(Lorg/eclipse/jst/j2ee/common/EnvEntryType;)V" access="1025"></method-api><method-api name="unsetType" descriptor="()V" access="1025"></method-api><method-api name="isSetType" descriptor="()Z" access="1025"></method-api><method-api name="getDescriptions" descriptor="()Lorg/eclipse/emf/common/util/EList;" access="1025"></method-api></class-api><class-api name="org.eclipse.jst.j2ee.common.Listener" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><javadoc-coverage since="false"></javadoc-coverage><method-api name="getListenerClass" descriptor="()Lorg/eclipse/jem/java/JavaClass;" access="1025"></method-api><method-api name="getListenerClassName" descriptor="()Ljava/lang/String;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.common.test.ListenerTest"/></test-coverage><javadoc-coverage return="false"></javadoc-coverage></method-api><method-api name="setListenerClassName" descriptor="(Ljava/lang/String;)V" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.common.test.ListenerTest"/></test-coverage><javadoc-coverage><param name="listenerClassName"/></javadoc-coverage></method-api><method-api name="setListenerClass" descriptor="(Lorg/eclipse/jem/java/JavaClass;)V" access="1025"><javadoc-coverage><param name="value"/></javadoc-coverage></method-api></class-api><class-api name="org.eclipse.jst.j2ee.common.DisplayName" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><javadoc-coverage since="false"></javadoc-coverage><method-api name="getLang" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setLang" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getValue" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setValue" descriptor="(Ljava/lang/String;)V" access="1025"></method-api></class-api><class-api name="org.eclipse.jst.j2ee.common.ParamValue" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><method-api name="getName" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setName" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getValue" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setValue" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getDescription" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setDescription" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getDescriptions" descriptor="()Lorg/eclipse/emf/common/util/EList;" access="1025"></method-api></class-api><class-api name="org.eclipse.jst.j2ee.common.QName" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><method-api name="getNamespaceURI" descriptor="()Ljava/lang/String;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.common.test.QNameTest"/></test-coverage></method-api><method-api name="setNamespaceURI" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getLocalPart" descriptor="()Ljava/lang/String;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.common.test.QNameTest"/></test-coverage></method-api><method-api name="setLocalPart" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getCombinedQName" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setCombinedQName" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getInternalPrefixOrNsURI" descriptor="()Ljava/lang/String;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.common.test.QNameTest"/></test-coverage></method-api><method-api name="setInternalPrefixOrNsURI" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="setValues" descriptor="(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.common.test.QNameTest"/><test name="org.eclipse.jst.j2ee.archive.emftests.GeneralEMFPopulationTest"/></test-coverage></method-api></class-api><class-api name="org.eclipse.jst.j2ee.common.Description" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><javadoc-coverage since="false"></javadoc-coverage><method-api name="getLang" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setLang" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getValue" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setValue" descriptor="(Ljava/lang/String;)V" access="1025"></method-api></class-api><class-api name="org.eclipse.jst.j2ee.common.EjbRef" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><method-api name="getLinkedEjb" descriptor="(Lorg/eclipse/jst/j2ee/ejb/EJBJar;)Lorg/eclipse/jst/j2ee/ejb/EnterpriseBean;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.common.test.EjbRefTest"/></test-coverage></method-api><method-api name="isEquivalent" descriptor="(Lorg/eclipse/jst/j2ee/common/EjbRef;)Z" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.common.test.EjbRefTest"/></test-coverage></method-api><method-api name="isLinked" descriptor="(Lorg/eclipse/jst/j2ee/ejb/EnterpriseBean;)Z" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.common.test.EjbRefTest"/></test-coverage></method-api><method-api name="isLocal" descriptor="()Z" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.common.test.EjbRefTest"/></test-coverage></method-api><method-api name="getName" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setName" descriptor="(Ljava/lang/String;)V" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.common.test.EjbRefTest"/><test name="org.eclipse.jst.j2ee.ejb.test.EJBJarTest"/></test-coverage></method-api><method-api name="getType" descriptor="()Lorg/eclipse/jst/j2ee/common/EjbRefType;" access="1025"></method-api><method-api name="setType" descriptor="(Lorg/eclipse/jst/j2ee/common/EjbRefType;)V" access="1025"></method-api><method-api name="unsetType" descriptor="()V" access="1025"></method-api><method-api name="isSetType" descriptor="()Z" access="1025"></method-api><method-api name="getHome" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setHome" descriptor="(Ljava/lang/String;)V" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.common.test.EjbRefTest"/></test-coverage></method-api><method-api name="getRemote" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setRemote" descriptor="(Ljava/lang/String;)V" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.common.test.EjbRefTest"/></test-coverage></method-api><method-api name="getLink" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setLink" descriptor="(Ljava/lang/String;)V" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.common.test.EjbRefTest"/><test name="org.eclipse.jst.j2ee.ejb.test.EJBJarTest"/></test-coverage></method-api><method-api name="getDescription" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setDescription" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getDescriptions" descriptor="()Lorg/eclipse/emf/common/util/EList;" access="1025"></method-api></class-api><class-api name="org.eclipse.jst.j2ee.common.MessageDestinationRef" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><method-api name="getName" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setName" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getType" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setType" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getUsage" descriptor="()Lorg/eclipse/jst/j2ee/common/MessageDestinationUsageType;" access="1025"></method-api><method-api name="setUsage" descriptor="(Lorg/eclipse/jst/j2ee/common/MessageDestinationUsageType;)V" access="1025"></method-api><method-api name="getLink" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setLink" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getDescriptions" descriptor="()Lorg/eclipse/emf/common/util/EList;" access="1025"></method-api></class-api><class-api name="org.eclipse.jst.j2ee.common.SecurityRoleRef" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><method-api name="getName" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setName" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getDescription" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setDescription" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getLink" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setLink" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getDescriptions" descriptor="()Lorg/eclipse/emf/common/util/EList;" access="1025"></method-api></class-api><class-api name="org.eclipse.jst.j2ee.common.IconType" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><method-api name="getSmallIcon" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setSmallIcon" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getLargeIcon" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setLargeIcon" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getLang" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setLang" descriptor="(Ljava/lang/String;)V" access="1025"></method-api></class-api><class-api name="org.eclipse.jst.j2ee.common.EnvEntryType" access="49" reference="true" implement="false" subclass="true" instantiate="true"><method-api name="get" descriptor="(Ljava/lang/String;)Lorg/eclipse/jst/j2ee/common/EnvEntryType;" access="9"></method-api><method-api name="get" descriptor="(I)Lorg/eclipse/jst/j2ee/common/EnvEntryType;" access="9"></method-api><field-api name="STRING" descriptor="I" access="25"></field-api><field-api name="INTEGER" descriptor="I" access="25"></field-api><field-api name="BOOLEAN" descriptor="I" access="25"></field-api><field-api name="DOUBLE" descriptor="I" access="25"></field-api><field-api name="BYTE" descriptor="I" access="25"></field-api><field-api name="SHORT" descriptor="I" access="25"></field-api><field-api name="LONG" descriptor="I" access="25"></field-api><field-api name="FLOAT" descriptor="I" access="25"></field-api><field-api name="CHARACTER" descriptor="I" access="25"></field-api><field-api name="STRING_LITERAL" descriptor="Lorg/eclipse/jst/j2ee/common/EnvEntryType;" access="25"></field-api><field-api name="INTEGER_LITERAL" descriptor="Lorg/eclipse/jst/j2ee/common/EnvEntryType;" access="25"></field-api><field-api name="BOOLEAN_LITERAL" descriptor="Lorg/eclipse/jst/j2ee/common/EnvEntryType;" access="25"></field-api><field-api name="DOUBLE_LITERAL" descriptor="Lorg/eclipse/jst/j2ee/common/EnvEntryType;" access="25"></field-api><field-api name="BYTE_LITERAL" descriptor="Lorg/eclipse/jst/j2ee/common/EnvEntryType;" access="25"></field-api><field-api name="SHORT_LITERAL" descriptor="Lorg/eclipse/jst/j2ee/common/EnvEntryType;" access="25"></field-api><field-api name="LONG_LITERAL" descriptor="Lorg/eclipse/jst/j2ee/common/EnvEntryType;" access="25"></field-api><field-api name="FLOAT_LITERAL" descriptor="Lorg/eclipse/jst/j2ee/common/EnvEntryType;" access="25"></field-api><field-api name="CHARACTER_LITERAL" descriptor="Lorg/eclipse/jst/j2ee/common/EnvEntryType;" access="25"></field-api><field-api name="VALUES" descriptor="Ljava/util/List;" access="25"></field-api></class-api><class-api name="org.eclipse.jst.j2ee.common.EjbRefType" access="49" reference="true" implement="false" subclass="true" instantiate="true"><method-api name="get" descriptor="(Ljava/lang/String;)Lorg/eclipse/jst/j2ee/common/EjbRefType;" access="9"></method-api><method-api name="get" descriptor="(I)Lorg/eclipse/jst/j2ee/common/EjbRefType;" access="9"></method-api><field-api name="SESSION" descriptor="I" access="25"></field-api><field-api name="ENTITY" descriptor="I" access="25"></field-api><field-api name="SESSION_LITERAL" descriptor="Lorg/eclipse/jst/j2ee/common/EjbRefType;" access="25"></field-api><field-api name="ENTITY_LITERAL" descriptor="Lorg/eclipse/jst/j2ee/common/EjbRefType;" access="25"></field-api><field-api name="VALUES" descriptor="Ljava/util/List;" access="25"></field-api></class-api><class-api name="org.eclipse.jst.j2ee.common.ExtensibleType" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><javadoc-coverage since="false"></javadoc-coverage><method-api name="getValue" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setValue" descriptor="(Ljava/lang/String;)V" access="1025"></method-api></class-api><class-api name="org.eclipse.jst.j2ee.common.ResSharingScopeType" access="49" reference="true" implement="false" subclass="true" instantiate="true"><method-api name="get" descriptor="(Ljava/lang/String;)Lorg/eclipse/jst/j2ee/common/ResSharingScopeType;" access="9"></method-api><method-api name="get" descriptor="(I)Lorg/eclipse/jst/j2ee/common/ResSharingScopeType;" access="9"></method-api><field-api name="SHAREABLE" descriptor="I" access="25"></field-api><field-api name="UNSHAREABLE" descriptor="I" access="25"></field-api><field-api name="SHAREABLE_LITERAL" descriptor="Lorg/eclipse/jst/j2ee/common/ResSharingScopeType;" access="25"></field-api><field-api name="UNSHAREABLE_LITERAL" descriptor="Lorg/eclipse/jst/j2ee/common/ResSharingScopeType;" access="25"></field-api><field-api name="VALUES" descriptor="Ljava/util/List;" access="25"></field-api></class-api><class-api name="org.eclipse.jst.j2ee.common.Identity" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><javadoc-coverage since="false"></javadoc-coverage><method-api name="getDescription" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setDescription" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getRoleName" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setRoleName" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getDescriptions" descriptor="()Lorg/eclipse/emf/common/util/EList;" access="1025"></method-api></class-api><class-api name="org.eclipse.jst.j2ee.common.UseCallerIdentity" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><javadoc-coverage since="false"></javadoc-coverage></class-api><class-api name="org.eclipse.jst.j2ee.common.CommonFactory" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><method-api name="createEjbRef" descriptor="()Lorg/eclipse/jst/j2ee/common/EjbRef;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.archive.test.ResourceTests"/><test name="org.eclipse.jst.j2ee.common.test.EjbRefTest"/><test name="org.eclipse.jst.j2ee.common.test.CommonFactoryTest"/><test name="org.eclipse.jst.j2ee.ejb.test.EJBJarTest"/></test-coverage></method-api><method-api name="createEnvEntry" descriptor="()Lorg/eclipse/jst/j2ee/common/EnvEntry;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.common.test.CommonFactoryTest"/></test-coverage></method-api><method-api name="createResourceRef" descriptor="()Lorg/eclipse/jst/j2ee/common/ResourceRef;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.common.test.CommonFactoryTest"/></test-coverage></method-api><method-api name="createSecurityRoleRef" descriptor="()Lorg/eclipse/jst/j2ee/common/SecurityRoleRef;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.common.test.CommonFactoryTest"/></test-coverage></method-api><method-api name="createSecurityRole" descriptor="()Lorg/eclipse/jst/j2ee/common/SecurityRole;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.archive.test.SimpleTests"/><test name="org.eclipse.jst.j2ee.ejb.test.MethodPermissionTest"/><test name="org.eclipse.jst.j2ee.archive.test.SecurityRoleTests"/><test name="org.eclipse.jst.j2ee.application.test.ApplicationTest"/><test name="org.eclipse.jst.j2ee.common.test.CommonFactoryTest"/><test name="org.eclipse.jst.j2ee.ejb.test.AssemblyDescriptorTest"/><test name="org.eclipse.jst.j2ee.ejb.test.EJBJarTest"/></test-coverage></method-api><method-api name="createResourceEnvRef" descriptor="()Lorg/eclipse/jst/j2ee/common/ResourceEnvRef;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.common.test.CommonFactoryTest"/></test-coverage></method-api><method-api name="createEJBLocalRef" descriptor="()Lorg/eclipse/jst/j2ee/common/EJBLocalRef;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.common.test.EjbRefTest"/><test name="org.eclipse.jst.j2ee.common.test.CommonFactoryTest"/></test-coverage></method-api><method-api name="createRunAsSpecifiedIdentity" descriptor="()Lorg/eclipse/jst/j2ee/common/RunAsSpecifiedIdentity;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.common.test.CommonFactoryTest"/><test name="org.eclipse.jst.j2ee.archive.emftests.ResolverTest"/><test name="org.eclipse.jst.j2ee.archive.emftests.EjbEMFEditTest"/><test name="org.eclipse.jst.j2ee.archive.emftests.EjbEMFTest"/></test-coverage></method-api><method-api name="createIdentity" descriptor="()Lorg/eclipse/jst/j2ee/common/Identity;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.common.test.CommonFactoryTest"/></test-coverage></method-api><method-api name="createIconType" descriptor="()Lorg/eclipse/jst/j2ee/common/IconType;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.common.test.CommonFactoryTest"/></test-coverage></method-api><method-api name="createDisplayName" descriptor="()Lorg/eclipse/jst/j2ee/common/DisplayName;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.common.test.CommonFactoryTest"/></test-coverage></method-api><method-api name="createMessageDestinationRef" descriptor="()Lorg/eclipse/jst/j2ee/common/MessageDestinationRef;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.common.test.CommonFactoryTest"/></test-coverage></method-api><method-api name="createMessageDestination" descriptor="()Lorg/eclipse/jst/j2ee/common/MessageDestination;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.common.test.CommonFactoryTest"/></test-coverage></method-api><method-api name="createParamValue" descriptor="()Lorg/eclipse/jst/j2ee/common/ParamValue;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.common.test.CommonFactoryTest"/></test-coverage></method-api><method-api name="createDescriptionGroup" descriptor="()Lorg/eclipse/jst/j2ee/common/DescriptionGroup;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.common.test.CommonFactoryTest"/></test-coverage></method-api><method-api name="createSecurityIdentity" descriptor="()Lorg/eclipse/jst/j2ee/common/SecurityIdentity;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.common.test.CommonFactoryTest"/></test-coverage></method-api><method-api name="createUseCallerIdentity" descriptor="()Lorg/eclipse/jst/j2ee/common/UseCallerIdentity;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.common.test.CommonFactoryTest"/><test name="org.eclipse.jst.j2ee.archive.emftests.ResolverTest"/><test name="org.eclipse.jst.j2ee.archive.emftests.EjbEMFEditTest"/><test name="org.eclipse.jst.j2ee.archive.emftests.EjbEMFTest"/></test-coverage></method-api><method-api name="createDescription" descriptor="()Lorg/eclipse/jst/j2ee/common/Description;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.common.test.CommonFactoryTest"/></test-coverage></method-api><method-api name="createQName" descriptor="()Lorg/eclipse/jst/j2ee/common/QName;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.common.test.QNameTest"/><test name="org.eclipse.jst.j2ee.common.test.CommonFactoryTest"/></test-coverage></method-api><method-api name="createListener" descriptor="()Lorg/eclipse/jst/j2ee/common/Listener;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.common.test.CommonFactoryTest"/><test name="org.eclipse.jst.j2ee.common.test.ListenerTest"/></test-coverage></method-api><method-api name="createCompatibilityDescriptionGroup" descriptor="()Lorg/eclipse/jst/j2ee/common/CompatibilityDescriptionGroup;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.common.test.CompatibilityDescriptionGroupTest"/><test name="org.eclipse.jst.j2ee.common.test.CommonFactoryTest"/></test-coverage></method-api><method-api name="getCommonPackage" descriptor="()Lorg/eclipse/jst/j2ee/internal/common/CommonPackage;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.common.test.CommonFactoryTest"/></test-coverage></method-api><field-api name="eINSTANCE" descriptor="Lorg/eclipse/jst/j2ee/common/CommonFactory;" access="25"></field-api></class-api><class-api name="org.eclipse.jst.j2ee.common.SecurityIdentity" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><javadoc-coverage since="false"></javadoc-coverage><method-api name="getDescription" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setDescription" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getDescriptions" descriptor="()Lorg/eclipse/emf/common/util/EList;" access="1025"></method-api><method-api name="isRunAsSpecifiedIdentity" descriptor="()Z" access="1025"><javadoc-coverage return="false"></javadoc-coverage></method-api><method-api name="isUseCallerIdentity" descriptor="()Z" access="1025"><javadoc-coverage return="false"></javadoc-coverage></method-api></class-api><class-api name="org.eclipse.jst.j2ee.common.DeploymentExtension" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><method-api name="getNamespace" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setNamespace" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="isMustUnderstand" descriptor="()Z" access="1025"></method-api><method-api name="setMustUnderstand" descriptor="(Z)V" access="1025"></method-api><method-api name="getExtensionElements" descriptor="()Lorg/eclipse/emf/common/util/EList;" access="1025"></method-api></class-api><class-api name="org.eclipse.jst.j2ee.common.JNDIEnvRefsGroup" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><method-api name="getEnvironmentProperties" descriptor="()Lorg/eclipse/emf/common/util/EList;" access="1025"></method-api><method-api name="getResourceRefs" descriptor="()Lorg/eclipse/emf/common/util/EList;" access="1025"></method-api><method-api name="getEjbRefs" descriptor="()Lorg/eclipse/emf/common/util/EList;" access="1025"></method-api><method-api name="getResourceEnvRefs" descriptor="()Lorg/eclipse/emf/common/util/EList;" access="1025"></method-api><method-api name="getEjbLocalRefs" descriptor="()Lorg/eclipse/emf/common/util/EList;" access="1025"></method-api><method-api name="getMessageDestinationRefs" descriptor="()Lorg/eclipse/emf/common/util/EList;" access="1025"></method-api><method-api name="getServiceRefs" descriptor="()Lorg/eclipse/emf/common/util/EList;" access="1025"></method-api></class-api><class-api name="org.eclipse.jst.j2ee.common.MessageDestinationUsageType" access="49" reference="true" implement="false" subclass="true" instantiate="true"><method-api name="get" descriptor="(Ljava/lang/String;)Lorg/eclipse/jst/j2ee/common/MessageDestinationUsageType;" access="9"></method-api><method-api name="get" descriptor="(I)Lorg/eclipse/jst/j2ee/common/MessageDestinationUsageType;" access="9"></method-api><field-api name="CONSUMES" descriptor="I" access="25"></field-api><field-api name="PRODUCES" descriptor="I" access="25"></field-api><field-api name="CONSUMES_PRODUCES" descriptor="I" access="25"></field-api><field-api name="CONSUMES_LITERAL" descriptor="Lorg/eclipse/jst/j2ee/common/MessageDestinationUsageType;" access="25"></field-api><field-api name="PRODUCES_LITERAL" descriptor="Lorg/eclipse/jst/j2ee/common/MessageDestinationUsageType;" access="25"></field-api><field-api name="CONSUMES_PRODUCES_LITERAL" descriptor="Lorg/eclipse/jst/j2ee/common/MessageDestinationUsageType;" access="25"></field-api><field-api name="VALUES" descriptor="Ljava/util/List;" access="25"></field-api></class-api><class-api name="org.eclipse.jst.j2ee.common.ResourceRef" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><method-api name="getDescription" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setDescription" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getName" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setName" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getType" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setType" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getAuth" descriptor="()Lorg/eclipse/jst/j2ee/common/ResAuthTypeBase;" access="1025"></method-api><method-api name="setAuth" descriptor="(Lorg/eclipse/jst/j2ee/common/ResAuthTypeBase;)V" access="1025"></method-api><method-api name="unsetAuth" descriptor="()V" access="1025"></method-api><method-api name="isSetAuth" descriptor="()Z" access="1025"></method-api><method-api name="getLink" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setLink" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getResSharingScope" descriptor="()Lorg/eclipse/jst/j2ee/common/ResSharingScopeType;" access="1025"></method-api><method-api name="setResSharingScope" descriptor="(Lorg/eclipse/jst/j2ee/common/ResSharingScopeType;)V" access="1025"></method-api><method-api name="unsetResSharingScope" descriptor="()V" access="1025"></method-api><method-api name="isSetResSharingScope" descriptor="()Z" access="1025"></method-api><method-api name="getDescriptions" descriptor="()Lorg/eclipse/emf/common/util/EList;" access="1025"></method-api></class-api></package-api><package-api name="org.eclipse.jst.j2ee.webservice.wsdd"><class-api name="org.eclipse.jst.j2ee.webservice.wsdd.WsddResource" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><javadoc-coverage since="false"></javadoc-coverage><method-api name="getWebServices" descriptor="()Lorg/eclipse/jst/j2ee/webservice/wsdd/WebServices;" access="1025"><javadoc-coverage return="false"></javadoc-coverage></method-api><method-api name="isWebService1_0" descriptor="()Z" access="1025"><javadoc-coverage return="false"></javadoc-coverage></method-api><method-api name="isWebService1_1" descriptor="()Z" access="1025"><javadoc-coverage return="false"></javadoc-coverage></method-api><field-api name="WEB_SERVICE_TYPE" descriptor="I" access="25"><javadoc-coverage></javadoc-coverage></field-api></class-api><class-api name="org.eclipse.jst.j2ee.webservice.wsdd.ServletLink" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><javadoc-coverage since="false"></javadoc-coverage><method-api name="getServletLink" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setServletLink" descriptor="(Ljava/lang/String;)V" access="1025"></method-api></class-api><class-api name="org.eclipse.jst.j2ee.webservice.wsdd.PortComponent" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><method-api name="getPortComponentName" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setPortComponentName" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getServiceEndpointInterface" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setServiceEndpointInterface" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getSmallIcon" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setSmallIcon" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getLargeIcon" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setLargeIcon" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getDescription" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setDescription" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getDisplayName" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setDisplayName" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getWsdlPort" descriptor="()Lorg/eclipse/jst/j2ee/webservice/wsdd/WSDLPort;" access="1025"></method-api><method-api name="setWsdlPort" descriptor="(Lorg/eclipse/jst/j2ee/webservice/wsdd/WSDLPort;)V" access="1025"></method-api><method-api name="getServiceImplBean" descriptor="()Lorg/eclipse/jst/j2ee/webservice/wsdd/ServiceImplBean;" access="1025"></method-api><method-api name="setServiceImplBean" descriptor="(Lorg/eclipse/jst/j2ee/webservice/wsdd/ServiceImplBean;)V" access="1025"></method-api><method-api name="getHandlers" descriptor="()Lorg/eclipse/emf/common/util/EList;" access="1025"></method-api><method-api name="getDescriptionType" descriptor="()Lorg/eclipse/jst/j2ee/webservice/wscommon/DescriptionType;" access="1025"></method-api><method-api name="setDescriptionType" descriptor="(Lorg/eclipse/jst/j2ee/webservice/wscommon/DescriptionType;)V" access="1025"></method-api><method-api name="getDisplayNameType" descriptor="()Lorg/eclipse/jst/j2ee/webservice/wscommon/DisplayNameType;" access="1025"></method-api><method-api name="setDisplayNameType" descriptor="(Lorg/eclipse/jst/j2ee/webservice/wscommon/DisplayNameType;)V" access="1025"></method-api><method-api name="getIconType" descriptor="()Lorg/eclipse/jst/j2ee/common/IconType;" access="1025"></method-api><method-api name="setIconType" descriptor="(Lorg/eclipse/jst/j2ee/common/IconType;)V" access="1025"></method-api></class-api><class-api name="org.eclipse.jst.j2ee.webservice.wsdd.Handler" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><method-api name="getHandlerName" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setHandlerName" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getHandlerClass" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setHandlerClass" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getInitParams" descriptor="()Lorg/eclipse/emf/common/util/EList;" access="1025"></method-api><method-api name="getSoapHeaders" descriptor="()Lorg/eclipse/emf/common/util/EList;" access="1025"></method-api><method-api name="getSoapRoles" descriptor="()Lorg/eclipse/emf/common/util/EList;" access="1025"></method-api></class-api><class-api name="org.eclipse.jst.j2ee.webservice.wsdd.EJBLink" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><javadoc-coverage since="false"></javadoc-coverage><method-api name="getEjbLink" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setEjbLink" descriptor="(Ljava/lang/String;)V" access="1025"></method-api></class-api><class-api name="org.eclipse.jst.j2ee.webservice.wsdd.WsddFactory" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><method-api name="createWebServices" descriptor="()Lorg/eclipse/jst/j2ee/webservice/wsdd/WebServices;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.archive.emftests.WebServicesEMFTest"/><test name="org.eclipse.jst.j2ee.webservice.wsdd.test.WsddFactoryTest"/></test-coverage></method-api><method-api name="createWebServiceDescription" descriptor="()Lorg/eclipse/jst/j2ee/webservice/wsdd/WebServiceDescription;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.webservice.wsdd.test.WsddFactoryTest"/></test-coverage></method-api><method-api name="createPortComponent" descriptor="()Lorg/eclipse/jst/j2ee/webservice/wsdd/PortComponent;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.webservice.wsdd.test.WsddFactoryTest"/></test-coverage></method-api><method-api name="createWSDLPort" descriptor="()Lorg/eclipse/jst/j2ee/webservice/wsdd/WSDLPort;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.webservice.wsdd.test.WsddFactoryTest"/></test-coverage></method-api><method-api name="createServiceImplBean" descriptor="()Lorg/eclipse/jst/j2ee/webservice/wsdd/ServiceImplBean;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.webservice.wsdd.test.WsddFactoryTest"/></test-coverage></method-api><method-api name="createServletLink" descriptor="()Lorg/eclipse/jst/j2ee/webservice/wsdd/ServletLink;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.webservice.wsdd.test.WsddFactoryTest"/></test-coverage></method-api><method-api name="createEJBLink" descriptor="()Lorg/eclipse/jst/j2ee/webservice/wsdd/EJBLink;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.webservice.wsdd.test.WsddFactoryTest"/></test-coverage></method-api><method-api name="createHandler" descriptor="()Lorg/eclipse/jst/j2ee/webservice/wsdd/Handler;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.webservice.wsdd.test.WsddFactoryTest"/></test-coverage></method-api><method-api name="createBeanLink" descriptor="()Lorg/eclipse/jst/j2ee/webservice/wsdd/BeanLink;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.webservice.wsdd.test.WsddFactoryTest"/></test-coverage></method-api><method-api name="getWsddPackage" descriptor="()Lorg/eclipse/jst/j2ee/webservice/internal/wsdd/WsddPackage;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.webservice.wsdd.test.WsddFactoryTest"/></test-coverage></method-api><field-api name="eINSTANCE" descriptor="Lorg/eclipse/jst/j2ee/webservice/wsdd/WsddFactory;" access="25"></field-api></class-api><class-api name="org.eclipse.jst.j2ee.webservice.wsdd.ServiceImplBean" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><method-api name="getEEJBLink" descriptor="()Lorg/eclipse/jst/j2ee/webservice/wsdd/EJBLink;" access="1025"></method-api><method-api name="setEEJBLink" descriptor="(Lorg/eclipse/jst/j2ee/webservice/wsdd/EJBLink;)V" access="1025"></method-api><method-api name="getEServletLink" descriptor="()Lorg/eclipse/jst/j2ee/webservice/wsdd/ServletLink;" access="1025"></method-api><method-api name="setEServletLink" descriptor="(Lorg/eclipse/jst/j2ee/webservice/wsdd/ServletLink;)V" access="1025"></method-api><method-api name="getBeanLink" descriptor="()Lorg/eclipse/jst/j2ee/webservice/wsdd/BeanLink;" access="1025"></method-api><method-api name="setBeanLink" descriptor="(Lorg/eclipse/jst/j2ee/webservice/wsdd/BeanLink;)V" access="1025"></method-api></class-api><class-api name="org.eclipse.jst.j2ee.webservice.wsdd.WSDLPort" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><javadoc-coverage since="false"></javadoc-coverage></class-api><class-api name="org.eclipse.jst.j2ee.webservice.wsdd.WebServices" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><javadoc-coverage since="false"></javadoc-coverage><method-api name="getWebServiceDescriptions" descriptor="()Lorg/eclipse/emf/common/util/EList;" access="1025"></method-api></class-api><class-api name="org.eclipse.jst.j2ee.webservice.wsdd.WebServiceDescription" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><method-api name="getJaxrpcMappingFile" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setJaxrpcMappingFile" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getWebServiceDescriptionName" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setWebServiceDescriptionName" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getWsdlFile" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setWsdlFile" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getSmallIcon" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setSmallIcon" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getLargeIcon" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setLargeIcon" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getDescription" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setDescription" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getDisplayName" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setDisplayName" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getPortComponents" descriptor="()Lorg/eclipse/emf/common/util/EList;" access="1025"></method-api><method-api name="getDescriptionType" descriptor="()Lorg/eclipse/jst/j2ee/webservice/wscommon/DescriptionType;" access="1025"></method-api><method-api name="setDescriptionType" descriptor="(Lorg/eclipse/jst/j2ee/webservice/wscommon/DescriptionType;)V" access="1025"></method-api><method-api name="getDisplayNameType" descriptor="()Lorg/eclipse/jst/j2ee/webservice/wscommon/DisplayNameType;" access="1025"></method-api><method-api name="setDisplayNameType" descriptor="(Lorg/eclipse/jst/j2ee/webservice/wscommon/DisplayNameType;)V" access="1025"></method-api><method-api name="getIconType" descriptor="()Lorg/eclipse/jst/j2ee/common/IconType;" access="1025"></method-api><method-api name="setIconType" descriptor="(Lorg/eclipse/jst/j2ee/common/IconType;)V" access="1025"></method-api></class-api><class-api name="org.eclipse.jst.j2ee.webservice.wsdd.BeanLink" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><javadoc-coverage since="false"></javadoc-coverage></class-api></package-api><package-api name="org.eclipse.jst.j2ee.webservice.wscommon"><class-api name="org.eclipse.jst.j2ee.webservice.wscommon.PortName" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><javadoc-coverage since="false"></javadoc-coverage><method-api name="getPortName" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setPortName" descriptor="(Ljava/lang/String;)V" access="1025"></method-api></class-api><class-api name="org.eclipse.jst.j2ee.webservice.wscommon.DescriptionType" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><javadoc-coverage since="false"></javadoc-coverage></class-api><class-api name="org.eclipse.jst.j2ee.webservice.wscommon.SOAPRole" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><javadoc-coverage since="false"></javadoc-coverage><method-api name="getSoapRole" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setSoapRole" descriptor="(Ljava/lang/String;)V" access="1025"></method-api></class-api><class-api name="org.eclipse.jst.j2ee.webservice.wscommon.InitParam" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><method-api name="getParamName" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setParamName" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getParamValue" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setParamValue" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getDescription" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setDescription" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getDescriptionTypes" descriptor="()Lorg/eclipse/emf/common/util/EList;" access="1025"></method-api></class-api><class-api name="org.eclipse.jst.j2ee.webservice.wscommon.WscommonFactory" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><javadoc-coverage since="false"></javadoc-coverage><method-api name="createInitParam" descriptor="()Lorg/eclipse/jst/j2ee/webservice/wscommon/InitParam;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.webservice.wscommon.test.WscommonFactoryTest"/></test-coverage></method-api><method-api name="createSOAPHeader" descriptor="()Lorg/eclipse/jst/j2ee/webservice/wscommon/SOAPHeader;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.webservice.wscommon.test.WscommonFactoryTest"/></test-coverage></method-api><method-api name="createSOAPRole" descriptor="()Lorg/eclipse/jst/j2ee/webservice/wscommon/SOAPRole;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.webservice.wscommon.test.WscommonFactoryTest"/></test-coverage></method-api><method-api name="createPortName" descriptor="()Lorg/eclipse/jst/j2ee/webservice/wscommon/PortName;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.webservice.wscommon.test.WscommonFactoryTest"/></test-coverage></method-api><method-api name="createDescriptionType" descriptor="()Lorg/eclipse/jst/j2ee/webservice/wscommon/DescriptionType;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.webservice.wscommon.test.WscommonFactoryTest"/></test-coverage></method-api><method-api name="createDisplayNameType" descriptor="()Lorg/eclipse/jst/j2ee/webservice/wscommon/DisplayNameType;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.webservice.wscommon.test.WscommonFactoryTest"/></test-coverage></method-api><method-api name="getWscommonPackage" descriptor="()Lorg/eclipse/jst/j2ee/webservice/internal/wscommon/WscommonPackage;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.webservice.wscommon.test.WscommonFactoryTest"/></test-coverage></method-api><field-api name="eINSTANCE" descriptor="Lorg/eclipse/jst/j2ee/webservice/wscommon/WscommonFactory;" access="25"></field-api></class-api><class-api name="org.eclipse.jst.j2ee.webservice.wscommon.SOAPHeader" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><javadoc-coverage since="false"></javadoc-coverage></class-api><class-api name="org.eclipse.jst.j2ee.webservice.wscommon.DisplayNameType" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><javadoc-coverage since="false"></javadoc-coverage></class-api></package-api><package-api name="org.eclipse.jst.j2ee.jca"><class-api name="org.eclipse.jst.j2ee.jca.Connector" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><method-api name="getVersionID" descriptor="()I" access="1025" throws="java.lang.IllegalStateException"><test-coverage><test name="org.eclipse.jst.j2ee.jca.test.ConnectorTest"/></test-coverage></method-api><method-api name="getVendorName" descriptor="()Ljava/lang/String;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.archive.test.RarFileTests"/></test-coverage></method-api><method-api name="setVendorName" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getSpecVersion" descriptor="()Ljava/lang/String;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.archive.emftests.RarEMFEditTest"/><test name="org.eclipse.jst.j2ee.archive.test.RarFileTests"/><test name="org.eclipse.jst.j2ee.archive.emftests.RarEMFTest"/></test-coverage></method-api><method-api name="setSpecVersion" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getEisType" descriptor="()Ljava/lang/String;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.archive.test.RarFileTests"/></test-coverage></method-api><method-api name="setEisType" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getVersion" descriptor="()Ljava/lang/String;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.archive.test.RarFileTests"/></test-coverage></method-api><method-api name="setVersion" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getLicense" descriptor="()Lorg/eclipse/jst/j2ee/jca/License;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.archive.test.RarFileTests"/></test-coverage></method-api><method-api name="setLicense" descriptor="(Lorg/eclipse/jst/j2ee/jca/License;)V" access="1025"></method-api><method-api name="getResourceAdapter" descriptor="()Lorg/eclipse/jst/j2ee/jca/ResourceAdapter;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.archive.test.RarFileTests"/></test-coverage></method-api><method-api name="setResourceAdapter" descriptor="(Lorg/eclipse/jst/j2ee/jca/ResourceAdapter;)V" access="1025"></method-api></class-api><class-api name="org.eclipse.jst.j2ee.jca.TransactionSupportKind" access="49" reference="true" implement="false" subclass="true" instantiate="true"><method-api name="get" descriptor="(Ljava/lang/String;)Lorg/eclipse/jst/j2ee/jca/TransactionSupportKind;" access="9"></method-api><method-api name="get" descriptor="(I)Lorg/eclipse/jst/j2ee/jca/TransactionSupportKind;" access="9"></method-api><field-api name="NO_TRANSACTION" descriptor="I" access="25"></field-api><field-api name="LOCAL_TRANSACTION" descriptor="I" access="25"></field-api><field-api name="XA_TRANSACTION" descriptor="I" access="25"></field-api><field-api name="NO_TRANSACTION_LITERAL" descriptor="Lorg/eclipse/jst/j2ee/jca/TransactionSupportKind;" access="25"></field-api><field-api name="LOCAL_TRANSACTION_LITERAL" descriptor="Lorg/eclipse/jst/j2ee/jca/TransactionSupportKind;" access="25"></field-api><field-api name="XA_TRANSACTION_LITERAL" descriptor="Lorg/eclipse/jst/j2ee/jca/TransactionSupportKind;" access="25"></field-api><field-api name="VALUES" descriptor="Ljava/util/List;" access="25"></field-api></class-api><class-api name="org.eclipse.jst.j2ee.jca.ConnectorResource" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><javadoc-coverage since="false"></javadoc-coverage><method-api name="getConnector" descriptor="()Lorg/eclipse/jst/j2ee/jca/Connector;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.jca.test.ConnectorTest"/></test-coverage><javadoc-coverage return="false"></javadoc-coverage></method-api></class-api><class-api name="org.eclipse.jst.j2ee.jca.ConfigProperty" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><method-api name="getDescription" descriptor="()Ljava/lang/String;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.archive.test.RarFileTests"/></test-coverage></method-api><method-api name="setDescription" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getName" descriptor="()Ljava/lang/String;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.archive.test.RarFileTests"/></test-coverage></method-api><method-api name="setName" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getType" descriptor="()Ljava/lang/String;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.archive.test.RarFileTests"/></test-coverage></method-api><method-api name="setType" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getValue" descriptor="()Ljava/lang/String;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.archive.test.RarFileTests"/></test-coverage></method-api><method-api name="setValue" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getDescriptions" descriptor="()Lorg/eclipse/emf/common/util/EList;" access="1025"></method-api></class-api><class-api name="org.eclipse.jst.j2ee.jca.AuthenticationMechanism" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><method-api name="getDescription" descriptor="()Ljava/lang/String;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.archive.test.RarFileTests"/></test-coverage></method-api><method-api name="setDescription" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getAuthenticationMechanism" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setAuthenticationMechanism" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getAuthenticationMechanismType" descriptor="()Lorg/eclipse/jst/j2ee/jca/AuthenticationMechanismType;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.archive.test.RarFileTests"/></test-coverage></method-api><method-api name="setAuthenticationMechanismType" descriptor="(Lorg/eclipse/jst/j2ee/jca/AuthenticationMechanismType;)V" access="1025"></method-api><method-api name="unsetAuthenticationMechanismType" descriptor="()V" access="1025"></method-api><method-api name="isSetAuthenticationMechanismType" descriptor="()Z" access="1025"></method-api><method-api name="getCredentialInterface" descriptor="()Ljava/lang/String;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.archive.test.RarFileTests"/></test-coverage></method-api><method-api name="setCredentialInterface" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getCustomAuthMechType" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setCustomAuthMechType" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getDescriptions" descriptor="()Lorg/eclipse/emf/common/util/EList;" access="1025"></method-api></class-api><class-api name="org.eclipse.jst.j2ee.jca.AdminObject" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><method-api name="getAdminObjectInterface" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setAdminObjectInterface" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getAdminObjectClass" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setAdminObjectClass" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getConfigProperties" descriptor="()Lorg/eclipse/emf/common/util/EList;" access="1025"></method-api></class-api><class-api name="org.eclipse.jst.j2ee.jca.RequiredConfigPropertyType" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><javadoc-coverage since="false"></javadoc-coverage><method-api name="getName" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setName" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getDescriptions" descriptor="()Lorg/eclipse/emf/common/util/EList;" access="1025"></method-api></class-api><class-api name="org.eclipse.jst.j2ee.jca.AuthenticationMechanismType" access="49" reference="true" implement="false" subclass="true" instantiate="true"><method-api name="get" descriptor="(Ljava/lang/String;)Lorg/eclipse/jst/j2ee/jca/AuthenticationMechanismType;" access="9"></method-api><method-api name="get" descriptor="(I)Lorg/eclipse/jst/j2ee/jca/AuthenticationMechanismType;" access="9"></method-api><field-api name="BASIC_PASSWORD" descriptor="I" access="25"></field-api><field-api name="KERBV5" descriptor="I" access="25"></field-api><field-api name="BASIC_PASSWORD_LITERAL" descriptor="Lorg/eclipse/jst/j2ee/jca/AuthenticationMechanismType;" access="25"></field-api><field-api name="KERBV5_LITERAL" descriptor="Lorg/eclipse/jst/j2ee/jca/AuthenticationMechanismType;" access="25"></field-api><field-api name="VALUES" descriptor="Ljava/util/List;" access="25"></field-api></class-api><class-api name="org.eclipse.jst.j2ee.jca.MessageListener" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><method-api name="getMessageListenerType" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setMessageListenerType" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getActivationSpec" descriptor="()Lorg/eclipse/jst/j2ee/jca/ActivationSpec;" access="1025"></method-api><method-api name="setActivationSpec" descriptor="(Lorg/eclipse/jst/j2ee/jca/ActivationSpec;)V" access="1025"></method-api></class-api><class-api name="org.eclipse.jst.j2ee.jca.SecurityPermission" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><javadoc-coverage since="false"></javadoc-coverage><method-api name="getDescription" descriptor="()Ljava/lang/String;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.archive.test.RarFileTests"/></test-coverage></method-api><method-api name="setDescription" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getSpecification" descriptor="()Ljava/lang/String;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.archive.test.RarFileTests"/></test-coverage></method-api><method-api name="setSpecification" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getDescriptions" descriptor="()Lorg/eclipse/emf/common/util/EList;" access="1025"></method-api></class-api><class-api name="org.eclipse.jst.j2ee.jca.ResourceAdapter" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><method-api name="getManagedConnectionFactoryClass" descriptor="()Ljava/lang/String;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.archive.test.RarFileTests"/></test-coverage></method-api><method-api name="setManagedConnectionFactoryClass" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getConnectionFactoryInterface" descriptor="()Ljava/lang/String;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.archive.test.RarFileTests"/></test-coverage></method-api><method-api name="setConnectionFactoryInterface" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getConnectionFactoryImplClass" descriptor="()Ljava/lang/String;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.archive.test.RarFileTests"/></test-coverage></method-api><method-api name="setConnectionFactoryImplClass" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getConnectionInterface" descriptor="()Ljava/lang/String;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.archive.test.RarFileTests"/></test-coverage></method-api><method-api name="setConnectionInterface" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getConnectionImplClass" descriptor="()Ljava/lang/String;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.archive.test.RarFileTests"/></test-coverage></method-api><method-api name="setConnectionImplClass" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getTransactionSupport" descriptor="()Lorg/eclipse/jst/j2ee/jca/TransactionSupportKind;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.archive.test.RarFileTests"/></test-coverage></method-api><method-api name="setTransactionSupport" descriptor="(Lorg/eclipse/jst/j2ee/jca/TransactionSupportKind;)V" access="1025"></method-api><method-api name="unsetTransactionSupport" descriptor="()V" access="1025"></method-api><method-api name="isSetTransactionSupport" descriptor="()Z" access="1025"></method-api><method-api name="isReauthenticationSupport" descriptor="()Z" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.archive.test.RarFileTests"/></test-coverage></method-api><method-api name="setReauthenticationSupport" descriptor="(Z)V" access="1025"></method-api><method-api name="unsetReauthenticationSupport" descriptor="()V" access="1025"></method-api><method-api name="isSetReauthenticationSupport" descriptor="()Z" access="1025"></method-api><method-api name="getResourceAdapterClass" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setResourceAdapterClass" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getSecurityPermissions" descriptor="()Lorg/eclipse/emf/common/util/EList;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.archive.test.RarFileTests"/></test-coverage></method-api><method-api name="getAuthenticationMechanisms" descriptor="()Lorg/eclipse/emf/common/util/EList;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.archive.test.RarFileTests"/></test-coverage></method-api><method-api name="getConfigProperties" descriptor="()Lorg/eclipse/emf/common/util/EList;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.archive.test.RarFileTests"/></test-coverage></method-api><method-api name="getOutboundResourceAdapter" descriptor="()Lorg/eclipse/jst/j2ee/jca/OutboundResourceAdapter;" access="1025"></method-api><method-api name="setOutboundResourceAdapter" descriptor="(Lorg/eclipse/jst/j2ee/jca/OutboundResourceAdapter;)V" access="1025"></method-api><method-api name="getInboundResourceAdapter" descriptor="()Lorg/eclipse/jst/j2ee/jca/InboundResourceAdapter;" access="1025"></method-api><method-api name="setInboundResourceAdapter" descriptor="(Lorg/eclipse/jst/j2ee/jca/InboundResourceAdapter;)V" access="1025"></method-api><method-api name="getAdminObjects" descriptor="()Lorg/eclipse/emf/common/util/EList;" access="1025"></method-api></class-api><class-api name="org.eclipse.jst.j2ee.jca.ActivationSpec" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><javadoc-coverage since="false"></javadoc-coverage><method-api name="getActivationSpecClass" descriptor="()Ljava/lang/String;" access="1025"><javadoc-coverage return="false"></javadoc-coverage></method-api><method-api name="setActivationSpecClass" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getRequiredConfigProperties" descriptor="()Lorg/eclipse/emf/common/util/EList;" access="1025"></method-api></class-api><class-api name="org.eclipse.jst.j2ee.jca.MessageAdapter" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><method-api name="getMessageListeners" descriptor="()Lorg/eclipse/emf/common/util/EList;" access="1025"></method-api></class-api><class-api name="org.eclipse.jst.j2ee.jca.InboundResourceAdapter" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><javadoc-coverage since="false"></javadoc-coverage><method-api name="getMessageAdapter" descriptor="()Lorg/eclipse/jst/j2ee/jca/MessageAdapter;" access="1025"></method-api><method-api name="setMessageAdapter" descriptor="(Lorg/eclipse/jst/j2ee/jca/MessageAdapter;)V" access="1025"></method-api></class-api><class-api name="org.eclipse.jst.j2ee.jca.ConnectionDefinition" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><javadoc-coverage since="false"></javadoc-coverage><method-api name="getManagedConnectionFactoryClass" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setManagedConnectionFactoryClass" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getConnectionFactoryInterface" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setConnectionFactoryInterface" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getConnectionFactoryImplClass" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setConnectionFactoryImplClass" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getConnectionInterface" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setConnectionInterface" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getConnectionImplClass" descriptor="()Ljava/lang/String;" access="1025"><javadoc-coverage return="false"></javadoc-coverage></method-api><method-api name="setConnectionImplClass" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getConfigProperties" descriptor="()Lorg/eclipse/emf/common/util/EList;" access="1025"></method-api></class-api><class-api name="org.eclipse.jst.j2ee.jca.OutboundResourceAdapter" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><method-api name="isReauthenticationSupport" descriptor="()Z" access="1025"></method-api><method-api name="setReauthenticationSupport" descriptor="(Z)V" access="1025"></method-api><method-api name="unsetReauthenticationSupport" descriptor="()V" access="1025"></method-api><method-api name="isSetReauthenticationSupport" descriptor="()Z" access="1025"></method-api><method-api name="getTransactionSupport" descriptor="()Lorg/eclipse/jst/j2ee/jca/TransactionSupportKind;" access="1025"></method-api><method-api name="setTransactionSupport" descriptor="(Lorg/eclipse/jst/j2ee/jca/TransactionSupportKind;)V" access="1025"></method-api><method-api name="unsetTransactionSupport" descriptor="()V" access="1025"></method-api><method-api name="isSetTransactionSupport" descriptor="()Z" access="1025"></method-api><method-api name="getConnectionDefinitions" descriptor="()Lorg/eclipse/emf/common/util/EList;" access="1025"></method-api><method-api name="getAuthenticationMechanisms" descriptor="()Lorg/eclipse/emf/common/util/EList;" access="1025"></method-api></class-api><class-api name="org.eclipse.jst.j2ee.jca.JcaFactory" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><method-api name="createConnector" descriptor="()Lorg/eclipse/jst/j2ee/jca/Connector;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.jca.test.ConnectorTest"/><test name="org.eclipse.jst.j2ee.jca.test.JcaFactoryTest"/></test-coverage></method-api><method-api name="createLicense" descriptor="()Lorg/eclipse/jst/j2ee/jca/License;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.jca.test.JcaFactoryTest"/></test-coverage></method-api><method-api name="createInboundResourceAdapter" descriptor="()Lorg/eclipse/jst/j2ee/jca/InboundResourceAdapter;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.jca.test.JcaFactoryTest"/></test-coverage></method-api><method-api name="createOutboundResourceAdapter" descriptor="()Lorg/eclipse/jst/j2ee/jca/OutboundResourceAdapter;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.jca.test.JcaFactoryTest"/></test-coverage></method-api><method-api name="createMessageAdapter" descriptor="()Lorg/eclipse/jst/j2ee/jca/MessageAdapter;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.jca.test.JcaFactoryTest"/></test-coverage></method-api><method-api name="createConnectionDefinition" descriptor="()Lorg/eclipse/jst/j2ee/jca/ConnectionDefinition;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.jca.test.JcaFactoryTest"/></test-coverage></method-api><method-api name="createAdminObject" descriptor="()Lorg/eclipse/jst/j2ee/jca/AdminObject;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.jca.test.JcaFactoryTest"/></test-coverage></method-api><method-api name="createMessageListener" descriptor="()Lorg/eclipse/jst/j2ee/jca/MessageListener;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.jca.test.JcaFactoryTest"/></test-coverage></method-api><method-api name="createActivationSpec" descriptor="()Lorg/eclipse/jst/j2ee/jca/ActivationSpec;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.jca.test.JcaFactoryTest"/></test-coverage></method-api><method-api name="createRequiredConfigPropertyType" descriptor="()Lorg/eclipse/jst/j2ee/jca/RequiredConfigPropertyType;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.jca.test.JcaFactoryTest"/></test-coverage></method-api><method-api name="createResourceAdapter" descriptor="()Lorg/eclipse/jst/j2ee/jca/ResourceAdapter;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.jca.test.JcaFactoryTest"/></test-coverage></method-api><method-api name="createSecurityPermission" descriptor="()Lorg/eclipse/jst/j2ee/jca/SecurityPermission;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.jca.test.JcaFactoryTest"/></test-coverage></method-api><method-api name="createAuthenticationMechanism" descriptor="()Lorg/eclipse/jst/j2ee/jca/AuthenticationMechanism;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.jca.test.JcaFactoryTest"/></test-coverage></method-api><method-api name="createConfigProperty" descriptor="()Lorg/eclipse/jst/j2ee/jca/ConfigProperty;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.jca.test.JcaFactoryTest"/></test-coverage></method-api><method-api name="getJcaPackage" descriptor="()Lorg/eclipse/jst/j2ee/internal/jca/JcaPackage;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.jca.test.JcaFactoryTest"/></test-coverage></method-api><field-api name="eINSTANCE" descriptor="Lorg/eclipse/jst/j2ee/jca/JcaFactory;" access="25"></field-api></class-api><class-api name="org.eclipse.jst.j2ee.jca.License" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><method-api name="getDescription" descriptor="()Ljava/lang/String;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.archive.test.RarFileTests"/></test-coverage></method-api><method-api name="setDescription" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="isRequired" descriptor="()Z" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.archive.test.RarFileTests"/></test-coverage></method-api><method-api name="setRequired" descriptor="(Z)V" access="1025"></method-api><method-api name="unsetRequired" descriptor="()V" access="1025"></method-api><method-api name="isSetRequired" descriptor="()Z" access="1025"></method-api><method-api name="getDescriptions" descriptor="()Lorg/eclipse/emf/common/util/EList;" access="1025"></method-api></class-api></package-api><package-api name="org.eclipse.jst.j2ee.jsp"><class-api name="org.eclipse.jst.j2ee.jsp.TagLibRefType" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><method-api name="getTaglibURI" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setTaglibURI" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getTaglibLocation" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setTaglibLocation" descriptor="(Ljava/lang/String;)V" access="1025"></method-api></class-api><class-api name="org.eclipse.jst.j2ee.jsp.JspFactory" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><javadoc-coverage since="false"></javadoc-coverage><method-api name="createJSPConfig" descriptor="()Lorg/eclipse/jst/j2ee/jsp/JSPConfig;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.jsp.test.JspFactoryTest"/></test-coverage></method-api><method-api name="createJSPPropertyGroup" descriptor="()Lorg/eclipse/jst/j2ee/jsp/JSPPropertyGroup;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.jsp.test.JspFactoryTest"/></test-coverage></method-api><method-api name="createTagLibRefType" descriptor="()Lorg/eclipse/jst/j2ee/jsp/TagLibRefType;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.jsp.test.JspFactoryTest"/></test-coverage></method-api><method-api name="getJspPackage" descriptor="()Lorg/eclipse/jst/j2ee/internal/jsp/JspPackage;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.jsp.test.JspFactoryTest"/></test-coverage></method-api><field-api name="eINSTANCE" descriptor="Lorg/eclipse/jst/j2ee/jsp/JspFactory;" access="25"></field-api></class-api><class-api name="org.eclipse.jst.j2ee.jsp.JSPConfig" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><javadoc-coverage since="false"></javadoc-coverage><method-api name="getTagLibs" descriptor="()Lorg/eclipse/emf/common/util/EList;" access="1025"></method-api><method-api name="getPropertyGroups" descriptor="()Lorg/eclipse/emf/common/util/EList;" access="1025"></method-api></class-api><class-api name="org.eclipse.jst.j2ee.jsp.JSPPropertyGroup" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><method-api name="getUrlPattern" descriptor="()Lorg/eclipse/emf/common/util/EList;" access="1025"></method-api><method-api name="isElIgnored" descriptor="()Z" access="1025"></method-api><method-api name="setElIgnored" descriptor="(Z)V" access="1025"></method-api><method-api name="unsetElIgnored" descriptor="()V" access="1025"></method-api><method-api name="isSetElIgnored" descriptor="()Z" access="1025"></method-api><method-api name="getPageEncoding" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setPageEncoding" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="isScriptingInvalid" descriptor="()Z" access="1025"></method-api><method-api name="setScriptingInvalid" descriptor="(Z)V" access="1025"></method-api><method-api name="unsetScriptingInvalid" descriptor="()V" access="1025"></method-api><method-api name="isSetScriptingInvalid" descriptor="()Z" access="1025"></method-api><method-api name="isIsXML" descriptor="()Z" access="1025"></method-api><method-api name="setIsXML" descriptor="(Z)V" access="1025"></method-api><method-api name="unsetIsXML" descriptor="()V" access="1025"></method-api><method-api name="isSetIsXML" descriptor="()Z" access="1025"></method-api><method-api name="getIncludePreludes" descriptor="()Lorg/eclipse/emf/common/util/EList;" access="1025"></method-api><method-api name="getIncludeCodas" descriptor="()Lorg/eclipse/emf/common/util/EList;" access="1025"></method-api></class-api></package-api><package-api name="org.eclipse.jst.j2ee.application"><class-api name="org.eclipse.jst.j2ee.application.ApplicationResource" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><javadoc-coverage since="false"></javadoc-coverage><method-api name="getApplication" descriptor="()Lorg/eclipse/jst/j2ee/application/Application;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.application.test.ApplicationTest"/></test-coverage><javadoc-coverage return="false"></javadoc-coverage></method-api></class-api><class-api name="org.eclipse.jst.j2ee.application.Application" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><method-api name="containsSecurityRole" descriptor="(Ljava/lang/String;)Z" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.archive.test.SecurityRoleTests"/><test name="org.eclipse.jst.j2ee.application.test.ApplicationTest"/></test-coverage></method-api><method-api name="getModule" descriptor="(Ljava/lang/String;Ljava/lang/String;)Lorg/eclipse/jst/j2ee/application/Module;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.application.test.ApplicationTest"/></test-coverage></method-api><method-api name="getModule" descriptor="(Ljava/lang/String;)Lorg/eclipse/jst/j2ee/application/Module;" access="1025"></method-api><method-api name="getJ2EEVersionID" descriptor="()I" access="1025" throws="java.lang.IllegalStateException"><test-coverage><test name="org.eclipse.jst.j2ee.application.test.ApplicationTest"/></test-coverage></method-api><method-api name="getVersionID" descriptor="()I" access="1025" throws="java.lang.IllegalStateException"><test-coverage><test name="org.eclipse.jst.j2ee.application.test.ApplicationTest"/></test-coverage></method-api><method-api name="getFirstModule" descriptor="(Ljava/lang/String;)Lorg/eclipse/jst/j2ee/application/Module;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.application.test.ApplicationTest"/><test name="org.eclipse.jst.j2ee.archive.test.CopyTests"/><test name="org.eclipse.jst.j2ee.archive.test.RarFileTests"/></test-coverage></method-api><method-api name="getModuleHavingAltDD" descriptor="(Ljava/lang/String;)Lorg/eclipse/jst/j2ee/application/Module;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.application.test.ApplicationTest"/></test-coverage></method-api><method-api name="getSecurityRoleNamed" descriptor="(Ljava/lang/String;)Lorg/eclipse/jst/j2ee/common/SecurityRole;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.application.test.ApplicationTest"/></test-coverage></method-api><method-api name="isVersion1_2Descriptor" descriptor="()Z" access="1025"></method-api><method-api name="isVersion1_3Descriptor" descriptor="()Z" access="1025"></method-api><method-api name="getVersion" descriptor="()Ljava/lang/String;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.archive.emftests.EarEMFEditTest"/><test name="org.eclipse.jst.j2ee.archive.emftests.EarEMFTest"/></test-coverage></method-api><method-api name="setVersion" descriptor="(Ljava/lang/String;)V" access="1025"></method-api><method-api name="getSecurityRoles" descriptor="()Lorg/eclipse/emf/common/util/EList;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.archive.test.SimpleTests"/><test name="org.eclipse.jst.j2ee.archive.test.SecurityRoleTests"/><test name="org.eclipse.jst.j2ee.application.test.ApplicationTest"/></test-coverage></method-api><method-api name="getModules" descriptor="()Lorg/eclipse/emf/common/util/EList;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.archive.test.SimpleTests"/><test name="org.eclipse.jst.j2ee.application.test.ApplicationTest"/><test name="org.eclipse.jst.j2ee.archive.test.LooseArchiveTests"/><test name="org.eclipse.jst.j2ee.archive.test.CopyTests"/></test-coverage></method-api></class-api><class-api name="org.eclipse.jst.j2ee.application.JavaClientModule" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><javadoc-coverage since="false"></javadoc-coverage></class-api><class-api name="org.eclipse.jst.j2ee.application.Module" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><javadoc-coverage since="false"></javadoc-coverage><method-api name="isConnectorModule" descriptor="()Z" access="1025"><javadoc-coverage return="false"></javadoc-coverage></method-api><method-api name="isEjbModule" descriptor="()Z" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.archive.test.SimpleTests"/><test name="org.eclipse.jst.j2ee.archive.test.CopyTests"/></test-coverage><javadoc-coverage return="false"></javadoc-coverage></method-api><method-api name="isJavaModule" descriptor="()Z" access="1025"><javadoc-coverage return="false"></javadoc-coverage></method-api><method-api name="isWebModule" descriptor="()Z" access="1025"><javadoc-coverage return="false"></javadoc-coverage></method-api><method-api name="getUri" descriptor="()Ljava/lang/String;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.archive.test.SimpleTests"/><test name="org.eclipse.jst.j2ee.archive.test.LooseArchiveTests"/><test name="org.eclipse.jst.j2ee.archive.test.CopyTests"/></test-coverage></method-api><method-api name="setUri" descriptor="(Ljava/lang/String;)V" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.application.test.ApplicationTest"/></test-coverage></method-api><method-api name="getAltDD" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setAltDD" descriptor="(Ljava/lang/String;)V" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.application.test.ApplicationTest"/></test-coverage></method-api><method-api name="getApplication" descriptor="()Lorg/eclipse/jst/j2ee/application/Application;" access="1025"></method-api><method-api name="setApplication" descriptor="(Lorg/eclipse/jst/j2ee/application/Application;)V" access="1025"><javadoc-coverage><param name="value"/></javadoc-coverage></method-api></class-api><class-api name="org.eclipse.jst.j2ee.application.WebModule" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><javadoc-coverage since="false"></javadoc-coverage><method-api name="getContextRoot" descriptor="()Ljava/lang/String;" access="1025"></method-api><method-api name="setContextRoot" descriptor="(Ljava/lang/String;)V" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.archive.test.CopyTests"/></test-coverage></method-api></class-api><class-api name="org.eclipse.jst.j2ee.application.EjbModule" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><javadoc-coverage since="false"></javadoc-coverage></class-api><class-api name="org.eclipse.jst.j2ee.application.ApplicationFactory" access="1537" reference="true" implement="true" subclass="false" instantiate="false"><javadoc-coverage since="false"></javadoc-coverage><method-api name="createApplication" descriptor="()Lorg/eclipse/jst/j2ee/application/Application;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.application.test.ApplicationTest"/><test name="org.eclipse.jst.j2ee.application.test.ApplicationFactoryTest"/></test-coverage></method-api><method-api name="createModule" descriptor="()Lorg/eclipse/jst/j2ee/application/Module;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.application.test.ApplicationTest"/><test name="org.eclipse.jst.j2ee.application.test.ApplicationFactoryTest"/></test-coverage></method-api><method-api name="createWebModule" descriptor="()Lorg/eclipse/jst/j2ee/application/WebModule;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.archive.emftests.EarEMFEditTest"/><test name="org.eclipse.jst.j2ee.archive.emftests.EarEMFTest"/><test name="org.eclipse.jst.j2ee.application.test.ApplicationFactoryTest"/></test-coverage></method-api><method-api name="createJavaClientModule" descriptor="()Lorg/eclipse/jst/j2ee/application/JavaClientModule;" access="1025"><test-coverage><test name="org.eclipse.jst.j2ee.archi