Skip to main content
aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authordacarver2008-07-23 15:59:55 +0000
committerdacarver2008-07-23 15:59:55 +0000
commit27c3e68422892428f867beded7026477726e1c46 (patch)
tree2d7eb558c5e265f0d4abe8c8b5616614bb3b34e0 /docs
parent4b7d7569efb55d93f9a8e59b8238e37307c43729 (diff)
downloadwebtools.sourceediting.xsl-27c3e68422892428f867beded7026477726e1c46.tar.gz
webtools.sourceediting.xsl-27c3e68422892428f867beded7026477726e1c46.tar.xz
webtools.sourceediting.xsl-27c3e68422892428f867beded7026477726e1c46.zip
*** empty log message ***
Diffstat (limited to 'docs')
-rw-r--r--docs/org.eclipse.wst.xsl.sdk.documentation/doc/jeltohtmltest.xsl209
-rw-r--r--docs/org.eclipse.wst.xsl.sdk.documentation/doc/test.html35639
2 files changed, 33206 insertions, 2642 deletions
diff --git a/docs/org.eclipse.wst.xsl.sdk.documentation/doc/jeltohtmltest.xsl b/docs/org.eclipse.wst.xsl.sdk.documentation/doc/jeltohtmltest.xsl
index ce930c3..022689e 100644
--- a/docs/org.eclipse.wst.xsl.sdk.documentation/doc/jeltohtmltest.xsl
+++ b/docs/org.eclipse.wst.xsl.sdk.documentation/doc/jeltohtmltest.xsl
@@ -45,7 +45,9 @@
<tr bgcolor="#CCCCFF" cols="2">
<td width="100%" colspan="2"><h2>Field Summary</h2></td>
</tr>
- <xsl:apply-templates select="fields/field" mode="summary"/>
+ <xsl:apply-templates select="fields/field" mode="summary">
+ <xsl:sort select="@name" order="ascending"/>
+ </xsl:apply-templates>
</table>
<br/>
</xsl:if>
@@ -54,7 +56,9 @@
<tr bgcolor="#CCCCFF">
<td width="100%"><h2>Constructor Summary</h2></td>
</tr>
- <xsl:apply-templates select="descendant::constructor" mode="summary"/>
+ <xsl:apply-templates select="descendant::constructor" mode="summary">
+ <xsl:sort select="@name" order="ascending"/>
+ </xsl:apply-templates>
</table>
<br/>
</xsl:if>
@@ -63,10 +67,23 @@
<tr bgcolor="#CCCCFF" cols="2">
<td width="100%" colspan="2"><h2>Method Summary</h2></td>
</tr>
- <xsl:apply-templates select="methods/method" mode="summary"/>
+ <xsl:apply-templates select="methods/method" mode="summary">
+ <xsl:sort select="@name" order="ascending"/>
+ </xsl:apply-templates>
</table>
</xsl:if>
<hr/>
+ <xsl:if test="fields">
+ <xsl:call-template name="fieldDetail"/>
+ </xsl:if>
+ <xsl:if test="methods/constructor">
+ <xsl:call-template name="constructorDetail"/>
+ </xsl:if>
+ <xsl:if test="methods/method">
+ <xsl:call-template name="methodsDetail"/>
+ </xsl:if>
+
+
</xsl:template>
<!-- Output any description that may be there for comments. -->
@@ -123,12 +140,12 @@
<code>
<strong>
<xsl:value-of select="@name"/>
- <xsl:text>(</xsl:text>
- <xsl:if test="params">
- <xsl:apply-templates select="params/param"/>
- </xsl:if>
- <xsl:text>)</xsl:text>
- </strong>
+ </strong>
+ <xsl:text>(</xsl:text>
+ <xsl:if test="params">
+ <xsl:apply-templates select="params/param"/>
+ </xsl:if>
+ <xsl:text>)</xsl:text>
</code>
</td>
</tr>
@@ -178,5 +195,177 @@
extends <xsl:value-of select="@superclassfulltype"/>
</pre>
</xsl:template>
-
+
+ <xsl:template name="fieldDetail">
+ <table border="1" width="100%" cols="2">
+ <tr align="left" bgcolor="#CCCCFF" width="100%" colspan="2">
+ <td>
+ <h2>
+ Field Detail
+ </h2>
+ </td>
+ </tr>
+ </table>
+ <xsl:apply-templates select="fields/field" mode="detail">
+ <xsl:sort select="@name" order="ascending"/>
+ </xsl:apply-templates>
+ </xsl:template>
+
+ <xsl:template match="fields/field" mode="detail">
+ <h2>
+ <xsl:value-of select="@name"/>
+ </h2>
+ <p>
+ <code>
+ <xsl:value-of select="@visibility"/>
+ <xsl:if test="@static = 'true'">
+ <xsl:text> static </xsl:text>
+ </xsl:if>
+ <xsl:text> </xsl:text>
+ <xsl:value-of select="@fulltype"/>
+ <xsl:text> </xsl:text>
+ <strong>
+ <xsl:value-of select="@name"/>
+ </strong>
+ </code>
+ </p>
+ <xsl:if test="comment">
+ <table>
+ <tr>
+ <td>
+ <xsl:apply-templates select="comment/description"/>
+ </td>
+ </tr>
+ </table>
+ </xsl:if>
+ <hr/>
+
+ </xsl:template>
+
+ <xsl:template name="constructorDetail">
+ <table border="1" width="100%" cols="2">
+ <tr align="left" bgcolor="#CCCCFF" width="100%" colspan="2">
+ <td>
+ <h2>
+ Constructor Detail
+ </h2>
+ </td>
+ </tr>
+ </table>
+ <xsl:apply-templates select="methods/constructor" mode="detail">
+ <xsl:sort select="@name" order="ascending"/>
+ </xsl:apply-templates>
+ </xsl:template>
+
+ <xsl:template match="methods/constructor" mode="detail">
+ <h2>
+ <xsl:value-of select="@name"/>
+ </h2>
+ <p>
+ <code>
+ <xsl:value-of select="@visibility"/>
+ <xsl:text> </xsl:text>
+ <strong>
+ <xsl:value-of select="@name"/>
+ </strong>
+ <xsl:text>(</xsl:text>
+ <xsl:if test="params">
+ <xsl:apply-templates select="params/param"/>
+ </xsl:if>
+ <xsl:text>)</xsl:text>
+ </code>
+ </p>
+ <p>
+ <xsl:apply-templates select="comment/description"/>
+ </p>
+ <hr/>
+
+ </xsl:template>
+
+ <xsl:template name="methodsDetail">
+ <table border="1" width="100%" cols="2">
+ <tr align="left" bgcolor="#CCCCFF" width="100%" colspan="2">
+ <td>
+ <h2>
+ Methods Detail
+ </h2>
+ </td>
+ </tr>
+ </table>
+ <xsl:apply-templates select="methods/method" mode="detail">
+ <xsl:sort select="@name" order="ascending"/>
+ </xsl:apply-templates>
+ </xsl:template>
+
+ <xsl:template match="methods/method" mode="detail">
+ <h2>
+ <xsl:value-of select="@name"/>
+ </h2>
+ <p>
+ <code>
+ <xsl:value-of select="@visibility"/>
+ <xsl:text> </xsl:text>
+ <xsl:value-of select="@fulltype"/>
+ <xsl:text> </xsl:text>
+ <strong>
+ <xsl:value-of select="@name"/>
+ </strong>
+ <xsl:text>(</xsl:text>
+ <xsl:if test="params">
+ <xsl:apply-templates select="params/param"/>
+ </xsl:if>
+ <xsl:text>)</xsl:text>
+ </code>
+ </p>
+ <p>
+ <xsl:apply-templates select="comment/description"/>
+ </p>
+ <xsl:if test="params">
+ <h3>Parameters</h3>
+ <xsl:apply-templates select="params/param" mode="detail"/>
+ </xsl:if>
+ <xsl:if test="@type != 'void'">
+ <h3>Returns</h3>
+ <p>
+ <code>
+ <xsl:value-of select="@fulltype"/>
+ </code>
+ <xsl:if test="string-length(@returncomment) > 0">
+ <xsl:text> - </xsl:text>
+ <xsl:value-of select="@returncomment" disable-output-escaping="yes"/>
+ </xsl:if>
+ </p>
+ </xsl:if>
+ <xsl:if test="exceptions">
+ <h3>Throws:</h3>
+ <xsl:apply-templates select="exceptions/exception" mode="detail"/>
+ </xsl:if>
+ <hr/>
+
+ </xsl:template>
+
+ <xsl:template match="param" mode="detail">
+ <p>
+ <code>
+ <xsl:value-of select="@name"/>
+ </code>
+ <xsl:if test="string-length(@comment) > 0">
+ <xsl:text> - </xsl:text>
+ <xsl:value-of select="@comment" disable-output-escaping="yes"/>
+ </xsl:if>
+ </p>
+ </xsl:template>
+
+ <xsl:template match="exception" mode="detail">
+ <p>
+ <code>
+ <xsl:value-of select="@fulltype"/>
+ <xsl:if test="string-length(@comment) > 0">
+ <xsl:text> - </xsl:text>
+ <xsl:value-of select="@comment" disable-output-escaping="yes"/>
+ </xsl:if>
+ </code>
+ </p>
+ </xsl:template>
+
</xsl:stylesheet> \ No newline at end of file
diff --git a/docs/org.eclipse.wst.xsl.sdk.documentation/doc/test.html b/docs/org.eclipse.wst.xsl.sdk.documentation/doc/test.html
index 95095bb..0b355c5 100644
--- a/docs/org.eclipse.wst.xsl.sdk.documentation/doc/test.html
+++ b/docs/org.eclipse.wst.xsl.sdk.documentation/doc/test.html
@@ -33,7 +33,7 @@ extends Plugin</pre>The activator class controls the plug-in life cycle<hr>
</td>
</tr>
<tr>
-<td><code><strong>XPathCorePlugin()</strong></code></td>
+<td><code><strong>XPathCorePlugin</strong>()</code></td>
</tr>
</table>
<br>
@@ -44,24 +44,99 @@ extends Plugin</pre>The activator class controls the plug-in life cycle<hr>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>start(BundleContext context)</code>
+<td width="20%" align="right"><code>public static org.eclipse.wst.xml.xpath.core.XPathCorePlugin</code></td><td width="" align="left"><code>getDefault()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- </td>
+ Returns the shared instance</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>stop(BundleContext context)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>start(BundleContext context)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static org.eclipse.wst.xml.xpath.core.XPathCorePlugin</code></td><td width="" align="left"><code>getDefault()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>stop(BundleContext context)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Returns the shared instance</td>
+ </td>
+</tr>
+</table>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>PLUGIN_ID</h2>
+<p>
+<code>public static java.lang.String <strong>PLUGIN_ID</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
</tr>
</table>
+<h2>XPathCorePlugin</h2>
+<p>
+<code>public <strong>XPathCorePlugin</strong>()</code>
+</p>
+<p>The constructor</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getDefault</h2>
+<p>
+<code>public org.eclipse.wst.xml.xpath.core.XPathCorePlugin <strong>getDefault</strong>()</code>
+</p>
+<p>Returns the shared instance</p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xml.xpath.core.XPathCorePlugin</code> - the shared instance</p>
+<hr>
+<h2>start</h2>
+<p>
+<code>public void <strong>start</strong>(BundleContext context)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>context</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>java.lang.Exception</code>
+</p>
+<hr>
+<h2>stop</h2>
+<p>
+<code>public void <strong>stop</strong>(BundleContext context)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>context</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>java.lang.Exception</code>
+</p>
<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xml.xpath.core.internal.parser</strong></font>
@@ -83,13 +158,13 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected org.apache.commons.jxpath.ri.parser.XPathParser</code></td><td width="80%" align="left"><code>parser</code>
+<td width="20%" align="right"><code>protected Token</code></td><td width="80%" align="left"><code>currentToken</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected Token</code></td><td width="80%" align="left"><code>currentToken</code>
+<td width="20%" align="right"><code>protected org.apache.commons.jxpath.ri.parser.XPathParser</code></td><td width="80%" align="left"><code>parser</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@@ -109,7 +184,7 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr>
-<td><code><strong>XPathParser(java.lang.String xpath)</strong></code></td>
+<td><code><strong>XPathParser</strong>(java.lang.String xpath)</code></td>
</tr>
</table>
<br>
@@ -120,43 +195,165 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public int</code></td><td width="" align="left"><code>getTokenStartOffset(int offsetLine
- ,
- int offsetColumn)</code>
+<td width="20%" align="right"><code>public Token</code></td><td width="" align="left"><code>getCurrentToken()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Given a line number and a column number, return the starting
- offset of the last known token.</td>
+ </td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected boolean</code></td><td width="" align="left"><code>locatedLine(Token token
- ,
- int offsetLine)</code>
+<td width="20%" align="right"><code>public Token</code></td><td width="" align="left"><code>getPreviousToken()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Checks to see if the token is in the range of the line offset</td>
+ </td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected boolean</code></td><td width="" align="left"><code>locatedColumn(Token token
+<td width="20%" align="right"><code>public int</code></td><td width="" align="left"><code>getTokenStartOffset(int offsetLine
,
int offsetColumn)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Checks to see if the token is in the range of the column offset</td>
+ Given a line number and a column number, return the starting
+ offset of the last known token.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public Token</code></td><td width="" align="left"><code>getCurrentToken()</code>
+<td width="20%" align="right"><code>protected boolean</code></td><td width="" align="left"><code>locatedColumn(Token token
+ ,
+ int offsetColumn)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- </td>
+ Checks to see if the token is in the range of the column offset</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public Token</code></td><td width="" align="left"><code>getPreviousToken()</code>
+<td width="20%" align="right"><code>protected boolean</code></td><td width="" align="left"><code>locatedLine(Token token
+ ,
+ int offsetLine)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- </td>
+ Checks to see if the token is in the range of the line offset</td>
+</tr>
+</table>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>currentToken</h2>
+<p>
+<code>protected Token <strong>currentToken</strong></code>
+</p>
+<hr>
+<h2>parser</h2>
+<p>
+<code>protected org.apache.commons.jxpath.ri.parser.XPathParser <strong>parser</strong></code>
+</p>
+<hr>
+<h2>previousToken</h2>
+<p>
+<code>protected Token <strong>previousToken</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>XPathParser</h2>
+<p>
+<code>public <strong>XPathParser</strong>(java.lang.String xpath)</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
</tr>
</table>
+<h2>getCurrentToken</h2>
+<p>
+<code>public Token <strong>getCurrentToken</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>Token</code>
+</p>
+<hr>
+<h2>getPreviousToken</h2>
+<p>
+<code>public Token <strong>getPreviousToken</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>Token</code>
+</p>
+<hr>
+<h2>getTokenStartOffset</h2>
+<p>
+<code>public int <strong>getTokenStartOffset</strong>(int offsetLine
+ ,
+ int offsetColumn)</code>
+</p>
+<p>Given a line number and a column number, return the starting
+ offset of the last known token.</p>
+<h3>Parameters</h3>
+<p>
+<code>offsetLine</code>
+</p>
+<p>
+<code>offsetColumn</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>int</code>
+</p>
+<hr>
+<h2>locatedColumn</h2>
+<p>
+<code>protected boolean <strong>locatedColumn</strong>(Token token
+ ,
+ int offsetColumn)</code>
+</p>
+<p>Checks to see if the token is in the range of the column offset</p>
+<h3>Parameters</h3>
+<p>
+<code>token</code>
+</p>
+<p>
+<code>offsetColumn</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code> - true if found, false otherwise</p>
+<hr>
+<h2>locatedLine</h2>
+<p>
+<code>protected boolean <strong>locatedLine</strong>(Token token
+ ,
+ int offsetLine)</code>
+</p>
+<p>Checks to see if the token is in the range of the line offset</p>
+<h3>Parameters</h3>
+<p>
+<code>token</code> - An XPath Token.</p>
+<p>
+<code>offsetLine</code> - Line number offset of a region.</p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code> - true if found, false otherwise.</p>
<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xml.xpath.core.util</strong></font>
@@ -178,7 +375,7 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr>
-<td><code><strong>XSLTXPathHelper()</strong></code></td>
+<td><code><strong>XSLTXPathHelper</strong>()</code></td>
</tr>
</table>
<br>
@@ -189,25 +386,39 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static org.w3c.dom.Node</code></td><td width="" align="left"><code>selectSingleNode(org.w3c.dom.Node contextNode
+<td width="20%" align="right"><code>public static void</code></td><td width="" align="left"><code>compile(java.lang.String expression)</code>
+<br>
+ &nbsp;&nbsp;&nbsp;&nbsp;
+ </td>
+</tr>
+<tr valign="top">
+<td width="20%" align="right"><code>public static XObject</code></td><td width="" align="left"><code>eval(org.w3c.dom.Node contextNode
,
java.lang.String str)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Use an XPath string to select a single node. XPath namespace prefixes are
- resolved from the context node, which may not be what you want (see the
- next method).</td>
+ Evaluate XPath string to an XObject. Using this method, XPath namespace
+ prefixes will be resolved from the namespaceNode.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static org.w3c.dom.Node</code></td><td width="" align="left"><code>selectSingleNode(org.w3c.dom.Node contextNode
+<td width="20%" align="right"><code>public static XObject</code></td><td width="" align="left"><code>eval(org.w3c.dom.Node contextNode
,
java.lang.String str
,
org.w3c.dom.Node namespaceNode)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Use an XPath string to select a single node. XPath namespace prefixes are
- resolved from the namespaceNode.</td>
+ Evaluate XPath string to an XObject. XPath namespace prefixes are
+ resolved from the namespaceNode. The implementation of this is a little
+ slow, since it creates a number of objects each time it is called. This
+ could be optimized to keep the same objects around, but then
+ thread-safety issues would arise.</td>
+</tr>
+<tr valign="top">
+<td width="20%" align="right"><code>protected static FunctionTable</code></td><td width="" align="left"><code>getFunctionTable()</code>
+<br>
+ &nbsp;&nbsp;&nbsp;&nbsp;
+ </td>
</tr>
<tr valign="top">
<td width="20%" align="right"><code>public static org.w3c.dom.traversal.NodeIterator</code></td><td width="" align="left"><code>selectNodeIterator(org.w3c.dom.Node contextNode
@@ -250,41 +461,263 @@ extends java.lang.Object</pre>
resolved from the namespaceNode.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static XObject</code></td><td width="" align="left"><code>eval(org.w3c.dom.Node contextNode
+<td width="20%" align="right"><code>public static org.w3c.dom.Node</code></td><td width="" align="left"><code>selectSingleNode(org.w3c.dom.Node contextNode
,
java.lang.String str)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Evaluate XPath string to an XObject. Using this method, XPath namespace
- prefixes will be resolved from the namespaceNode.</td>
+ Use an XPath string to select a single node. XPath namespace prefixes are
+ resolved from the context node, which may not be what you want (see the
+ next method).</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static XObject</code></td><td width="" align="left"><code>eval(org.w3c.dom.Node contextNode
+<td width="20%" align="right"><code>public static org.w3c.dom.Node</code></td><td width="" align="left"><code>selectSingleNode(org.w3c.dom.Node contextNode
,
java.lang.String str
,
org.w3c.dom.Node namespaceNode)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Evaluate XPath string to an XObject. XPath namespace prefixes are
- resolved from the namespaceNode. The implementation of this is a little
- slow, since it creates a number of objects each time it is called. This
- could be optimized to keep the same objects around, but then
- thread-safety issues would arise.</td>
+ Use an XPath string to select a single node. XPath namespace prefixes are
+ resolved from the namespaceNode.</td>
</tr>
-<tr valign="top">
-<td width="20%" align="right"><code>public static void</code></td><td width="" align="left"><code>compile(java.lang.String expression)</code>
-<br>
- &nbsp;&nbsp;&nbsp;&nbsp;
- </td>
+</table>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
</tr>
-<tr valign="top">
-<td width="20%" align="right"><code>protected static FunctionTable</code></td><td width="" align="left"><code>getFunctionTable()</code>
-<br>
- &nbsp;&nbsp;&nbsp;&nbsp;
- </td>
+</table>
+<h2>XSLTXPathHelper</h2>
+<p>
+<code>public <strong>XSLTXPathHelper</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
</tr>
</table>
+<h2>compile</h2>
+<p>
+<code>public void <strong>compile</strong>(java.lang.String expression)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>expression</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>javax.xml.xpath.XPathExpressionException</code>
+</p>
+<hr>
+<h2>eval</h2>
+<p>
+<code>public XObject <strong>eval</strong>(org.w3c.dom.Node contextNode
+ ,
+ java.lang.String str)</code>
+</p>
+<p>Evaluate XPath string to an XObject. Using this method, XPath namespace
+ prefixes will be resolved from the namespaceNode.</p>
+<h3>Parameters</h3>
+<p>
+<code>contextNode</code> - The node to start searching from.</p>
+<p>
+<code>str</code> - A valid XPath string.</p>
+<h3>Returns</h3>
+<p>
+<code>XObject</code> - An XObject, which can be used to obtain a string, number, nodelist, etc, should never be null.</p>
+<h3>Throws:</h3>
+<p>
+<code>javax.xml.transform.TransformerException</code>
+</p>
+<hr>
+<h2>eval</h2>
+<p>
+<code>public XObject <strong>eval</strong>(org.w3c.dom.Node contextNode
+ ,
+ java.lang.String str
+ ,
+ org.w3c.dom.Node namespaceNode)</code>
+</p>
+<p>Evaluate XPath string to an XObject. XPath namespace prefixes are
+ resolved from the namespaceNode. The implementation of this is a little
+ slow, since it creates a number of objects each time it is called. This
+ could be optimized to keep the same objects around, but then
+ thread-safety issues would arise.</p>
+<h3>Parameters</h3>
+<p>
+<code>contextNode</code> - The node to start searching from.</p>
+<p>
+<code>str</code> - A valid XPath string.</p>
+<p>
+<code>namespaceNode</code> - The node from which prefixes in the XPath will be resolved to namespaces.</p>
+<h3>Returns</h3>
+<p>
+<code>XObject</code> - An XObject, which can be used to obtain a string, number, nodelist, etc, should never be null.</p>
+<h3>Throws:</h3>
+<p>
+<code>javax.xml.transform.TransformerException</code>
+</p>
+<hr>
+<h2>getFunctionTable</h2>
+<p>
+<code>protected FunctionTable <strong>getFunctionTable</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>FunctionTable</code>
+</p>
+<hr>
+<h2>selectNodeIterator</h2>
+<p>
+<code>public org.w3c.dom.traversal.NodeIterator <strong>selectNodeIterator</strong>(org.w3c.dom.Node contextNode
+ ,
+ java.lang.String str)</code>
+</p>
+<p>Use an XPath string to select a nodelist. XPath namespace prefixes are
+ resolved from the contextNode.</p>
+<h3>Parameters</h3>
+<p>
+<code>contextNode</code> - The node to start searching from.</p>
+<p>
+<code>str</code> - A valid XPath string.</p>
+<h3>Returns</h3>
+<p>
+<code>org.w3c.dom.traversal.NodeIterator</code> - A NodeIterator, should never be null.</p>
+<h3>Throws:</h3>
+<p>
+<code>javax.xml.transform.TransformerException</code>
+</p>
+<hr>
+<h2>selectNodeIterator</h2>
+<p>
+<code>public org.w3c.dom.traversal.NodeIterator <strong>selectNodeIterator</strong>(org.w3c.dom.Node contextNode
+ ,
+ java.lang.String str
+ ,
+ org.w3c.dom.Node namespaceNode)</code>
+</p>
+<p>Use an XPath string to select a nodelist. XPath namespace prefixes are
+ resolved from the namespaceNode.</p>
+<h3>Parameters</h3>
+<p>
+<code>contextNode</code> - The node to start searching from.</p>
+<p>
+<code>str</code> - A valid XPath string.</p>
+<p>
+<code>namespaceNode</code> - The node from which prefixes in the XPath will be resolved to namespaces.</p>
+<h3>Returns</h3>
+<p>
+<code>org.w3c.dom.traversal.NodeIterator</code> - A NodeIterator, should never be null.</p>
+<h3>Throws:</h3>
+<p>
+<code>javax.xml.transform.TransformerException</code>
+</p>
+<hr>
+<h2>selectNodeList</h2>
+<p>
+<code>public org.w3c.dom.NodeList <strong>selectNodeList</strong>(org.w3c.dom.Node contextNode
+ ,
+ java.lang.String str)</code>
+</p>
+<p>Use an XPath string to select a nodelist. XPath namespace prefixes are
+ resolved from the contextNode.</p>
+<h3>Parameters</h3>
+<p>
+<code>contextNode</code> - The node to start searching from.</p>
+<p>
+<code>str</code> - A valid XPath string.</p>
+<h3>Returns</h3>
+<p>
+<code>org.w3c.dom.NodeList</code> - A NodeIterator, should never be null.</p>
+<h3>Throws:</h3>
+<p>
+<code>javax.xml.transform.TransformerException</code>
+</p>
+<hr>
+<h2>selectNodeList</h2>
+<p>
+<code>public org.w3c.dom.NodeList <strong>selectNodeList</strong>(org.w3c.dom.Node contextNode
+ ,
+ java.lang.String str
+ ,
+ org.w3c.dom.Node namespaceNode)</code>
+</p>
+<p>Use an XPath string to select a nodelist. XPath namespace prefixes are
+ resolved from the namespaceNode.</p>
+<h3>Parameters</h3>
+<p>
+<code>contextNode</code> - The node to start searching from.</p>
+<p>
+<code>str</code> - A valid XPath string.</p>
+<p>
+<code>namespaceNode</code> - The node from which prefixes in the XPath will be resolved to namespaces.</p>
+<h3>Returns</h3>
+<p>
+<code>org.w3c.dom.NodeList</code> - A NodeIterator, should never be null.</p>
+<h3>Throws:</h3>
+<p>
+<code>javax.xml.transform.TransformerException</code>
+</p>
+<hr>
+<h2>selectSingleNode</h2>
+<p>
+<code>public org.w3c.dom.Node <strong>selectSingleNode</strong>(org.w3c.dom.Node contextNode
+ ,
+ java.lang.String str)</code>
+</p>
+<p>Use an XPath string to select a single node. XPath namespace prefixes are
+ resolved from the context node, which may not be what you want (see the
+ next method).</p>
+<h3>Parameters</h3>
+<p>
+<code>contextNode</code> - The node to start searching from.</p>
+<p>
+<code>str</code> - A valid XPath string.</p>
+<h3>Returns</h3>
+<p>
+<code>org.w3c.dom.Node</code> - The first node found that matches the XPath, or null.</p>
+<h3>Throws:</h3>
+<p>
+<code>javax.xml.transform.TransformerException</code>
+</p>
+<hr>
+<h2>selectSingleNode</h2>
+<p>
+<code>public org.w3c.dom.Node <strong>selectSingleNode</strong>(org.w3c.dom.Node contextNode
+ ,
+ java.lang.String str
+ ,
+ org.w3c.dom.Node namespaceNode)</code>
+</p>
+<p>Use an XPath string to select a single node. XPath namespace prefixes are
+ resolved from the namespaceNode.</p>
+<h3>Parameters</h3>
+<p>
+<code>contextNode</code> - The node to start searching from.</p>
+<p>
+<code>str</code> - A valid XPath string.</p>
+<p>
+<code>namespaceNode</code> - The node from which prefixes in the XPath will be resolved to namespaces.</p>
+<h3>Returns</h3>
+<p>
+<code>org.w3c.dom.Node</code> - The first node found that matches the XPath, or null.</p>
+<h3>Throws:</h3>
+<p>
+<code>javax.xml.transform.TransformerException</code>
+</p>
<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xml.xpath.ui</strong></font>
@@ -329,109 +762,109 @@ extends NLS</pre>Strings used by XPath UI<hr>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>XPathNavigator_Node_could_not_be_selected</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>XPathNavigator_Namespace_Prefixes</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>XPathNavigator_Nothing_selected</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>XPathNavigator_Namespaces</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>XPathNavigator_Refresh_Source_Docs</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>XPathNavigator_Namespaces_Tip</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>XPathNavigator_Refresh_Source_Docs_Tip</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>XPathNavigator_Node_could_not_be_selected</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>XPathNavigator_Run_on_selected</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>XPathNavigator_Nothing_selected</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>XPathNavigator_Run_XPath_Query</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>XPathNavigator_Refresh_Source_Docs</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>XPathNavigator_Select_source_first</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>XPathNavigator_Refresh_Source_Docs_Tip</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>XPathNavigator_Selection</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>XPathNavigator_Run_on_selected</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>XPathNavigator_Show_In_Source</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>XPathNavigator_Run_XPath_Query</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>XPathNavigator_Show_In_Source_Tip</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>XPathNavigator_Select_source_first</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>XPathNavigator_Text</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>XPathNavigator_Selection</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>XPathNavigator_XML_Source_Document</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>XPathNavigator_Show_In_Source</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>XPathNavigator_XPath_Eval_Failed</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>XPathNavigator_Show_In_Source_Tip</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>XPathNavigator_XPath_Show_In_Source_Failed</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>XPathNavigator_Text</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>XPathNavigator_XPath_Navigator</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>XPathNavigator_XML_Source_Document</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>XPathNavigator_Namespaces</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>XPathNavigator_XPath_Eval_Failed</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>XPathNavigator_Namespaces_Tip</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>XPathNavigator_XPath_Navigator</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>XPathNavigator_Namespace_Prefixes</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>XPathNavigator_XPath_Show_In_Source_Failed</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@@ -452,6 +885,144 @@ extends NLS</pre>Strings used by XPath UI<hr>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>XPathNavigator_Context</h2>
+<p>
+<code>public static java.lang.String <strong>XPathNavigator_Context</strong></code>
+</p>
+<hr>
+<h2>XPathNavigator_Document</h2>
+<p>
+<code>public static java.lang.String <strong>XPathNavigator_Document</strong></code>
+</p>
+<hr>
+<h2>XPathNavigator_DOM_Tree</h2>
+<p>
+<code>public static java.lang.String <strong>XPathNavigator_DOM_Tree</strong></code>
+</p>
+<hr>
+<h2>XPathNavigator_Expression</h2>
+<p>
+<code>public static java.lang.String <strong>XPathNavigator_Expression</strong></code>
+</p>
+<hr>
+<h2>XPathNavigator_Namespace_Prefixes</h2>
+<p>
+<code>public static java.lang.String <strong>XPathNavigator_Namespace_Prefixes</strong></code>
+</p>
+<hr>
+<h2>XPathNavigator_Namespaces</h2>
+<p>
+<code>public static java.lang.String <strong>XPathNavigator_Namespaces</strong></code>
+</p>
+<hr>
+<h2>XPathNavigator_Namespaces_Tip</h2>
+<p>
+<code>public static java.lang.String <strong>XPathNavigator_Namespaces_Tip</strong></code>
+</p>
+<hr>
+<h2>XPathNavigator_Node_could_not_be_selected</h2>
+<p>
+<code>public static java.lang.String <strong>XPathNavigator_Node_could_not_be_selected</strong></code>
+</p>
+<hr>
+<h2>XPathNavigator_Nothing_selected</h2>
+<p>
+<code>public static java.lang.String <strong>XPathNavigator_Nothing_selected</strong></code>
+</p>
+<hr>
+<h2>XPathNavigator_Refresh_Source_Docs</h2>
+<p>
+<code>public static java.lang.String <strong>XPathNavigator_Refresh_Source_Docs</strong></code>
+</p>
+<hr>
+<h2>XPathNavigator_Refresh_Source_Docs_Tip</h2>
+<p>
+<code>public static java.lang.String <strong>XPathNavigator_Refresh_Source_Docs_Tip</strong></code>
+</p>
+<hr>
+<h2>XPathNavigator_Run_on_selected</h2>
+<p>
+<code>public static java.lang.String <strong>XPathNavigator_Run_on_selected</strong></code>
+</p>
+<hr>
+<h2>XPathNavigator_Run_XPath_Query</h2>
+<p>
+<code>public static java.lang.String <strong>XPathNavigator_Run_XPath_Query</strong></code>
+</p>
+<hr>
+<h2>XPathNavigator_Select_source_first</h2>
+<p>
+<code>public static java.lang.String <strong>XPathNavigator_Select_source_first</strong></code>
+</p>
+<hr>
+<h2>XPathNavigator_Selection</h2>
+<p>
+<code>public static java.lang.String <strong>XPathNavigator_Selection</strong></code>
+</p>
+<hr>
+<h2>XPathNavigator_Show_In_Source</h2>
+<p>
+<code>public static java.lang.String <strong>XPathNavigator_Show_In_Source</strong></code>
+</p>
+<hr>
+<h2>XPathNavigator_Show_In_Source_Tip</h2>
+<p>
+<code>public static java.lang.String <strong>XPathNavigator_Show_In_Source_Tip</strong></code>
+</p>
+<hr>
+<h2>XPathNavigator_Text</h2>
+<p>
+<code>public static java.lang.String <strong>XPathNavigator_Text</strong></code>
+</p>
+<hr>
+<h2>XPathNavigator_XML_Source_Document</h2>
+<p>
+<code>public static java.lang.String <strong>XPathNavigator_XML_Source_Document</strong></code>
+</p>
+<hr>
+<h2>XPathNavigator_XPath_Eval_Failed</h2>
+<p>
+<code>public static java.lang.String <strong>XPathNavigator_XPath_Eval_Failed</strong></code>
+</p>
+<hr>
+<h2>XPathNavigator_XPath_Navigator</h2>
+<p>
+<code>public static java.lang.String <strong>XPathNavigator_XPath_Navigator</strong></code>
+</p>
+<hr>
+<h2>XPathNavigator_XPath_Show_In_Source_Failed</h2>
+<p>
+<code>public static java.lang.String <strong>XPathNavigator_XPath_Show_In_Source_Failed</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getResourceBundle</h2>
+<p>
+<code>public java.util.ResourceBundle <strong>getResourceBundle</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.util.ResourceBundle</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xml.xpath.ui</strong></font>
</p>
@@ -472,7 +1043,7 @@ extends AbstractUIPlugin</pre>
</td>
</tr>
<tr>
-<td><code><strong>XPathViewPlugin()</strong></code></td>
+<td><code><strong>XPathViewPlugin</strong>()</code></td>
</tr>
</table>
<br>
@@ -483,18 +1054,6 @@ extends AbstractUIPlugin</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>start(BundleContext context)</code>
-<br>
- &nbsp;&nbsp;&nbsp;&nbsp;
- This method is called upon plug-in activation</td>
-</tr>
-<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>stop(BundleContext context)</code>
-<br>
- &nbsp;&nbsp;&nbsp;&nbsp;
- This method is called when the plug-in is stopped</td>
-</tr>
-<tr valign="top">
<td width="20%" align="right"><code>public static org.eclipse.wst.xml.xpath.ui.XPathViewPlugin</code></td><td width="" align="left"><code>getDefault()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
@@ -507,60 +1066,52 @@ extends AbstractUIPlugin</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>info(java.lang.String message)</code>
+<td width="20%" align="right"><code>public java.util.ResourceBundle</code></td><td width="" align="left"><code>getResourceBundle()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- </td>
+ Returns the plugin's resource bundle</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>warn(java.lang.String message)</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="" align="left"><code>getResourceString(java.lang.String key)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- </td>
+ Returns the string from the plugin's resource bundle,
+ or 'key' if not found.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>log(java.lang.String message
- ,
- java.lang.Throwable ex)</code>
+<td width="20%" align="right"><code>public ContextTypeRegistry</code></td><td width="" align="left"><code>getXPathTemplateContextRegistry()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- </td>
+ Returns the template context type registry for xpath</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>log(java.lang.Throwable ex)</code>
+<td width="20%" align="right"><code>public TemplateStore</code></td><td width="" align="left"><code>getXPathTemplateStore()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- </td>
+ Returns the template store for the xpath templates.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static void</code></td><td width="" align="left"><code>throwCoreException(java.lang.String message
- ,
- java.lang.Throwable t)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>info(java.lang.String message)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="" align="left"><code>getResourceString(java.lang.String key)</code>
-<br>
- &nbsp;&nbsp;&nbsp;&nbsp;
- Returns the string from the plugin's resource bundle,
- or 'key' if not found.</td>
-</tr>
-<tr valign="top">
<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>initializeImageRegistry(ImageRegistry reg)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.util.ResourceBundle</code></td><td width="" align="left"><code>getResourceBundle()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>log(java.lang.String message
+ ,
+ java.lang.Throwable ex)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Returns the plugin's resource bundle</td>
+ </td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>updateXPathNavigatorView(IWorkbenchPartReference partRef)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>log(java.lang.Throwable ex)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@@ -614,18 +1165,317 @@ extends AbstractUIPlugin</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public TemplateStore</code></td><td width="" align="left"><code>getXPathTemplateStore()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>start(BundleContext context)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Returns the template store for the xpath templates.</td>
+ This method is called upon plug-in activation</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public ContextTypeRegistry</code></td><td width="" align="left"><code>getXPathTemplateContextRegistry()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>stop(BundleContext context)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Returns the template context type registry for xpath</td>
+ This method is called when the plug-in is stopped</td>
+</tr>
+<tr valign="top">
+<td width="20%" align="right"><code>public static void</code></td><td width="" align="left"><code>throwCoreException(java.lang.String message
+ ,
+ java.lang.Throwable t)</code>
+<br>
+ &nbsp;&nbsp;&nbsp;&nbsp;
+ </td>
+</tr>
+<tr valign="top">
+<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>updateXPathNavigatorView(IWorkbenchPartReference partRef)</code>
+<br>
+ &nbsp;&nbsp;&nbsp;&nbsp;
+ </td>
+</tr>
+<tr valign="top">
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>warn(java.lang.String message)</code>
+<br>
+ &nbsp;&nbsp;&nbsp;&nbsp;
+ </td>
+</tr>
+</table>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>XPathViewPlugin</h2>
+<p>
+<code>public <strong>XPathViewPlugin</strong>()</code>
+</p>
+<p>The constructor.</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
</tr>
</table>
+<h2>getDefault</h2>
+<p>
+<code>public org.eclipse.wst.xml.xpath.ui.XPathViewPlugin <strong>getDefault</strong>()</code>
+</p>
+<p>Returns the shared instance.</p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xml.xpath.ui.XPathViewPlugin</code>
+</p>
+<hr>
+<h2>getPluginId</h2>
+<p>
+<code>public java.lang.String <strong>getPluginId</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
+<h2>getResourceBundle</h2>
+<p>
+<code>public java.util.ResourceBundle <strong>getResourceBundle</strong>()</code>
+</p>
+<p>Returns the plugin's resource bundle</p>
+<h3>Returns</h3>
+<p>
+<code>java.util.ResourceBundle</code>
+</p>
+<hr>
+<h2>getResourceString</h2>
+<p>
+<code>public java.lang.String <strong>getResourceString</strong>(java.lang.String key)</code>
+</p>
+<p>Returns the string from the plugin's resource bundle,
+ or 'key' if not found.</p>
+<h3>Parameters</h3>
+<p>
+<code>key</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
+<h2>getXPathTemplateContextRegistry</h2>
+<p>
+<code>public ContextTypeRegistry <strong>getXPathTemplateContextRegistry</strong>()</code>
+</p>
+<p>Returns the template context type registry for xpath</p>
+<h3>Returns</h3>
+<p>
+<code>ContextTypeRegistry</code> - the template context type registry for xpath</p>
+<hr>
+<h2>getXPathTemplateStore</h2>
+<p>
+<code>public TemplateStore <strong>getXPathTemplateStore</strong>()</code>
+</p>
+<p>Returns the template store for the xpath templates.</p>
+<h3>Returns</h3>
+<p>
+<code>TemplateStore</code> - the template store for the xpath templates</p>
+<hr>
+<h2>info</h2>
+<p>
+<code>public void <strong>info</strong>(java.lang.String message)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>message</code>
+</p>
+<hr>
+<h2>initializeImageRegistry</h2>
+<p>
+<code>protected void <strong>initializeImageRegistry</strong>(ImageRegistry reg)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>reg</code>
+</p>
+<hr>
+<h2>log</h2>
+<p>
+<code>public void <strong>log</strong>(java.lang.String message
+ ,
+ java.lang.Throwable ex)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>message</code>
+</p>
+<p>
+<code>ex</code>
+</p>
+<hr>
+<h2>log</h2>
+<p>
+<code>public void <strong>log</strong>(java.lang.Throwable ex)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>ex</code>
+</p>
+<hr>
+<h2>partActivated</h2>
+<p>
+<code>public void <strong>partActivated</strong>(IWorkbenchPartReference partRef)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>partRef</code>
+</p>
+<hr>
+<h2>partBroughtToTop</h2>
+<p>
+<code>public void <strong>partBroughtToTop</strong>(IWorkbenchPartReference partRef)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>partRef</code>
+</p>
+<hr>
+<h2>partClosed</h2>
+<p>
+<code>public void <strong>partClosed</strong>(IWorkbenchPartReference partRef)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>partRef</code>
+</p>
+<hr>
+<h2>partDeactivated</h2>
+<p>
+<code>public void <strong>partDeactivated</strong>(IWorkbenchPartReference partRef)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>partRef</code>
+</p>
+<hr>
+<h2>partHidden</h2>
+<p>
+<code>public void <strong>partHidden</strong>(IWorkbenchPartReference partRef)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>partRef</code>
+</p>
+<hr>
+<h2>partInputChanged</h2>
+<p>
+<code>public void <strong>partInputChanged</strong>(IWorkbenchPartReference partRef)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>partRef</code>
+</p>
+<hr>
+<h2>partOpened</h2>
+<p>
+<code>public void <strong>partOpened</strong>(IWorkbenchPartReference partRef)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>partRef</code>
+</p>
+<hr>
+<h2>partVisible</h2>
+<p>
+<code>public void <strong>partVisible</strong>(IWorkbenchPartReference partRef)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>partRef</code>
+</p>
+<hr>
+<h2>start</h2>
+<p>
+<code>public void <strong>start</strong>(BundleContext context)</code>
+</p>
+<p>This method is called upon plug-in activation</p>
+<h3>Parameters</h3>
+<p>
+<code>context</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>java.lang.Exception</code>
+</p>
+<hr>
+<h2>stop</h2>
+<p>
+<code>public void <strong>stop</strong>(BundleContext context)</code>
+</p>
+<p>This method is called when the plug-in is stopped</p>
+<h3>Parameters</h3>
+<p>
+<code>context</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>java.lang.Exception</code>
+</p>
+<hr>
+<h2>throwCoreException</h2>
+<p>
+<code>public void <strong>throwCoreException</strong>(java.lang.String message
+ ,
+ java.lang.Throwable t)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>message</code>
+</p>
+<p>
+<code>t</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>CoreException</code>
+</p>
+<hr>
+<h2>updateXPathNavigatorView</h2>
+<p>
+<code>protected void <strong>updateXPathNavigatorView</strong>(IWorkbenchPartReference partRef)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>partRef</code>
+</p>
+<hr>
+<h2>warn</h2>
+<p>
+<code>public void <strong>warn</strong>(java.lang.String message)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>message</code>
+</p>
<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xml.xpath.ui.internal</strong></font>
@@ -655,6 +1505,20 @@ extends NLS</pre>
</table>
<br>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>XPathPrefencePage_0</h2>
+<p>
+<code>public static java.lang.String <strong>XPathPrefencePage_0</strong></code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xml.xpath.ui.internal.preferences</strong></font>
</p>
@@ -675,7 +1539,7 @@ extends AbstractPreferencePage</pre>
</td>
</tr>
<tr>
-<td><code><strong>XPathPrefencePage()</strong></code></td>
+<td><code><strong>XPathPrefencePage</strong>()</code></td>
</tr>
</table>
<br>
@@ -693,6 +1557,44 @@ extends AbstractPreferencePage</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>XPathPrefencePage</h2>
+<p>
+<code>public <strong>XPathPrefencePage</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>createContents</h2>
+<p>
+<code>protected org.eclipse.swt.widgets.Control <strong>createContents</strong>(org.eclipse.swt.widgets.Composite parent)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>parent</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.swt.widgets.Control</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xml.xpath.ui.internal.preferences</strong></font>
</p>
@@ -715,7 +1617,7 @@ extends XMLTemplatePreferencePage</pre>XSLTemplatePreferencePage sets up the tem
</td>
</tr>
<tr>
-<td><code><strong>XPathTemplatePreferencePage()</strong></code></td>
+<td><code><strong>XPathTemplatePreferencePage</strong>()</code></td>
</tr>
</table>
<br>
@@ -733,6 +1635,40 @@ extends XMLTemplatePreferencePage</pre>XSLTemplatePreferencePage sets up the tem
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>XPathTemplatePreferencePage</h2>
+<p>
+<code>public <strong>XPathTemplatePreferencePage</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>performOk</h2>
+<p>
+<code>public boolean <strong>performOk</strong>()</code>
+</p>
+<p>(non-Javadoc)</p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xml.xpath.ui.views</strong></font>
</p>
@@ -753,7 +1689,7 @@ extends LabelProvider</pre>
</td>
</tr>
<tr>
-<td><code><strong>DOMNodeLabelProvider()</strong></code></td>
+<td><code><strong>DOMNodeLabelProvider</strong>()</code></td>
</tr>
</table>
<br>
@@ -764,19 +1700,71 @@ extends LabelProvider</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getText(java.lang.Object element)</code>
+<td width="20%" align="right"><code>public org.eclipse.swt.graphics.Image</code></td><td width="" align="left"><code>getImage(java.lang.Object element)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public org.eclipse.swt.graphics.Image</code></td><td width="" align="left"><code>getImage(java.lang.Object element)</code>
+<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getText(java.lang.Object element)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>DOMNodeLabelProvider</h2>
+<p>
+<code>public <strong>DOMNodeLabelProvider</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getImage</h2>
+<p>
+<code>public org.eclipse.swt.graphics.Image <strong>getImage</strong>(java.lang.Object element)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>element</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.swt.graphics.Image</code>
+</p>
+<hr>
+<h2>getText</h2>
+<p>
+<code>public java.lang.String <strong>getText</strong>(java.lang.Object element)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>element</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xml.xpath.ui.views</strong></font>
</p>
@@ -817,7 +1805,7 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr>
-<td><code><strong>DOMTreeContentProvider()</strong></code></td>
+<td><code><strong>DOMTreeContentProvider</strong>()</code></td>
</tr>
</table>
<br>
@@ -828,31 +1816,31 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.lang.Object[]</code></td><td width="" align="left"><code>getChildren(java.lang.Object parentElement)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>dispose()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.lang.Object</code></td><td width="" align="left"><code>getParent(java.lang.Object element)</code>
+<td width="20%" align="right"><code>public java.lang.Object[]</code></td><td width="" align="left"><code>getChildren(java.lang.Object parentElement)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>hasChildren(java.lang.Object element)</code>
+<td width="20%" align="right"><code>public java.lang.Object[]</code></td><td width="" align="left"><code>getElements(java.lang.Object inputElement)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.lang.Object[]</code></td><td width="" align="left"><code>getElements(java.lang.Object inputElement)</code>
+<td width="20%" align="right"><code>public java.lang.Object</code></td><td width="" align="left"><code>getParent(java.lang.Object element)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>dispose()</code>
+<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>hasChildren(java.lang.Object element)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@@ -869,6 +1857,131 @@ extends java.lang.Object</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>node</h2>
+<p>
+<code>package-private org.w3c.dom.Node <strong>node</strong></code>
+</p>
+<hr>
+<h2>NOTHING</h2>
+<p>
+<code>package-private static java.lang.Object[] <strong>NOTHING</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>DOMTreeContentProvider</h2>
+<p>
+<code>public <strong>DOMTreeContentProvider</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>dispose</h2>
+<p>
+<code>public void <strong>dispose</strong>()</code>
+</p>
+<p></p>
+<hr>
+<h2>getChildren</h2>
+<p>
+<code>public java.lang.Object[] <strong>getChildren</strong>(java.lang.Object parentElement)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>parentElement</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.Object[]</code>
+</p>
+<hr>
+<h2>getElements</h2>
+<p>
+<code>public java.lang.Object[] <strong>getElements</strong>(java.lang.Object inputElement)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>inputElement</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.Object[]</code>
+</p>
+<hr>
+<h2>getParent</h2>
+<p>
+<code>public java.lang.Object <strong>getParent</strong>(java.lang.Object element)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>element</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.Object</code>
+</p>
+<hr>
+<h2>hasChildren</h2>
+<p>
+<code>public boolean <strong>hasChildren</strong>(java.lang.Object element)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>element</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<hr>
+<h2>inputChanged</h2>
+<p>
+<code>public void <strong>inputChanged</strong>(Viewer viewer
+ ,
+ java.lang.Object oldInput
+ ,
+ java.lang.Object newInput)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>viewer</code>
+</p>
+<p>
+<code>oldInput</code>
+</p>
+<p>
+<code>newInput</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xml.xpath.ui.views</strong></font>
</p>
@@ -889,7 +2002,7 @@ extends ViewerFilter</pre>
</td>
</tr>
<tr>
-<td><code><strong>DOMViewerFilter()</strong></code></td>
+<td><code><strong>DOMViewerFilter</strong>()</code></td>
</tr>
</table>
<br>
@@ -911,6 +2024,54 @@ extends ViewerFilter</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>DOMViewerFilter</h2>
+<p>
+<code>public <strong>DOMViewerFilter</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>select</h2>
+<p>
+<code>public boolean <strong>select</strong>(Viewer viewer
+ ,
+ java.lang.Object parentElement
+ ,
+ java.lang.Object element)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>viewer</code>
+</p>
+<p>
+<code>parentElement</code>
+</p>
+<p>
+<code>element</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xml.xpath.ui.views</strong></font>
</p>
@@ -957,9 +2118,9 @@ extends Dialog</pre>
</td>
</tr>
<tr>
-<td><code><strong>EditNamespacePrefixDialog(org.eclipse.swt.widgets.Shell parentShell
+<td><code><strong>EditNamespacePrefixDialog</strong>(org.eclipse.swt.widgets.Shell parentShell
,
- IPath resourceLocation)</strong></code></td>
+ IPath resourceLocation)</code></td>
</tr>
</table>
<br>
@@ -1015,6 +2176,139 @@ extends Dialog</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>errorMessageLabel</h2>
+<p>
+<code>protected org.eclipse.swt.widgets.Label <strong>errorMessageLabel</strong></code>
+</p>
+<hr>
+<h2>namespaceInfoList</h2>
+<p>
+<code>protected java.util.List <strong>namespaceInfoList</strong></code>
+</p>
+<hr>
+<h2>resourceLocation</h2>
+<p>
+<code>protected IPath <strong>resourceLocation</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>EditNamespacePrefixDialog</h2>
+<p>
+<code>public <strong>EditNamespacePrefixDialog</strong>(org.eclipse.swt.widgets.Shell parentShell
+ ,
+ IPath resourceLocation)</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>createButtonsForButtonBar</h2>
+<p>
+<code>protected void <strong>createButtonsForButtonBar</strong>(org.eclipse.swt.widgets.Composite parent)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>parent</code>
+</p>
+<hr>
+<h2>createDialogArea</h2>
+<p>
+<code>protected org.eclipse.swt.widgets.Control <strong>createDialogArea</strong>(org.eclipse.swt.widgets.Composite parent)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>parent</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.swt.widgets.Control</code>
+</p>
+<hr>
+<h2>getDialogArea</h2>
+<p>
+<code>protected org.eclipse.swt.widgets.Control <strong>getDialogArea</strong>(org.eclipse.swt.widgets.Composite parent)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>parent</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.swt.widgets.Control</code>
+</p>
+<hr>
+<h2>getNamespaceInfoList</h2>
+<p>
+<code>public java.util.List <strong>getNamespaceInfoList</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.util.List</code>
+</p>
+<hr>
+<h2>setNamespaceInfoList</h2>
+<p>
+<code>public void <strong>setNamespaceInfoList</strong>(java.util.List list)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>list</code>
+</p>
+<hr>
+<h2>updateErrorMessage</h2>
+<p>
+<code>public void <strong>updateErrorMessage</strong>(java.util.List namespaceInfoList)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>namespaceInfoList</code>
+</p>
+<hr>
+<h2>updateOccured</h2>
+<p>
+<code>public void <strong>updateOccured</strong>(java.lang.Object object
+ ,
+ java.lang.Object arg)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>object</code>
+</p>
+<p>
+<code>arg</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xml.xpath.ui.views</strong></font>
</p>
@@ -1041,37 +2335,37 @@ extends ViewPart</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected java.util.WeakHashMap</code></td><td width="80%" align="left"><code>namespaceInfo</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>MEMENTO_QUERYCONTEXT_DOCUMENT</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>MEMENTO_XPATHNAVIGATOR_SECTION</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>MEMENTO_QUERYCONTEXT_KEY</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>MEMENTO_QUERYCONTEXT_KEY</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>MEMENTO_QUERYCONTEXT_SELECTION</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>MEMENTO_QUERYCONTEXT_DOCUMENT</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>MEMENTO_XPATHNAVIGATOR_SECTION</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>MEMENTO_QUERYCONTEXT_SELECTION</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>MEMENTO_XPATHQUERY_KEY</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>MEMENTO_XPATHQUERY_KEY</code>
+<td width="20%" align="right"><code>protected java.util.WeakHashMap</code></td><td width="80%" align="left"><code>namespaceInfo</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@@ -1085,22 +2379,22 @@ extends ViewPart</pre>
</td>
</tr>
<tr>
-<td><code><strong>XPathNavigator()</strong></code></td>
+<td><code><strong>XPathNavigator</strong>()</code></td>
</tr>
<tr>
-<td><code><strong>XPathNavigator.XPathAction()</strong></code></td>
+<td><code><strong>XPathNavigator.EditorReferenceLabelProvider</strong>()</code></td>
</tr>
<tr>
-<td><code><strong>XPathNavigator.RefreshAction()</strong></code></td>
+<td><code><strong>XPathNavigator.RefreshAction</strong>()</code></td>
</tr>
<tr>
-<td><code><strong>XPathNavigator.ShowInSourceAction()</strong></code></td>
+<td><code><strong>XPathNavigator.ShowInSourceAction</strong>()</code></td>
</tr>
<tr>
-<td><code><strong>XPathNavigator.XMLEditorsContentProvider()</strong></code></td>
+<td><code><strong>XPathNavigator.XMLEditorsContentProvider</strong>()</code></td>
</tr>
<tr>
-<td><code><strong>XPathNavigator.EditorReferenceLabelProvider()</strong></code></td>
+<td><code><strong>XPathNavigator.XPathAction</strong>()</code></td>
</tr>
</table>
<br>
@@ -1118,33 +2412,33 @@ extends ViewPart</pre>
it.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>init(IViewSite site
- ,
- IMemento memento)</code>
+<td width="20%" align="right"><code>protected org.w3c.dom.Element</code></td><td width="" align="left"><code>getQueryContext()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>saveState(IMemento memento)</code>
+<td width="20%" align="right"><code>protected org.w3c.dom.Document</code></td><td width="" align="left"><code>getSelectedDocument()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>restoreState()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>init(IViewSite site
+ ,
+ IMemento memento)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected org.w3c.dom.Document</code></td><td width="" align="left"><code>getSelectedDocument()</code>
+<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>restoreState()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected org.w3c.dom.Element</code></td><td width="" align="left"><code>getQueryContext()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>saveState(IMemento memento)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@@ -1163,6 +2457,152 @@ extends ViewPart</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>memento</h2>
+<p>
+<code>protected IMemento <strong>memento</strong></code>
+</p>
+<hr>
+<h2>MEMENTO_QUERYCONTEXT_DOCUMENT</h2>
+<p>
+<code>public static java.lang.String <strong>MEMENTO_QUERYCONTEXT_DOCUMENT</strong></code>
+</p>
+<hr>
+<h2>MEMENTO_QUERYCONTEXT_KEY</h2>
+<p>
+<code>public static java.lang.String <strong>MEMENTO_QUERYCONTEXT_KEY</strong></code>
+</p>
+<hr>
+<h2>MEMENTO_QUERYCONTEXT_SELECTION</h2>
+<p>
+<code>public static java.lang.String <strong>MEMENTO_QUERYCONTEXT_SELECTION</strong></code>
+</p>
+<hr>
+<h2>MEMENTO_XPATHNAVIGATOR_SECTION</h2>
+<p>
+<code>public static java.lang.String <strong>MEMENTO_XPATHNAVIGATOR_SECTION</strong></code>
+</p>
+<hr>
+<h2>MEMENTO_XPATHQUERY_KEY</h2>
+<p>
+<code>public static java.lang.String <strong>MEMENTO_XPATHQUERY_KEY</strong></code>
+</p>
+<hr>
+<h2>namespaceInfo</h2>
+<p>
+<code>protected java.util.WeakHashMap <strong>namespaceInfo</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>XPathNavigator</h2>
+<p>
+<code>public <strong>XPathNavigator</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>createPartControl</h2>
+<p>
+<code>public void <strong>createPartControl</strong>(org.eclipse.swt.widgets.Composite parent)</code>
+</p>
+<p>This is a callback that will allow us to create the viewer and initialize
+ it.</p>
+<h3>Parameters</h3>
+<p>
+<code>parent</code>
+</p>
+<hr>
+<h2>getQueryContext</h2>
+<p>
+<code>protected org.w3c.dom.Element <strong>getQueryContext</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>org.w3c.dom.Element</code>
+</p>
+<hr>
+<h2>getSelectedDocument</h2>
+<p>
+<code>protected org.w3c.dom.Document <strong>getSelectedDocument</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>org.w3c.dom.Document</code>
+</p>
+<hr>
+<h2>init</h2>
+<p>
+<code>public void <strong>init</strong>(IViewSite site
+ ,
+ IMemento memento)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>site</code>
+</p>
+<p>
+<code>memento</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>PartInitException</code>
+</p>
+<hr>
+<h2>restoreState</h2>
+<p>
+<code>protected void <strong>restoreState</strong>()</code>
+</p>
+<p></p>
+<hr>
+<h2>saveState</h2>
+<p>
+<code>public void <strong>saveState</strong>(IMemento memento)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>memento</code>
+</p>
+<hr>
+<h2>setFocus</h2>
+<p>
+<code>public void <strong>setFocus</strong>()</code>
+</p>
+<p>Passing the focus request to the viewer's control.</p>
+<hr>
+<h2>update</h2>
+<p>
+<code>public void <strong>update</strong>()</code>
+</p>
+<p></p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xml.xpath.ui.views</strong></font>
</p>
@@ -1183,7 +2623,7 @@ extends Action</pre>
</td>
</tr>
<tr>
-<td><code><strong>XPathNavigator.XPathAction()</strong></code></td>
+<td><code><strong>XPathNavigator.XPathAction</strong>()</code></td>
</tr>
</table>
<br>
@@ -1201,6 +2641,36 @@ extends Action</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>XPathNavigator.XPathAction</h2>
+<p>
+<code>package-private <strong>XPathNavigator.XPathAction</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>run</h2>
+<p>
+<code>public void <strong>run</strong>()</code>
+</p>
+<p></p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xml.xpath.ui.views</strong></font>
</p>
@@ -1221,7 +2691,7 @@ extends Action</pre>
</td>
</tr>
<tr>
-<td><code><strong>XPathNavigator.RefreshAction()</strong></code></td>
+<td><code><strong>XPathNavigator.RefreshAction</strong>()</code></td>
</tr>
</table>
<br>
@@ -1239,6 +2709,36 @@ extends Action</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>XPathNavigator.RefreshAction</h2>
+<p>
+<code>package-private <strong>XPathNavigator.RefreshAction</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>run</h2>
+<p>
+<code>public void <strong>run</strong>()</code>
+</p>
+<p></p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xml.xpath.ui.views</strong></font>
</p>
@@ -1259,7 +2759,7 @@ extends Action</pre>
</td>
</tr>
<tr>
-<td><code><strong>XPathNavigator.ShowInSourceAction()</strong></code></td>
+<td><code><strong>XPathNavigator.ShowInSourceAction</strong>()</code></td>
</tr>
</table>
<br>
@@ -1277,6 +2777,36 @@ extends Action</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>XPathNavigator.ShowInSourceAction</h2>
+<p>
+<code>package-private <strong>XPathNavigator.ShowInSourceAction</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>run</h2>
+<p>
+<code>public void <strong>run</strong>()</code>
+</p>
+<p></p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xml.xpath.ui.views</strong></font>
</p>
@@ -1297,7 +2827,7 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr>
-<td><code><strong>XPathNavigator.XMLEditorsContentProvider()</strong></code></td>
+<td><code><strong>XPathNavigator.XMLEditorsContentProvider</strong>()</code></td>
</tr>
</table>
<br>
@@ -1308,13 +2838,13 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.lang.Object[]</code></td><td width="" align="left"><code>getElements(java.lang.Object inputElement)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>dispose()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>dispose()</code>
+<td width="20%" align="right"><code>public java.lang.Object[]</code></td><td width="" align="left"><code>getElements(java.lang.Object inputElement)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@@ -1331,6 +2861,70 @@ extends java.lang.Object</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>XPathNavigator.XMLEditorsContentProvider</h2>
+<p>
+<code>package-private <strong>XPathNavigator.XMLEditorsContentProvider</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>dispose</h2>
+<p>
+<code>public void <strong>dispose</strong>()</code>
+</p>
+<p></p>
+<hr>
+<h2>getElements</h2>
+<p>
+<code>public java.lang.Object[] <strong>getElements</strong>(java.lang.Object inputElement)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>inputElement</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.Object[]</code>
+</p>
+<hr>
+<h2>inputChanged</h2>
+<p>
+<code>public void <strong>inputChanged</strong>(Viewer viewer
+ ,
+ java.lang.Object oldInput
+ ,
+ java.lang.Object newInput)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>viewer</code>
+</p>
+<p>
+<code>oldInput</code>
+</p>
+<p>
+<code>newInput</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xml.xpath.ui.views</strong></font>
</p>
@@ -1365,7 +2959,7 @@ extends LabelProvider</pre>
</td>
</tr>
<tr>
-<td><code><strong>XPathNavigator.EditorReferenceLabelProvider()</strong></code></td>
+<td><code><strong>XPathNavigator.EditorReferenceLabelProvider</strong>()</code></td>
</tr>
</table>
<br>
@@ -1389,6 +2983,77 @@ extends LabelProvider</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>DIRTY_INDICATOR</h2>
+<p>
+<code>public static char <strong>DIRTY_INDICATOR</strong></code>
+</p>
+<table>
+<tr>
+<td>A string used to indicate that an editor is dirty</td>
+</tr>
+</table>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>XPathNavigator.EditorReferenceLabelProvider</h2>
+<p>
+<code>package-private <strong>XPathNavigator.EditorReferenceLabelProvider</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getImage</h2>
+<p>
+<code>public org.eclipse.swt.graphics.Image <strong>getImage</strong>(java.lang.Object element)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>element</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.swt.graphics.Image</code>
+</p>
+<hr>
+<h2>getText</h2>
+<p>
+<code>public java.lang.String <strong>getText</strong>(java.lang.Object element)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>element</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xml.xpath.ui.views</strong></font>
</p>
@@ -1409,7 +3074,7 @@ extends Action</pre>
</td>
</tr>
<tr>
-<td><code><strong>XPathNavigator.XPathAction()</strong></code></td>
+<td><code><strong>XPathNavigator.XPathAction</strong>()</code></td>
</tr>
</table>
<br>
@@ -1427,6 +3092,36 @@ extends Action</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>XPathNavigator.XPathAction</h2>
+<p>
+<code>package-private <strong>XPathNavigator.XPathAction</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>run</h2>
+<p>
+<code>public void <strong>run</strong>()</code>
+</p>
+<p></p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xml.xpath.ui.views</strong></font>
</p>
@@ -1447,7 +3142,7 @@ extends Action</pre>
</td>
</tr>
<tr>
-<td><code><strong>XPathNavigator.RefreshAction()</strong></code></td>
+<td><code><strong>XPathNavigator.RefreshAction</strong>()</code></td>
</tr>
</table>
<br>
@@ -1465,6 +3160,36 @@ extends Action</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>XPathNavigator.RefreshAction</h2>
+<p>
+<code>package-private <strong>XPathNavigator.RefreshAction</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>run</h2>
+<p>
+<code>public void <strong>run</strong>()</code>
+</p>
+<p></p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xml.xpath.ui.views</strong></font>
</p>
@@ -1485,7 +3210,7 @@ extends Action</pre>
</td>
</tr>
<tr>
-<td><code><strong>XPathNavigator.ShowInSourceAction()</strong></code></td>
+<td><code><strong>XPathNavigator.ShowInSourceAction</strong>()</code></td>
</tr>
</table>
<br>
@@ -1503,6 +3228,36 @@ extends Action</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>XPathNavigator.ShowInSourceAction</h2>
+<p>
+<code>package-private <strong>XPathNavigator.ShowInSourceAction</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>run</h2>
+<p>
+<code>public void <strong>run</strong>()</code>
+</p>
+<p></p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xml.xpath.ui.views</strong></font>
</p>
@@ -1523,7 +3278,7 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr>
-<td><code><strong>XPathNavigator.XMLEditorsContentProvider()</strong></code></td>
+<td><code><strong>XPathNavigator.XMLEditorsContentProvider</strong>()</code></td>
</tr>
</table>
<br>
@@ -1534,13 +3289,13 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.lang.Object[]</code></td><td width="" align="left"><code>getElements(java.lang.Object inputElement)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>dispose()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>dispose()</code>
+<td width="20%" align="right"><code>public java.lang.Object[]</code></td><td width="" align="left"><code>getElements(java.lang.Object inputElement)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@@ -1557,6 +3312,70 @@ extends java.lang.Object</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>XPathNavigator.XMLEditorsContentProvider</h2>
+<p>
+<code>package-private <strong>XPathNavigator.XMLEditorsContentProvider</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>dispose</h2>
+<p>
+<code>public void <strong>dispose</strong>()</code>
+</p>
+<p></p>
+<hr>
+<h2>getElements</h2>
+<p>
+<code>public java.lang.Object[] <strong>getElements</strong>(java.lang.Object inputElement)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>inputElement</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.Object[]</code>
+</p>
+<hr>
+<h2>inputChanged</h2>
+<p>
+<code>public void <strong>inputChanged</strong>(Viewer viewer
+ ,
+ java.lang.Object oldInput
+ ,
+ java.lang.Object newInput)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>viewer</code>
+</p>
+<p>
+<code>oldInput</code>
+</p>
+<p>
+<code>newInput</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xml.xpath.ui.views</strong></font>
</p>
@@ -1591,7 +3410,7 @@ extends LabelProvider</pre>
</td>
</tr>
<tr>
-<td><code><strong>XPathNavigator.EditorReferenceLabelProvider()</strong></code></td>
+<td><code><strong>XPathNavigator.EditorReferenceLabelProvider</strong>()</code></td>
</tr>
</table>
<br>
@@ -1615,6 +3434,77 @@ extends LabelProvider</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>DIRTY_INDICATOR</h2>
+<p>
+<code>public static char <strong>DIRTY_INDICATOR</strong></code>
+</p>
+<table>
+<tr>
+<td>A string used to indicate that an editor is dirty</td>
+</tr>
+</table>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>XPathNavigator.EditorReferenceLabelProvider</h2>
+<p>
+<code>package-private <strong>XPathNavigator.EditorReferenceLabelProvider</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getImage</h2>
+<p>
+<code>public org.eclipse.swt.graphics.Image <strong>getImage</strong>(java.lang.Object element)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>element</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.swt.graphics.Image</code>
+</p>
+<hr>
+<h2>getText</h2>
+<p>
+<code>public java.lang.String <strong>getText</strong>(java.lang.Object element)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>element</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xml.xpath.internal.ui.views</strong></font>
</p>
@@ -1635,7 +3525,7 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr>
-<td><code><strong>JFaceNodeContentProviderXPath()</strong></code></td>
+<td><code><strong>JFaceNodeContentProviderXPath</strong>()</code></td>
</tr>
</table>
<br>
@@ -1646,6 +3536,12 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr valign="top">
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>dispose()</code>
+<br>
+ &nbsp;&nbsp;&nbsp;&nbsp;
+ </td>
+</tr>
+<tr valign="top">
<td width="20%" align="right"><code>protected IJFaceNodeAdapter</code></td><td width="" align="left"><code>getAdapter(java.lang.Object adaptable)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
@@ -1685,13 +3581,127 @@ extends java.lang.Object</pre>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
-<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>dispose()</code>
-<br>
- &nbsp;&nbsp;&nbsp;&nbsp;
- </td>
+</table>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>JFaceNodeContentProviderXPath</h2>
+<p>
+<code>public <strong>JFaceNodeContentProviderXPath</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
</tr>
</table>
+<h2>dispose</h2>
+<p>
+<code>public void <strong>dispose</strong>()</code>
+</p>
+<p></p>
+<hr>
+<h2>getAdapter</h2>
+<p>
+<code>protected IJFaceNodeAdapter <strong>getAdapter</strong>(java.lang.Object adaptable)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>adaptable</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>IJFaceNodeAdapter</code>
+</p>
+<hr>
+<h2>getChildren</h2>
+<p>
+<code>public java.lang.Object[] <strong>getChildren</strong>(java.lang.Object object)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>object</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.Object[]</code>
+</p>
+<hr>
+<h2>getElements</h2>
+<p>
+<code>public java.lang.Object[] <strong>getElements</strong>(java.lang.Object object)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>object</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.Object[]</code>
+</p>
+<hr>
+<h2>getParent</h2>
+<p>
+<code>public java.lang.Object <strong>getParent</strong>(java.lang.Object object)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>object</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.Object</code>
+</p>
+<hr>
+<h2>hasChildren</h2>
+<p>
+<code>public boolean <strong>hasChildren</strong>(java.lang.Object object)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>object</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<hr>
+<h2>inputChanged</h2>
+<p>
+<code>public void <strong>inputChanged</strong>(Viewer viewer
+ ,
+ java.lang.Object oldInput
+ ,
+ java.lang.Object newInput)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>viewer</code>
+</p>
+<p>
+<code>oldInput</code>
+</p>
+<p>
+<code>newInput</code>
+</p>
<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xml.xpath.internal.ui.views</strong></font>
@@ -1713,7 +3723,7 @@ extends LabelProvider</pre>
</td>
</tr>
<tr>
-<td><code><strong>JFaceNodeLabelProviderXPath()</strong></code></td>
+<td><code><strong>JFaceNodeLabelProviderXPath</strong>()</code></td>
</tr>
</table>
<br>
@@ -1751,6 +3761,91 @@ extends LabelProvider</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>JFaceNodeLabelProviderXPath</h2>
+<p>
+<code>public <strong>JFaceNodeLabelProviderXPath</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getAdapter</h2>
+<p>
+<code>protected IJFaceNodeAdapter <strong>getAdapter</strong>(java.lang.Object adaptable)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>adaptable</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>IJFaceNodeAdapter</code>
+</p>
+<hr>
+<h2>getImage</h2>
+<p>
+<code>public org.eclipse.swt.graphics.Image <strong>getImage</strong>(java.lang.Object element)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>element</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.swt.graphics.Image</code>
+</p>
+<hr>
+<h2>getText</h2>
+<p>
+<code>public java.lang.String <strong>getText</strong>(java.lang.Object element)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>element</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
+<h2>isLabelProperty</h2>
+<p>
+<code>public boolean <strong>isLabelProperty</strong>(java.lang.Object element
+ ,
+ java.lang.String property)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>element</code>
+</p>
+<p>
+<code>property</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xml.xpath.internal.ui.views</strong></font>
</p>
@@ -1821,6 +3916,55 @@ extends NLS</pre>
</table>
<br>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>XPathComputer_0</h2>
+<p>
+<code>public static java.lang.String <strong>XPathComputer_0</strong></code>
+</p>
+<hr>
+<h2>XPathComputer_5</h2>
+<p>
+<code>public static java.lang.String <strong>XPathComputer_5</strong></code>
+</p>
+<hr>
+<h2>XPathView_0</h2>
+<p>
+<code>public static java.lang.String <strong>XPathView_0</strong></code>
+</p>
+<hr>
+<h2>XPathView_1</h2>
+<p>
+<code>public static java.lang.String <strong>XPathView_1</strong></code>
+</p>
+<hr>
+<h2>XPathView_2</h2>
+<p>
+<code>public static java.lang.String <strong>XPathView_2</strong></code>
+</p>
+<hr>
+<h2>XPathView_8</h2>
+<p>
+<code>public static java.lang.String <strong>XPathView_8</strong></code>
+</p>
+<hr>
+<h2>XPathViewActions_0</h2>
+<p>
+<code>public static java.lang.String <strong>XPathViewActions_0</strong></code>
+</p>
+<hr>
+<h2>XPathViewActions_1</h2>
+<p>
+<code>public static java.lang.String <strong>XPathViewActions_1</strong></code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xml.xpath.internal.ui.views</strong></font>
</p>
@@ -1841,7 +3985,7 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr>
-<td><code><strong>XPathComputer(org.eclipse.wst.xml.xpath.internal.ui.views.XPathView xpathView)</strong></code></td>
+<td><code><strong>XPathComputer</strong>(org.eclipse.wst.xml.xpath.internal.ui.views.XPathView xpathView)</code></td>
</tr>
</table>
<br>
@@ -1852,37 +3996,107 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setModel(IStructuredModel model)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>compute()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setText(java.lang.String text)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>dispose()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setSelectedNode(org.w3c.dom.Node node)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setModel(IStructuredModel model)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>compute()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setSelectedNode(org.w3c.dom.Node node)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>dispose()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setText(java.lang.String text)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>XPathComputer</h2>
+<p>
+<code>public <strong>XPathComputer</strong>(org.eclipse.wst.xml.xpath.internal.ui.views.XPathView xpathView)</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>compute</h2>
+<p>
+<code>public void <strong>compute</strong>()</code>
+</p>
+<p></p>
+<hr>
+<h2>dispose</h2>
+<p>
+<code>public void <strong>dispose</strong>()</code>
+</p>
+<p></p>
+<hr>
+<h2>setModel</h2>
+<p>
+<code>public void <strong>setModel</strong>(IStructuredModel model)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>model</code>
+</p>
+<hr>
+<h2>setSelectedNode</h2>
+<p>
+<code>public void <strong>setSelectedNode</strong>(org.w3c.dom.Node node)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>node</code>
+</p>
+<hr>
+<h2>setText</h2>
+<p>
+<code>public void <strong>setText</strong>(java.lang.String text)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>text</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>javax.xml.xpath.XPathExpressionException</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xml.xpath.internal.ui.views</strong></font>
</p>
@@ -1903,7 +4117,7 @@ extends ViewPart</pre>
</td>
</tr>
<tr>
-<td><code><strong>XPathView()</strong></code></td>
+<td><code><strong>XPathView</strong>()</code></td>
</tr>
</table>
<br>
@@ -1920,45 +4134,144 @@ extends ViewPart</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>package-private void</code></td><td width="" align="left"><code>xpathRecomputed(org.w3c.dom.NodeList nodeList)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>dispose()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setFocus()</code>
+<td width="20%" align="right"><code>public java.lang.Object</code></td><td width="" align="left"><code>getAdapter(java.lang.Class key)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>dispose()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>init(IViewSite site
+ ,
+ IMemento memento)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.lang.Object</code></td><td width="" align="left"><code>getAdapter(java.lang.Class key)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>saveState(IMemento memento)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>saveState(IMemento memento)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setFocus()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>init(IViewSite site
- ,
- IMemento memento)</code>
+<td width="20%" align="right"><code>package-private void</code></td><td width="" align="left"><code>xpathRecomputed(org.w3c.dom.NodeList nodeList)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>XPathView</h2>
+<p>
+<code>public <strong>XPathView</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>createPartControl</h2>
+<p>
+<code>public void <strong>createPartControl</strong>(org.eclipse.swt.widgets.Composite parent)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>parent</code>
+</p>
+<hr>
+<h2>dispose</h2>
+<p>
+<code>public void <strong>dispose</strong>()</code>
+</p>
+<p></p>
+<hr>
+<h2>getAdapter</h2>
+<p>
+<code>public java.lang.Object <strong>getAdapter</strong>(java.lang.Class key)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>key</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.Object</code>
+</p>
+<hr>
+<h2>init</h2>
+<p>
+<code>public void <strong>init</strong>(IViewSite site
+ ,
+ IMemento memento)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>site</code>
+</p>
+<p>
+<code>memento</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>PartInitException</code>
+</p>
+<hr>
+<h2>saveState</h2>
+<p>
+<code>public void <strong>saveState</strong>(IMemento memento)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>memento</code>
+</p>
+<hr>
+<h2>setFocus</h2>
+<p>
+<code>public void <strong>setFocus</strong>()</code>
+</p>
+<p></p>
+<hr>
+<h2>xpathRecomputed</h2>
+<p>
+<code>package-private void <strong>xpathRecomputed</strong>(org.w3c.dom.NodeList nodeList)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>nodeList</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xml.xpath.internal.ui.views</strong></font>
</p>
@@ -1993,7 +4306,7 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr>
-<td><code><strong>XPathViewActions()</strong></code></td>
+<td><code><strong>XPathViewActions</strong>()</code></td>
</tr>
</table>
<br>
@@ -2016,6 +4329,12 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr valign="top">
+<td width="20%" align="right"><code>package-private void</code></td><td width="" align="left"><code>fillContextMenu(IMenuManager manager)</code>
+<br>
+ &nbsp;&nbsp;&nbsp;&nbsp;
+ </td>
+</tr>
+<tr valign="top">
<td width="20%" align="right"><code>public ISelection</code></td><td width="" align="left"><code>getSelection(TreeViewer viewer
,
ISelection selection)</code>
@@ -2035,13 +4354,126 @@ extends java.lang.Object</pre>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
-<tr valign="top">
-<td width="20%" align="right"><code>package-private void</code></td><td width="" align="left"><code>fillContextMenu(IMenuManager manager)</code>
-<br>
- &nbsp;&nbsp;&nbsp;&nbsp;
- </td>
+</table>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
</tr>
</table>
+<h2>linkWithEditor</h2>
+<p>
+<code>package-private boolean <strong>linkWithEditor</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>XPathViewActions</h2>
+<p>
+<code>package-private <strong>XPathViewActions</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>createMenuContributions</h2>
+<p>
+<code>protected IAction[] <strong>createMenuContributions</strong>(TreeViewer viewer)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>viewer</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>IAction[]</code>
+</p>
+<hr>
+<h2>createToolbarContributions</h2>
+<p>
+<code>protected IAction[] <strong>createToolbarContributions</strong>(TreeViewer viewer)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>viewer</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>IAction[]</code>
+</p>
+<hr>
+<h2>fillContextMenu</h2>
+<p>
+<code>package-private void <strong>fillContextMenu</strong>(IMenuManager manager)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>manager</code>
+</p>
+<hr>
+<h2>getSelection</h2>
+<p>
+<code>public ISelection <strong>getSelection</strong>(TreeViewer viewer
+ ,
+ ISelection selection)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>viewer</code>
+</p>
+<p>
+<code>selection</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>ISelection</code>
+</p>
+<hr>
+<h2>isLinkedWithEditor</h2>
+<p>
+<code>public boolean <strong>isLinkedWithEditor</strong>(TreeViewer treeViewer)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>treeViewer</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<hr>
+<h2>setLinkWithEditor</h2>
+<p>
+<code>package-private void <strong>setLinkWithEditor</strong>(boolean isLinkWithEditor)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>isLinkWithEditor</code>
+</p>
<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xml.xpath.ui.internal.contentassist</strong></font>
@@ -2063,7 +4495,7 @@ extends TemplateProposal</pre>Purpose of this class is to make the additional pr
</td>
</tr>
<tr>
-<td><code><strong>CustomTemplateProposal(Template template
+<td><code><strong>CustomTemplateProposal</strong>(Template template
,
TemplateContext context
,
@@ -2071,7 +4503,7 @@ extends TemplateProposal</pre>Purpose of this class is to make the additional pr
,
org.eclipse.swt.graphics.Image image
,
- int relevance)</strong></code></td>
+ int relevance)</code></td>
</tr>
</table>
<br>
@@ -2082,19 +4514,71 @@ extends TemplateProposal</pre>Purpose of this class is to make the additional pr
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getDisplayString()</code>
+<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getAdditionalProposalInfo()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getAdditionalProposalInfo()</code>
+<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getDisplayString()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>CustomTemplateProposal</h2>
+<p>
+<code>public <strong>CustomTemplateProposal</strong>(Template template
+ ,
+ TemplateContext context
+ ,
+ IRegion region
+ ,
+ org.eclipse.swt.graphics.Image image
+ ,
+ int relevance)</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getAdditionalProposalInfo</h2>
+<p>
+<code>public java.lang.String <strong>getAdditionalProposalInfo</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
+<h2>getDisplayString</h2>
+<p>
+<code>public java.lang.String <strong>getDisplayString</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xml.xpath.ui.internal.contentassist</strong></font>
</p>
@@ -2118,7 +4602,7 @@ extends TemplateCompletionProcessor</pre>Completion processor for XML Templates.
</td>
</tr>
<tr>
-<td><code><strong>XPathTemplateCompletionProcessor()</strong></code></td>
+<td><code><strong>XPathTemplateCompletionProcessor</strong>()</code></td>
</tr>
</table>
<br>
@@ -2176,6 +4660,135 @@ extends TemplateCompletionProcessor</pre>Completion processor for XML Templates.
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>XPathTemplateCompletionProcessor</h2>
+<p>
+<code>public <strong>XPathTemplateCompletionProcessor</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>computeCompletionProposals</h2>
+<p>
+<code>public ICompletionProposal[] <strong>computeCompletionProposals</strong>(ITextViewer viewer
+ ,
+ int offset)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>viewer</code>
+</p>
+<p>
+<code>offset</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>ICompletionProposal[]</code>
+</p>
+<hr>
+<h2>createProposal</h2>
+<p>
+<code>protected ICompletionProposal <strong>createProposal</strong>(Template template
+ ,
+ TemplateContext context
+ ,
+ IRegion region
+ ,
+ int relevance)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>template</code>
+</p>
+<p>
+<code>context</code>
+</p>
+<p>
+<code>region</code>
+</p>
+<p>
+<code>relevance</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>ICompletionProposal</code>
+</p>
+<hr>
+<h2>getContextType</h2>
+<p>
+<code>protected TemplateContextType <strong>getContextType</strong>(ITextViewer viewer
+ ,
+ IRegion region)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>viewer</code>
+</p>
+<p>
+<code>region</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>TemplateContextType</code>
+</p>
+<hr>
+<h2>getImage</h2>
+<p>
+<code>protected org.eclipse.swt.graphics.Image <strong>getImage</strong>(Template template)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>template</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.swt.graphics.Image</code>
+</p>
+<hr>
+<h2>getTemplates</h2>
+<p>
+<code>protected Template[] <strong>getTemplates</strong>(java.lang.String contextTypeId)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>contextTypeId</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>Template[]</code>
+</p>
+<hr>
+<h2>setContextType</h2>
+<p>
+<code>public void <strong>setContextType</strong>(java.lang.String contextTypeId)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>contextTypeId</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xml.xpath.ui.internal.templates</strong></font>
</p>
@@ -2197,37 +4810,37 @@ extends java.lang.Object</pre>This class contains the names and values for the X
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>XPATH</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>AXIS</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
TODO: Add Javadoc</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>XPATH2</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>CUSTOM</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
TODO: Add Javadoc</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>AXIS</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>EXSLT</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
TODO: Add Javadoc</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>EXSLT</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>OPERATOR</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
TODO: Add Javadoc</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>OPERATOR</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>XPATH</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
TODO: Add Javadoc</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>CUSTOM</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>XPATH2</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
TODO: Add Javadoc</td>
@@ -2241,7 +4854,7 @@ extends java.lang.Object</pre>This class contains the names and values for the X
</td>
</tr>
<tr>
-<td><code><strong>TemplateContextTypeIdsXPath()</strong></code></td>
+<td><code><strong>TemplateContextTypeIdsXPath</strong>()</code></td>
</tr>
</table>
<br>
@@ -2253,6 +4866,90 @@ extends java.lang.Object</pre>This class contains the names and values for the X
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>AXIS</h2>
+<p>
+<code>public static java.lang.String <strong>AXIS</strong></code>
+</p>
+<table>
+<tr>
+<td>TODO: Add Javadoc</td>
+</tr>
+</table>
+<hr>
+<h2>CUSTOM</h2>
+<p>
+<code>public static java.lang.String <strong>CUSTOM</strong></code>
+</p>
+<table>
+<tr>
+<td>TODO: Add Javadoc</td>
+</tr>
+</table>
+<hr>
+<h2>EXSLT</h2>
+<p>
+<code>public static java.lang.String <strong>EXSLT</strong></code>
+</p>
+<table>
+<tr>
+<td>TODO: Add Javadoc</td>
+</tr>
+</table>
+<hr>
+<h2>OPERATOR</h2>
+<p>
+<code>public static java.lang.String <strong>OPERATOR</strong></code>
+</p>
+<table>
+<tr>
+<td>TODO: Add Javadoc</td>
+</tr>
+</table>
+<hr>
+<h2>XPATH</h2>
+<p>
+<code>public static java.lang.String <strong>XPATH</strong></code>
+</p>
+<table>
+<tr>
+<td>TODO: Add Javadoc</td>
+</tr>
+</table>
+<hr>
+<h2>XPATH2</h2>
+<p>
+<code>public static java.lang.String <strong>XPATH2</strong></code>
+</p>
+<table>
+<tr>
+<td>TODO: Add Javadoc</td>
+</tr>
+</table>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>TemplateContextTypeIdsXPath</h2>
+<p>
+<code>public <strong>TemplateContextTypeIdsXPath</strong>()</code>
+</p>
+<p></p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xml.xpath.ui.internal.util</strong></font>
</p>
@@ -2276,7 +4973,7 @@ extends java.lang.Object</pre>Helper class to handle images provided by this plu
</td>
</tr>
<tr>
-<td><code><strong>XPathPluginImageHelper()</strong></code></td>
+<td><code><strong>XPathPluginImageHelper</strong>()</code></td>
</tr>
</table>
<br>
@@ -2287,12 +4984,6 @@ extends java.lang.Object</pre>Helper class to handle images provided by this plu
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static org.eclipse.wst.xml.xpath.ui.internal.util.XPathPluginImageHelper</code></td><td width="" align="left"><code>getInstance()</code>
-<br>
- &nbsp;&nbsp;&nbsp;&nbsp;
- Gets the instance.</td>
-</tr>
-<tr valign="top">
<td width="20%" align="right"><code>public org.eclipse.swt.graphics.Image</code></td><td width="" align="left"><code>getImage(java.lang.String resource)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
@@ -2309,8 +5000,76 @@ extends java.lang.Object</pre>Helper class to handle images provided by this plu
attempt to find and load the image descriptor at the location specified
in resource.</td>
</tr>
+<tr valign="top">
+<td width="20%" align="right"><code>public static org.eclipse.wst.xml.xpath.ui.internal.util.XPathPluginImageHelper</code></td><td width="" align="left"><code>getInstance()</code>
+<br>
+ &nbsp;&nbsp;&nbsp;&nbsp;
+ Gets the instance.</td>
+</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>XPathPluginImageHelper</h2>
+<p>
+<code>public <strong>XPathPluginImageHelper</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getImage</h2>
+<p>
+<code>public org.eclipse.swt.graphics.Image <strong>getImage</strong>(java.lang.String resource)</code>
+</p>
+<p>Retrieves the image associated with resource from the image registry.
+ If the image cannot be retrieved, attempt to find and load the image at
+ the location specified in resource.</p>
+<h3>Parameters</h3>
+<p>
+<code>resource</code> - the image to retrieve</p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.swt.graphics.Image</code> - Image the image associated with resource or null if one could not be found</p>
+<hr>
+<h2>getImageDescriptor</h2>
+<p>
+<code>public ImageDescriptor <strong>getImageDescriptor</strong>(java.lang.String resource)</code>
+</p>
+<p>Retrieves the image descriptor associated with resource from the image
+ descriptor registry. If the image descriptor cannot be retrieved,
+ attempt to find and load the image descriptor at the location specified
+ in resource.</p>
+<h3>Parameters</h3>
+<p>
+<code>resource</code> - the image descriptor to retrieve</p>
+<h3>Returns</h3>
+<p>
+<code>ImageDescriptor</code> - ImageDescriptor the image descriptor assocated with resource or the default "missing" image descriptor if one could not be found</p>
+<hr>
+<h2>getInstance</h2>
+<p>
+<code>public org.eclipse.wst.xml.xpath.ui.internal.util.XPathPluginImageHelper <strong>getInstance</strong>()</code>
+</p>
+<p>Gets the instance.</p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xml.xpath.ui.internal.util.XPathPluginImageHelper</code> - Returns a XMLEditorPluginImageHelper</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xml.xpath.ui.internal.util</strong></font>
</p>
@@ -2330,25 +5089,25 @@ extends java.lang.Object</pre>Bundle of most images used by the XSL Plugins<hr>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>IMG_XPATH_FUNCTION</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>IMG_OPERATOR</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
Path to the XPATH Images used for Content Assist</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>IMG_XPATH_AXIS</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>IMG_VARIABLES</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
Path to the XPATH Images used for Content Assist</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>IMG_VARIABLES</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>IMG_XPATH_AXIS</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
Path to the XPATH Images used for Content Assist</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>IMG_OPERATOR</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>IMG_XPATH_FUNCTION</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
Path to the XPATH Images used for Content Assist</td>
@@ -2362,7 +5121,7 @@ extends java.lang.Object</pre>Bundle of most images used by the XSL Plugins<hr>
</td>
</tr>
<tr>
-<td><code><strong>XPathPluginImages()</strong></code></td>
+<td><code><strong>XPathPluginImages</strong>()</code></td>
</tr>
</table>
<br>
@@ -2374,6 +5133,70 @@ extends java.lang.Object</pre>Bundle of most images used by the XSL Plugins<hr>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>IMG_OPERATOR</h2>
+<p>
+<code>public static java.lang.String <strong>IMG_OPERATOR</strong></code>
+</p>
+<table>
+<tr>
+<td>Path to the XPATH Images used for Content Assist</td>
+</tr>
+</table>
+<hr>
+<h2>IMG_VARIABLES</h2>
+<p>
+<code>public static java.lang.String <strong>IMG_VARIABLES</strong></code>
+</p>
+<table>
+<tr>
+<td>Path to the XPATH Images used for Content Assist</td>
+</tr>
+</table>
+<hr>
+<h2>IMG_XPATH_AXIS</h2>
+<p>
+<code>public static java.lang.String <strong>IMG_XPATH_AXIS</strong></code>
+</p>
+<table>
+<tr>
+<td>Path to the XPATH Images used for Content Assist</td>
+</tr>
+</table>
+<hr>
+<h2>IMG_XPATH_FUNCTION</h2>
+<p>
+<code>public static java.lang.String <strong>IMG_XPATH_FUNCTION</strong></code>
+</p>
+<table>
+<tr>
+<td>Path to the XPATH Images used for Content Assist</td>
+</tr>
+</table>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>XPathPluginImages</h2>
+<p>
+<code>public <strong>XPathPluginImages</strong>()</code>
+</p>
+<p></p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.core</strong></font>
</p>
@@ -2395,48 +5218,48 @@ extends java.lang.Object</pre>Preference constants specific to the XSL validator
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>MAX_ERRORS</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>CALL_TEMPLATES</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- The maximum number of errors allowed per XSL file.
+ The level at which an unresolved called template is reported.
&lt;p&gt;
- Value is of type &lt;code&gt;Integer&lt;/code&gt;.
+ Value is one of &lt;code&gt;IMarker.SEVERITY_ERROR, IMarker.SEVERITY_WARNING, IMarker.SEVERITY_INFO&lt;/code&gt;
&lt;/p&gt;</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>MISSING_PARAM</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>CIRCULAR_REF</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- The level at which a missing parameter is reported.
+ The level at which an include/import circular references is reported.
&lt;p&gt;
Value is one of &lt;code&gt;IMarker.SEVERITY_ERROR, IMarker.SEVERITY_WARNING, IMarker.SEVERITY_INFO&lt;/code&gt;
&lt;/p&gt;</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>XPATHS</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>DUPLICATE_PARAMETER</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- The level at which an invalid XPath is reported.
+ The level at which a duplicate parameter is reported.
&lt;p&gt;
Value is one of &lt;code&gt;IMarker.SEVERITY_ERROR, IMarker.SEVERITY_WARNING, IMarker.SEVERITY_INFO&lt;/code&gt;
&lt;/p&gt;</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>CALL_TEMPLATES</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>EMPTY_PARAM</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- The level at which an unresolved called template is reported.
+ The level at which a parameter that does not have a default value and does not specify a value is reported.
&lt;p&gt;
Value is one of &lt;code&gt;IMarker.SEVERITY_ERROR, IMarker.SEVERITY_WARNING, IMarker.SEVERITY_INFO&lt;/code&gt;
&lt;/p&gt;</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>EMPTY_PARAM</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>MAX_ERRORS</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- The level at which a parameter that does not have a default value and does not specify a value is reported.
+ The maximum number of errors allowed per XSL file.
&lt;p&gt;
- Value is one of &lt;code&gt;IMarker.SEVERITY_ERROR, IMarker.SEVERITY_WARNING, IMarker.SEVERITY_INFO&lt;/code&gt;
+ Value is of type &lt;code&gt;Integer&lt;/code&gt;.
&lt;/p&gt;</td>
</tr>
<tr valign="top">
@@ -2449,19 +5272,19 @@ extends java.lang.Object</pre>Preference constants specific to the XSL validator
&lt;/p&gt;</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>CIRCULAR_REF</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>MISSING_PARAM</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- The level at which an include/import circular references is reported.
+ The level at which a missing parameter is reported.
&lt;p&gt;
Value is one of &lt;code&gt;IMarker.SEVERITY_ERROR, IMarker.SEVERITY_WARNING, IMarker.SEVERITY_INFO&lt;/code&gt;
&lt;/p&gt;</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>TEMPLATE_CONFLICT</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>NAME_ATTRIBUTE_EMPTY</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- The level at which a template conflict is reported.
+ The level at which a parameter with an empty name attribute is reported.
&lt;p&gt;
Value is one of &lt;code&gt;IMarker.SEVERITY_ERROR, IMarker.SEVERITY_WARNING, IMarker.SEVERITY_INFO&lt;/code&gt;
&lt;/p&gt;</td>
@@ -2476,19 +5299,19 @@ extends java.lang.Object</pre>Preference constants specific to the XSL validator
&lt;/p&gt;</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>NAME_ATTRIBUTE_EMPTY</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>TEMPLATE_CONFLICT</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- The level at which a parameter with an empty name attribute is reported.
+ The level at which a template conflict is reported.
&lt;p&gt;
Value is one of &lt;code&gt;IMarker.SEVERITY_ERROR, IMarker.SEVERITY_WARNING, IMarker.SEVERITY_INFO&lt;/code&gt;
&lt;/p&gt;</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>DUPLICATE_PARAMETER</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>XPATHS</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- The level at which a duplicate parameter is reported.
+ The level at which an invalid XPath is reported.
&lt;p&gt;
Value is one of &lt;code&gt;IMarker.SEVERITY_ERROR, IMarker.SEVERITY_WARNING, IMarker.SEVERITY_INFO&lt;/code&gt;
&lt;/p&gt;</td>
@@ -2502,7 +5325,7 @@ extends java.lang.Object</pre>Preference constants specific to the XSL validator
</td>
</tr>
<tr>
-<td><code><strong>ValidationPreferences()</strong></code></td>
+<td><code><strong>ValidationPreferences</strong>()</code></td>
</tr>
</table>
<br>
@@ -2514,6 +5337,173 @@ extends java.lang.Object</pre>Preference constants specific to the XSL validator
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>CALL_TEMPLATES</h2>
+<p>
+<code>public static java.lang.String <strong>CALL_TEMPLATES</strong></code>
+</p>
+<table>
+<tr>
+<td>The level at which an unresolved called template is reported.
+ <p>
+ Value is one of <code>IMarker.SEVERITY_ERROR, IMarker.SEVERITY_WARNING, IMarker.SEVERITY_INFO</code>
+ </p></td>
+</tr>
+</table>
+<hr>
+<h2>CIRCULAR_REF</h2>
+<p>
+<code>public static java.lang.String <strong>CIRCULAR_REF</strong></code>
+</p>
+<table>
+<tr>
+<td>The level at which an include/import circular references is reported.
+ <p>
+ Value is one of <code>IMarker.SEVERITY_ERROR, IMarker.SEVERITY_WARNING, IMarker.SEVERITY_INFO</code>
+ </p></td>
+</tr>
+</table>
+<hr>
+<h2>DUPLICATE_PARAMETER</h2>
+<p>
+<code>public static java.lang.String <strong>DUPLICATE_PARAMETER</strong></code>
+</p>
+<table>
+<tr>
+<td>The level at which a duplicate parameter is reported.
+ <p>
+ Value is one of <code>IMarker.SEVERITY_ERROR, IMarker.SEVERITY_WARNING, IMarker.SEVERITY_INFO</code>
+ </p></td>
+</tr>
+</table>
+<hr>
+<h2>EMPTY_PARAM</h2>
+<p>
+<code>public static java.lang.String <strong>EMPTY_PARAM</strong></code>
+</p>
+<table>
+<tr>
+<td>The level at which a parameter that does not have a default value and does not specify a value is reported.
+ <p>
+ Value is one of <code>IMarker.SEVERITY_ERROR, IMarker.SEVERITY_WARNING, IMarker.SEVERITY_INFO</code>
+ </p></td>
+</tr>
+</table>
+<hr>
+<h2>MAX_ERRORS</h2>
+<p>
+<code>public static java.lang.String <strong>MAX_ERRORS</strong></code>
+</p>
+<table>
+<tr>
+<td>The maximum number of errors allowed per XSL file.
+ <p>
+ Value is of type <code>Integer</code>.
+ </p></td>
+</tr>
+</table>
+<hr>
+<h2>MISSING_INCLUDE</h2>
+<p>
+<code>public static java.lang.String <strong>MISSING_INCLUDE</strong></code>
+</p>
+<table>
+<tr>
+<td>The level at which an unresolved import or included is reported.
+ <p>
+ Value is one of <code>IMarker.SEVERITY_ERROR, IMarker.SEVERITY_WARNING, IMarker.SEVERITY_INFO</code>
+ </p></td>
+</tr>
+</table>
+<hr>
+<h2>MISSING_PARAM</h2>
+<p>
+<code>public static java.lang.String <strong>MISSING_PARAM</strong></code>
+</p>
+<table>
+<tr>
+<td>The level at which a missing parameter is reported.
+ <p>
+ Value is one of <code>IMarker.SEVERITY_ERROR, IMarker.SEVERITY_WARNING, IMarker.SEVERITY_INFO</code>
+ </p></td>
+</tr>
+</table>
+<hr>
+<h2>NAME_ATTRIBUTE_EMPTY</h2>
+<p>
+<code>public static java.lang.String <strong>NAME_ATTRIBUTE_EMPTY</strong></code>
+</p>
+<table>
+<tr>
+<td>The level at which a parameter with an empty name attribute is reported.
+ <p>
+ Value is one of <code>IMarker.SEVERITY_ERROR, IMarker.SEVERITY_WARNING, IMarker.SEVERITY_INFO</code>
+ </p></td>
+</tr>
+</table>
+<hr>
+<h2>NAME_ATTRIBUTE_MISSING</h2>
+<p>
+<code>public static java.lang.String <strong>NAME_ATTRIBUTE_MISSING</strong></code>
+</p>
+<table>
+<tr>
+<td>The level at which a parameter without a name attribute is reported.
+ <p>
+ Value is one of <code>IMarker.SEVERITY_ERROR, IMarker.SEVERITY_WARNING, IMarker.SEVERITY_INFO</code>
+ </p></td>
+</tr>
+</table>
+<hr>
+<h2>TEMPLATE_CONFLICT</h2>
+<p>
+<code>public static java.lang.String <strong>TEMPLATE_CONFLICT</strong></code>
+</p>
+<table>
+<tr>
+<td>The level at which a template conflict is reported.
+ <p>
+ Value is one of <code>IMarker.SEVERITY_ERROR, IMarker.SEVERITY_WARNING, IMarker.SEVERITY_INFO</code>
+ </p></td>
+</tr>
+</table>
+<hr>
+<h2>XPATHS</h2>
+<p>
+<code>public static java.lang.String <strong>XPATHS</strong></code>
+</p>
+<table>
+<tr>
+<td>The level at which an invalid XPath is reported.
+ <p>
+ Value is one of <code>IMarker.SEVERITY_ERROR, IMarker.SEVERITY_WARNING, IMarker.SEVERITY_INFO</code>
+ </p></td>
+</tr>
+</table>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>ValidationPreferences</h2>
+<p>
+<code>public <strong>ValidationPreferences</strong>()</code>
+</p>
+<p></p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.core</strong></font>
</p>
@@ -2537,16 +5527,16 @@ extends java.lang.Object</pre>The interface to all aspects of the XSL core funct
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>XSL_NAMESPACE_URI</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>XSL_CONTENT_TYPE</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- The XSL namespace URI (= http://www.w3.org/1999/XSL/Transform)</td>
+ The XSL content type (= org.eclipse.wst.xml.core.xslsource)</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>XSL_CONTENT_TYPE</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>XSL_NAMESPACE_URI</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- The XSL content type (= org.eclipse.wst.xml.core.xslsource)</td>
+ The XSL namespace URI (= http://www.w3.org/1999/XSL/Transform)</td>
</tr>
</table>
<br>
@@ -2557,12 +5547,6 @@ extends java.lang.Object</pre>The interface to all aspects of the XSL core funct
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public org.eclipse.wst.xsl.core.internal.model.StylesheetModel</code></td><td width="" align="left"><code>getStylesheet(IFile file)</code>
-<br>
- &nbsp;&nbsp;&nbsp;&nbsp;
- Get the cached stylesheet, or build it if it has not yet been built.</td>
-</tr>
-<tr valign="top">
<td width="20%" align="right"><code>public org.eclipse.wst.xsl.core.internal.model.StylesheetModel</code></td><td width="" align="left"><code>buildStylesheet(IFile file)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
@@ -2583,12 +5567,10 @@ extends java.lang.Object</pre>The interface to all aspects of the XSL core funct
Get the singleton <code>XSLCore</code> instance.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static IFile</code></td><td width="" align="left"><code>resolveFile(IFile currentFile
- ,
- java.lang.String uri)</code>
+<td width="20%" align="right"><code>public org.eclipse.wst.xsl.core.internal.model.StylesheetModel</code></td><td width="" align="left"><code>getStylesheet(IFile file)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Locates a file for the given current file and URI.</td>
+ Get the cached stylesheet, or build it if it has not yet been built.</td>
</tr>
<tr valign="top">
<td width="20%" align="right"><code>public static boolean</code></td><td width="" align="left"><code>isXMLFile(IFile file)</code>
@@ -2608,8 +5590,156 @@ extends java.lang.Object</pre>The interface to all aspects of the XSL core funct
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
+<tr valign="top">
+<td width="20%" align="right"><code>public static IFile</code></td><td width="" align="left"><code>resolveFile(IFile currentFile
+ ,
+ java.lang.String uri)</code>
+<br>
+ &nbsp;&nbsp;&nbsp;&nbsp;
+ Locates a file for the given current file and URI.</td>
+</tr>
+</table>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>XSL_CONTENT_TYPE</h2>
+<p>
+<code>public static java.lang.String <strong>XSL_CONTENT_TYPE</strong></code>
+</p>
+<table>
+<tr>
+<td>The XSL content type (= org.eclipse.wst.xml.core.xslsource)</td>
+</tr>
+</table>
+<hr>
+<h2>XSL_NAMESPACE_URI</h2>
+<p>
+<code>public static java.lang.String <strong>XSL_NAMESPACE_URI</strong></code>
+</p>
+<table>
+<tr>
+<td>The XSL namespace URI (= http://www.w3.org/1999/XSL/Transform)</td>
+</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>buildStylesheet</h2>
+<p>
+<code>public org.eclipse.wst.xsl.core.internal.model.StylesheetModel <strong>buildStylesheet</strong>(IFile file)</code>
+</p>
+<p>Completely rebuild the source file from its DOM</p>
+<h3>Parameters</h3>
+<p>
+<code>file</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.core.internal.model.StylesheetModel</code> - the stylesheet model, or null if it could not be created.</p>
+<hr>
+<h2>clean</h2>
+<p>
+<code>public void <strong>clean</strong>(IProject project
+ ,
+ IProgressMonitor monitor)</code>
+</p>
+<p>Clean all of the stylesheets from the given project.</p>
+<h3>Parameters</h3>
+<p>
+<code>project</code> - the project to be cleaned</p>
+<p>
+<code>monitor</code> - a progress monitor to track the clean progress</p>
+<hr>
+<h2>getInstance</h2>
+<p>
+<code>public org.eclipse.wst.xsl.core.XSLCore <strong>getInstance</strong>()</code>
+</p>
+<p>Get the singleton <code>XSLCore</code> instance.</p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.core.XSLCore</code> - the <code>XSLCore</code> instance</p>
+<hr>
+<h2>getStylesheet</h2>
+<p>
+<code>public org.eclipse.wst.xsl.core.internal.model.StylesheetModel <strong>getStylesheet</strong>(IFile file)</code>
+</p>
+<p>Get the cached stylesheet, or build it if it has not yet been built.</p>
+<h3>Parameters</h3>
+<p>
+<code>file</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.core.internal.model.StylesheetModel</code> - source file, or null if could not be built</p>
+<hr>
+<h2>isXMLFile</h2>
+<p>
+<code>public boolean <strong>isXMLFile</strong>(IFile file)</code>
+</p>
+<p>Determine whether the given file is an XML file by inspecting its content types.</p>
+<h3>Parameters</h3>
+<p>
+<code>file</code> - the file to inspect</p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code> - true if this file is an XML file</p>
+<hr>
+<h2>isXSLFile</h2>
+<p>
+<code>public boolean <strong>isXSLFile</strong>(IFile file)</code>
+</p>
+<p>Determine whether the given file is an XSL file by inspecting its content types.</p>
+<h3>Parameters</h3>
+<p>
+<code>file</code> - the file to inspect</p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code> - true if this file is an XSL file</p>
+<hr>
+<h2>isXSLNamespace</h2>
+<p>
+<code>public boolean <strong>isXSLNamespace</strong>(IDOMNode node)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>node</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<hr>
+<h2>resolveFile</h2>
+<p>
+<code>public IFile <strong>resolveFile</strong>(IFile currentFile
+ ,
+ java.lang.String uri)</code>
+</p>
+<p>Locates a file for the given current file and URI.</p>
+<h3>Parameters</h3>
+<p>
+<code>currentFile</code> - the file to resolve relative to</p>
+<p>
+<code>uri</code> - the relative URI</p>
+<h3>Returns</h3>
+<p>
+<code>IFile</code> - the file at the URI relative to this <code>currentFile</code></p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.core.internal</strong></font>
</p>
@@ -2631,19 +5761,19 @@ extends NLS</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>XSLCorePlugin_parserConfiguration</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>XSLCorePlugin_badInitializationData</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
TODO: Add JavaDoc</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>XSLCorePlugin_badInitializationData</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>XSLCorePlugin_coreError</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
TODO: Add JavaDoc</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>XSLCorePlugin_coreError</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>XSLCorePlugin_parserConfiguration</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
TODO: Add JavaDoc</td>
@@ -2657,7 +5787,7 @@ extends NLS</pre>
</td>
</tr>
<tr>
-<td><code><strong>Messages()</strong></code></td>
+<td><code><strong>Messages</strong>()</code></td>
</tr>
</table>
<br>
@@ -2675,6 +5805,75 @@ extends NLS</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>XSLCorePlugin_badInitializationData</h2>
+<p>
+<code>public static java.lang.String <strong>XSLCorePlugin_badInitializationData</strong></code>
+</p>
+<table>
+<tr>
+<td>TODO: Add JavaDoc</td>
+</tr>
+</table>
+<hr>
+<h2>XSLCorePlugin_coreError</h2>
+<p>
+<code>public static java.lang.String <strong>XSLCorePlugin_coreError</strong></code>
+</p>
+<table>
+<tr>
+<td>TODO: Add JavaDoc</td>
+</tr>
+</table>
+<hr>
+<h2>XSLCorePlugin_parserConfiguration</h2>
+<p>
+<code>public static java.lang.String <strong>XSLCorePlugin_parserConfiguration</strong></code>
+</p>
+<table>
+<tr>
+<td>TODO: Add JavaDoc</td>
+</tr>
+</table>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>Messages</h2>
+<p>
+<code>public <strong>Messages</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>reloadMessages</h2>
+<p>
+<code>public void <strong>reloadMessages</strong>()</code>
+</p>
+<p>TODO: Add JavaDoc</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.core.internal</strong></font>
</p>
@@ -2708,7 +5907,7 @@ extends Plugin</pre>The activator class controls the plug-in life cycle<hr>
</td>
</tr>
<tr>
-<td><code><strong>XSLCorePlugin()</strong></code></td>
+<td><code><strong>XSLCorePlugin</strong>()</code></td>
</tr>
</table>
<br>
@@ -2719,18 +5918,6 @@ extends Plugin</pre>The activator class controls the plug-in life cycle<hr>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>start(BundleContext context)</code>
-<br>
- &nbsp;&nbsp;&nbsp;&nbsp;
- </td>
-</tr>
-<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>stop(BundleContext context)</code>
-<br>
- &nbsp;&nbsp;&nbsp;&nbsp;
- </td>
-</tr>
-<tr valign="top">
<td width="20%" align="right"><code>public static org.eclipse.wst.xsl.core.internal.XSLCorePlugin</code></td><td width="" align="left"><code>getDefault()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
@@ -2757,7 +5944,134 @@ extends Plugin</pre>The activator class controls the plug-in life cycle<hr>
&nbsp;&nbsp;&nbsp;&nbsp;
Returns a new error status for this plug-in with the given message</td>
</tr>
+<tr valign="top">
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>start(BundleContext context)</code>
+<br>
+ &nbsp;&nbsp;&nbsp;&nbsp;
+ </td>
+</tr>
+<tr valign="top">
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>stop(BundleContext context)</code>
+<br>
+ &nbsp;&nbsp;&nbsp;&nbsp;
+ </td>
+</tr>
+</table>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>PLUGIN_ID</h2>
+<p>
+<code>public static java.lang.String <strong>PLUGIN_ID</strong></code>
+</p>
+<table>
+<tr>
+<td>TODO: Add JavaDoc</td>
+</tr>
+</table>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
</table>
+<h2>XSLCorePlugin</h2>
+<p>
+<code>public <strong>XSLCorePlugin</strong>()</code>
+</p>
+<p>The constructor</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getDefault</h2>
+<p>
+<code>public org.eclipse.wst.xsl.core.internal.XSLCorePlugin <strong>getDefault</strong>()</code>
+</p>
+<p>Returns the shared instance</p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.core.internal.XSLCorePlugin</code> - the shared instance</p>
+<hr>
+<h2>getFactory</h2>
+<p>
+<code>public javax.xml.parsers.SAXParserFactory <strong>getFactory</strong>()</code>
+</p>
+<p>Return the registered SAX parser factory or null if one
+ does not exist. * @return</p>
+<h3>Returns</h3>
+<p>
+<code>javax.xml.parsers.SAXParserFactory</code> - returns a SAXParserFactory</p>
+<hr>
+<h2>log</h2>
+<p>
+<code>public void <strong>log</strong>(IStatus status)</code>
+</p>
+<p>Logs the specified status with this plug-in's log.</p>
+<h3>Parameters</h3>
+<p>
+<code>status</code> - status to log</p>
+<hr>
+<h2>newErrorStatus</h2>
+<p>
+<code>public IStatus <strong>newErrorStatus</strong>(java.lang.String message
+ ,
+ java.lang.Throwable exception)</code>
+</p>
+<p>Returns a new error status for this plug-in with the given message</p>
+<h3>Parameters</h3>
+<p>
+<code>message</code> - the message to be included in the status</p>
+<p>
+<code>exception</code> - the exception to be included in the status or <code>null</code> if none</p>
+<h3>Returns</h3>
+<p>
+<code>IStatus</code> - a new error status</p>
+<hr>
+<h2>start</h2>
+<p>
+<code>public void <strong>start</strong>(BundleContext context)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>context</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>java.lang.Exception</code>
+</p>
+<hr>
+<h2>stop</h2>
+<p>
+<code>public void <strong>stop</strong>(BundleContext context)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>context</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>java.lang.Exception</code>
+</p>
<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.core.internal.ant</strong></font>
@@ -2841,6 +6155,115 @@ extends NLS</pre>The XInclude message properties for string externalization<p></
</table>
<br>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>XIncludeTask_0</h2>
+<p>
+<code>public static java.lang.String <strong>XIncludeTask_0</strong></code>
+</p>
+<table>
+<tr>
+<td>TODO: Add JavaDoc</td>
+</tr>
+</table>
+<hr>
+<h2>XIncludeTask_1</h2>
+<p>
+<code>public static java.lang.String <strong>XIncludeTask_1</strong></code>
+</p>
+<table>
+<tr>
+<td>TODO: Add JavaDoc</td>
+</tr>
+</table>
+<hr>
+<h2>XIncludeTask_2</h2>
+<p>
+<code>public static java.lang.String <strong>XIncludeTask_2</strong></code>
+</p>
+<table>
+<tr>
+<td>TODO: Add JavaDoc</td>
+</tr>
+</table>
+<hr>
+<h2>XIncludeTask_3</h2>
+<p>
+<code>public static java.lang.String <strong>XIncludeTask_3</strong></code>
+</p>
+<table>
+<tr>
+<td>TODO: Add JavaDoc</td>
+</tr>
+</table>
+<hr>
+<h2>XIncludeTask_4</h2>
+<p>
+<code>public static java.lang.String <strong>XIncludeTask_4</strong></code>
+</p>
+<table>
+<tr>
+<td>TODO: Add JavaDoc</td>
+</tr>
+</table>
+<hr>
+<h2>XIncludeTask_5</h2>
+<p>
+<code>public static java.lang.String <strong>XIncludeTask_5</strong></code>
+</p>
+<table>
+<tr>
+<td>TODO: Add JavaDoc</td>
+</tr>
+</table>
+<hr>
+<h2>XIncludeTask_6</h2>
+<p>
+<code>public static java.lang.String <strong>XIncludeTask_6</strong></code>
+</p>
+<table>
+<tr>
+<td>TODO: Add JavaDoc</td>
+</tr>
+</table>
+<hr>
+<h2>XIncludeTask_7</h2>
+<p>
+<code>public static java.lang.String <strong>XIncludeTask_7</strong></code>
+</p>
+<table>
+<tr>
+<td>TODO: Add JavaDoc</td>
+</tr>
+</table>
+<hr>
+<h2>XIncludeTask_8</h2>
+<p>
+<code>public static java.lang.String <strong>XIncludeTask_8</strong></code>
+</p>
+<table>
+<tr>
+<td>TODO: Add JavaDoc</td>
+</tr>
+</table>
+<hr>
+<h2>XIncludeTask_9</h2>
+<p>
+<code>public static java.lang.String <strong>XIncludeTask_9</strong></code>
+</p>
+<table>
+<tr>
+<td>TODO: Add JavaDoc</td>
+</tr>
+</table>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.core.internal.ant</strong></font>
</p>
@@ -2861,7 +6284,7 @@ extends org.apache.tools.ant.Task</pre>TODO: Add Java Doc<p></p>
</td>
</tr>
<tr>
-<td><code><strong>XIncludeTask()</strong></code></td>
+<td><code><strong>XIncludeTask</strong>()</code></td>
</tr>
</table>
<br>
@@ -2872,33 +6295,102 @@ extends org.apache.tools.ant.Task</pre>TODO: Add Java Doc<p></p>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setIn(java.lang.String inFile)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>execute()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- TODO: Add JavaDoc</td>
+ </td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setOut(java.lang.String outFile)</code>
+<td width="20%" align="right"><code>public java.util.Collection</code></td><td width="" align="left"><code>listFiles(java.io.File directory
+ ,
+ boolean recurse)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
TODO: Add JavaDoc</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>execute()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setIn(java.lang.String inFile)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- </td>
+ TODO: Add JavaDoc</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.util.Collection</code></td><td width="" align="left"><code>listFiles(java.io.File directory
- ,
- boolean recurse)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setOut(java.lang.String outFile)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
TODO: Add JavaDoc</td>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>XIncludeTask</h2>
+<p>
+<code>public <strong>XIncludeTask</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>execute</h2>
+<p>
+<code>public void <strong>execute</strong>()</code>
+</p>
+<p></p>
+<hr>
+<h2>listFiles</h2>
+<p>
+<code>public java.util.Collection <strong>listFiles</strong>(java.io.File directory
+ ,
+ boolean recurse)</code>
+</p>
+<p>TODO: Add JavaDoc</p>
+<h3>Parameters</h3>
+<p>
+<code>directory</code>
+</p>
+<p>
+<code>recurse</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>java.util.Collection</code>
+</p>
+<hr>
+<h2>setIn</h2>
+<p>
+<code>public void <strong>setIn</strong>(java.lang.String inFile)</code>
+</p>
+<p>TODO: Add JavaDoc</p>
+<h3>Parameters</h3>
+<p>
+<code>inFile</code>
+</p>
+<hr>
+<h2>setOut</h2>
+<p>
+<code>public void <strong>setOut</strong>(java.lang.String outFile)</code>
+</p>
+<p>TODO: Add JavaDoc</p>
+<h3>Parameters</h3>
+<p>
+<code>outFile</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.core.internal.model</strong></font>
</p>
@@ -2933,7 +6425,7 @@ extends org.eclipse.wst.xsl.core.internal.model.XSLElement</pre>The <code>xsl:ca
</td>
</tr>
<tr>
-<td><code><strong>CallTemplate(org.eclipse.wst.xsl.core.internal.model.Stylesheet stylesheet)</strong></code></td>
+<td><code><strong>CallTemplate</strong>(org.eclipse.wst.xsl.core.internal.model.Stylesheet stylesheet)</code></td>
</tr>
</table>
<br>
@@ -2963,6 +6455,71 @@ extends org.eclipse.wst.xsl.core.internal.model.XSLElement</pre>The <code>xsl:ca
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>parameters</h2>
+<p>
+<code>package-private java.util.List <strong>parameters</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>CallTemplate</h2>
+<p>
+<code>public <strong>CallTemplate</strong>(org.eclipse.wst.xsl.core.internal.model.Stylesheet stylesheet)</code>
+</p>
+<p>Create a new instance of this.</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>addParameter</h2>
+<p>
+<code>public void <strong>addParameter</strong>(org.eclipse.wst.xsl.core.internal.model.Parameter parameter)</code>
+</p>
+<p>Add a parameter to this.</p>
+<h3>Parameters</h3>
+<p>
+<code>parameter</code> - the parameter to add</p>
+<hr>
+<h2>getName</h2>
+<p>
+<code>public java.lang.String <strong>getName</strong>()</code>
+</p>
+<p>Get the value of the <code>name</code> attribute if one exists.</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code> - the template name, or null</p>
+<hr>
+<h2>getParameters</h2>
+<p>
+<code>public java.util.List <strong>getParameters</strong>()</code>
+</p>
+<p>Get the list of parameters associated with this.</p>
+<h3>Returns</h3>
+<p>
+<code>java.util.List</code> - a list of parameters</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.core.internal.model</strong></font>
</p>
@@ -2983,7 +6540,7 @@ extends org.eclipse.wst.xsl.core.internal.model.Include</pre>The <code>xsl:impor
</td>
</tr>
<tr>
-<td><code><strong>Import(org.eclipse.wst.xsl.core.internal.model.Stylesheet stylesheet)</strong></code></td>
+<td><code><strong>Import</strong>(org.eclipse.wst.xsl.core.internal.model.Stylesheet stylesheet)</code></td>
</tr>
</table>
<br>
@@ -2995,6 +6552,21 @@ extends org.eclipse.wst.xsl.core.internal.model.Include</pre>The <code>xsl:impor
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>Import</h2>
+<p>
+<code>public <strong>Import</strong>(org.eclipse.wst.xsl.core.internal.model.Stylesheet stylesheet)</code>
+</p>
+<p>Create a new instance of this.</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.core.internal.model</strong></font>
</p>
@@ -3015,16 +6587,16 @@ extends org.eclipse.wst.xsl.core.internal.model.XSLElement</pre>The <code>xsl:in
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>INCLUDE</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>IMPORT</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Constant indicating that this is an &lt;code&gt;Include&lt;/code&gt;.</td>
+ Constant indicating that this is an &lt;code&gt;Import&lt;/code&gt;.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>IMPORT</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>INCLUDE</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Constant indicating that this is an &lt;code&gt;Import&lt;/code&gt;.</td>
+ Constant indicating that this is an &lt;code&gt;Include&lt;/code&gt;.</td>
</tr>
</table>
<br>
@@ -3035,12 +6607,12 @@ extends org.eclipse.wst.xsl.core.internal.model.XSLElement</pre>The <code>xsl:in
</td>
</tr>
<tr>
-<td><code><strong>Include(org.eclipse.wst.xsl.core.internal.model.Stylesheet stylesheet)</strong></code></td>
+<td><code><strong>Include</strong>(org.eclipse.wst.xsl.core.internal.model.Stylesheet stylesheet)</code></td>
</tr>
<tr>
-<td><code><strong>Include(org.eclipse.wst.xsl.core.internal.model.Stylesheet stylesheet
+<td><code><strong>Include</strong>(org.eclipse.wst.xsl.core.internal.model.Stylesheet stylesheet
,
- int type)</strong></code></td>
+ int type)</code></td>
</tr>
</table>
<br>
@@ -3051,12 +6623,6 @@ extends org.eclipse.wst.xsl.core.internal.model.XSLElement</pre>The <code>xsl:in
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public int</code></td><td width="" align="left"><code>getIncludeType()</code>
-<br>
- &nbsp;&nbsp;&nbsp;&nbsp;
- Get the type of include, whether an <code>Include</code> or an <code>Import</code>.</td>
-</tr>
-<tr valign="top">
<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getHref()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
@@ -3068,7 +6634,101 @@ extends org.eclipse.wst.xsl.core.internal.model.XSLElement</pre>The <code>xsl:in
&nbsp;&nbsp;&nbsp;&nbsp;
Gets the included file as a source file, if possible (returned file may be null and need not exist).</td>
</tr>
+<tr valign="top">
+<td width="20%" align="right"><code>public int</code></td><td width="" align="left"><code>getIncludeType()</code>
+<br>
+ &nbsp;&nbsp;&nbsp;&nbsp;
+ Get the type of include, whether an <code>Include</code> or an <code>Import</code>.</td>
+</tr>
+</table>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>IMPORT</h2>
+<p>
+<code>public static int <strong>IMPORT</strong></code>
+</p>
+<table>
+<tr>
+<td>Constant indicating that this is an <code>Import</code>.</td>
+</tr>
+</table>
+<hr>
+<h2>INCLUDE</h2>
+<p>
+<code>public static int <strong>INCLUDE</strong></code>
+</p>
+<table>
+<tr>
+<td>Constant indicating that this is an <code>Include</code>.</td>
+</tr>
+</table>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>Include</h2>
+<p>
+<code>public <strong>Include</strong>(org.eclipse.wst.xsl.core.internal.model.Stylesheet stylesheet)</code>
+</p>
+<p>Create a new instance of this.</p>
+<hr>
+<h2>Include</h2>
+<p>
+<code>protected <strong>Include</strong>(org.eclipse.wst.xsl.core.internal.model.Stylesheet stylesheet
+ ,
+ int type)</code>
+</p>
+<p>Create a new instance of this, specifying whether an <code>Include</code> or an <code>Import</code>.</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
</table>
+<h2>getHref</h2>
+<p>
+<code>public java.lang.String <strong>getHref</strong>()</code>
+</p>
+<p>Get the value of the <code>href</code> attribute if one exists.</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code> - the <code>href</code> value, or null</p>
+<hr>
+<h2>getHrefAsFile</h2>
+<p>
+<code>public IFile <strong>getHrefAsFile</strong>()</code>
+</p>
+<p>Gets the included file as a source file, if possible (returned file may be null and need not exist).</p>
+<h3>Returns</h3>
+<p>
+<code>IFile</code> - the included file, or null</p>
+<hr>
+<h2>getIncludeType</h2>
+<p>
+<code>public int <strong>getIncludeType</strong>()</code>
+</p>
+<p>Get the type of include, whether an <code>Include</code> or an <code>Import</code>.</p>
+<h3>Returns</h3>
+<p>
+<code>int</code> - one of the constants <code>INCLUDE</code> or <code>IMPORT</code></p>
<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.core.internal.model</strong></font>
@@ -3090,7 +6750,7 @@ extends org.eclipse.wst.xsl.core.internal.model.Variable</pre>The <code>xsl:para
</td>
</tr>
<tr>
-<td><code><strong>Parameter(org.eclipse.wst.xsl.core.internal.model.Stylesheet stylesheet)</strong></code></td>
+<td><code><strong>Parameter</strong>(org.eclipse.wst.xsl.core.internal.model.Stylesheet stylesheet)</code></td>
</tr>
</table>
<br>
@@ -3101,19 +6761,61 @@ extends org.eclipse.wst.xsl.core.internal.model.Variable</pre>The <code>xsl:para
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setValue(boolean valueSet)</code>
+<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>isValue()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Set whether this has a value.</td>
+ Get whether this has a value.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>isValue()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setValue(boolean valueSet)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Get whether this has a value.</td>
+ Set whether this has a value.</td>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>Parameter</h2>
+<p>
+<code>public <strong>Parameter</strong>(org.eclipse.wst.xsl.core.internal.model.Stylesheet stylesheet)</code>
+</p>
+<p>Create a new instance of this.</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>isValue</h2>
+<p>
+<code>public boolean <strong>isValue</strong>()</code>
+</p>
+<p>Get whether this has a value.</p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code> - <code>true</code> if this has a value</p>
+<hr>
+<h2>setValue</h2>
+<p>
+<code>public void <strong>setValue</strong>(boolean valueSet)</code>
+</p>
+<p>Set whether this has a value.</p>
+<h3>Parameters</h3>
+<p>
+<code>valueSet</code> - <code>true</code> if this has a value</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.core.internal.model</strong></font>
</p>
@@ -3134,43 +6836,43 @@ extends org.eclipse.wst.xsl.core.internal.model.XSLElement</pre>The <code>xsl:st
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>package-private IFile</code></td><td width="80%" align="left"><code>file</code>
+<td width="20%" align="right"><code>package-private java.util.List</code></td><td width="80%" align="left"><code>calledTemplates</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>package-private java.util.List</code></td><td width="80%" align="left"><code>includes</code>
+<td width="20%" align="right"><code>package-private java.util.List</code></td><td width="80%" align="left"><code>elements</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>package-private java.util.List</code></td><td width="80%" align="left"><code>imports</code>
+<td width="20%" align="right"><code>package-private IFile</code></td><td width="80%" align="left"><code>file</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>package-private java.util.List</code></td><td width="80%" align="left"><code>templates</code>
+<td width="20%" align="right"><code>package-private java.util.List</code></td><td width="80%" align="left"><code>globalVariables</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>package-private java.util.List</code></td><td width="80%" align="left"><code>calledTemplates</code>
+<td width="20%" align="right"><code>package-private java.util.List</code></td><td width="80%" align="left"><code>imports</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>package-private java.util.List</code></td><td width="80%" align="left"><code>globalVariables</code>
+<td width="20%" align="right"><code>package-private java.util.List</code></td><td width="80%" align="left"><code>includes</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>package-private java.util.List</code></td><td width="80%" align="left"><code>elements</code>
+<td width="20%" align="right"><code>package-private java.util.List</code></td><td width="80%" align="left"><code>templates</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@@ -3184,7 +6886,7 @@ extends org.eclipse.wst.xsl.core.internal.model.XSLElement</pre>The <code>xsl:st
</td>
</tr>
<tr>
-<td><code><strong>Stylesheet(IFile file)</strong></code></td>
+<td><code><strong>Stylesheet</strong>(IFile file)</code></td>
</tr>
</table>
<br>
@@ -3195,16 +6897,16 @@ extends org.eclipse.wst.xsl.core.internal.model.XSLElement</pre>The <code>xsl:st
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public org.eclipse.wst.xsl.core.internal.model.Stylesheet</code></td><td width="" align="left"><code>getStylesheet()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>addCalledTemplate(org.eclipse.wst.xsl.core.internal.model.CallTemplate template)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- </td>
+ Add a <code>CallTemplate</code> to this.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>addInclude(org.eclipse.wst.xsl.core.internal.model.Include include)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>addGlobalVariable(org.eclipse.wst.xsl.core.internal.model.Variable var)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Add an <code>Include</code> to this.</td>
+ Add a global variable to this.</td>
</tr>
<tr valign="top">
<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>addImport(org.eclipse.wst.xsl.core.internal.model.Import include)</code>
@@ -3213,28 +6915,28 @@ extends org.eclipse.wst.xsl.core.internal.model.XSLElement</pre>The <code>xsl:st
Add an <code>Import</code> to this.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>addTemplate(org.eclipse.wst.xsl.core.internal.model.Template template)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>addInclude(org.eclipse.wst.xsl.core.internal.model.Include include)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Add a <code>Template</code> to this.</td>
+ Add an <code>Include</code> to this.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>addCalledTemplate(org.eclipse.wst.xsl.core.internal.model.CallTemplate template)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>addTemplate(org.eclipse.wst.xsl.core.internal.model.Template template)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Add a <code>CallTemplate</code> to this.</td>
+ Add a <code>Template</code> to this.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public IFile</code></td><td width="" align="left"><code>getFile()</code>
+<td width="20%" align="right"><code>public java.util.List</code></td><td width="" align="left"><code>getCalledTemplates()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Get the file that this represents.</td>
+ Get the list of called templates for this.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.util.List</code></td><td width="" align="left"><code>getIncludes()</code>
+<td width="20%" align="right"><code>public IFile</code></td><td width="" align="left"><code>getFile()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Get the list of includes for this.</td>
+ Get the file that this represents.</td>
</tr>
<tr valign="top">
<td width="20%" align="right"><code>public java.util.List</code></td><td width="" align="left"><code>getImports()</code>
@@ -3243,25 +6945,193 @@ extends org.eclipse.wst.xsl.core.internal.model.XSLElement</pre>The <code>xsl:st
Get the list of imports for this.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.util.List</code></td><td width="" align="left"><code>getTemplates()</code>
+<td width="20%" align="right"><code>public java.util.List</code></td><td width="" align="left"><code>getIncludes()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Get the list of templates for this.</td>
+ Get the list of includes for this.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.util.List</code></td><td width="" align="left"><code>getCalledTemplates()</code>
+<td width="20%" align="right"><code>public org.eclipse.wst.xsl.core.internal.model.Stylesheet</code></td><td width="" align="left"><code>getStylesheet()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Get the list of called templates for this.</td>
+ </td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>addGlobalVariable(org.eclipse.wst.xsl.core.internal.model.Variable var)</code>
+<td width="20%" align="right"><code>public java.util.List</code></td><td width="" align="left"><code>getTemplates()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Add a global variable to this.</td>
+ Get the list of templates for this.</td>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>calledTemplates</h2>
+<p>
+<code>package-private java.util.List <strong>calledTemplates</strong></code>
+</p>
+<hr>
+<h2>elements</h2>
+<p>
+<code>package-private java.util.List <strong>elements</strong></code>
+</p>
+<hr>
+<h2>file</h2>
+<p>
+<code>package-private IFile <strong>file</strong></code>
+</p>
+<hr>
+<h2>globalVariables</h2>
+<p>
+<code>package-private java.util.List <strong>globalVariables</strong></code>
+</p>
+<hr>
+<h2>imports</h2>
+<p>
+<code>package-private java.util.List <strong>imports</strong></code>
+</p>
+<hr>
+<h2>includes</h2>
+<p>
+<code>package-private java.util.List <strong>includes</strong></code>
+</p>
+<hr>
+<h2>templates</h2>
+<p>
+<code>package-private java.util.List <strong>templates</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>Stylesheet</h2>
+<p>
+<code>public <strong>Stylesheet</strong>(IFile file)</code>
+</p>
+<p>Create an instance of this.</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>addCalledTemplate</h2>
+<p>
+<code>public void <strong>addCalledTemplate</strong>(org.eclipse.wst.xsl.core.internal.model.CallTemplate template)</code>
+</p>
+<p>Add a <code>CallTemplate</code> to this.</p>
+<h3>Parameters</h3>
+<p>
+<code>template</code> - the template to add</p>
+<hr>
+<h2>addGlobalVariable</h2>
+<p>
+<code>public void <strong>addGlobalVariable</strong>(org.eclipse.wst.xsl.core.internal.model.Variable var)</code>
+</p>
+<p>Add a global variable to this.</p>
+<h3>Parameters</h3>
+<p>
+<code>var</code> - the variable to add</p>
+<hr>
+<h2>addImport</h2>
+<p>
+<code>public void <strong>addImport</strong>(org.eclipse.wst.xsl.core.internal.model.Import include)</code>
+</p>
+<p>Add an <code>Import</code> to this.</p>
+<h3>Parameters</h3>
+<p>
+<code>include</code> - the import to add</p>
+<hr>
+<h2>addInclude</h2>
+<p>
+<code>public void <strong>addInclude</strong>(org.eclipse.wst.xsl.core.internal.model.Include include)</code>
+</p>
+<p>Add an <code>Include</code> to this.</p>
+<h3>Parameters</h3>
+<p>
+<code>include</code> - the include to add</p>
+<hr>
+<h2>addTemplate</h2>
+<p>
+<code>public void <strong>addTemplate</strong>(org.eclipse.wst.xsl.core.internal.model.Template template)</code>
+</p>
+<p>Add a <code>Template</code> to this.</p>
+<h3>Parameters</h3>
+<p>
+<code>template</code> - the template to add</p>
+<hr>
+<h2>getCalledTemplates</h2>
+<p>
+<code>public java.util.List <strong>getCalledTemplates</strong>()</code>
+</p>
+<p>Get the list of called templates for this.</p>
+<h3>Returns</h3>
+<p>
+<code>java.util.List</code> - the list of called templates</p>
+<hr>
+<h2>getFile</h2>
+<p>
+<code>public IFile <strong>getFile</strong>()</code>
+</p>
+<p>Get the file that this represents.</p>
+<h3>Returns</h3>
+<p>
+<code>IFile</code> - the file that this represents</p>
+<hr>
+<h2>getImports</h2>
+<p>
+<code>public java.util.List <strong>getImports</strong>()</code>
+</p>
+<p>Get the list of imports for this.</p>
+<h3>Returns</h3>
+<p>
+<code>java.util.List</code> - the list of imports</p>
+<hr>
+<h2>getIncludes</h2>
+<p>
+<code>public java.util.List <strong>getIncludes</strong>()</code>
+</p>
+<p>Get the list of includes for this.</p>
+<h3>Returns</h3>
+<p>
+<code>java.util.List</code> - the list of includes</p>
+<hr>
+<h2>getStylesheet</h2>
+<p>
+<code>public org.eclipse.wst.xsl.core.internal.model.Stylesheet <strong>getStylesheet</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.core.internal.model.Stylesheet</code>
+</p>
+<hr>
+<h2>getTemplates</h2>
+<p>
+<code>public java.util.List <strong>getTemplates</strong>()</code>
+</p>
+<p>Get the list of templates for this.</p>
+<h3>Returns</h3>
+<p>
+<code>java.util.List</code> - the list of templates</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.core.internal.model</strong></font>
</p>
@@ -3282,6 +7152,12 @@ extends java.lang.Object</pre>A builder that creates and maintains a cache of <c
</td>
</tr>
<tr valign="top">
+<td width="20%" align="right"><code>public static org.eclipse.wst.xsl.core.internal.model.StylesheetBuilder</code></td><td width="" align="left"><code>getInstance()</code>
+<br>
+ &nbsp;&nbsp;&nbsp;&nbsp;
+ Get the singleton <code>StylesheetBuilder</code> instance.</td>
+</tr>
+<tr valign="top">
<td width="20%" align="right"><code>public org.eclipse.wst.xsl.core.internal.model.Stylesheet</code></td><td width="" align="left"><code>getStylesheet(IFile file
,
boolean force)</code>
@@ -3292,13 +7168,44 @@ extends java.lang.Object</pre>A builder that creates and maintains a cache of <c
<code>force</code> is specified then the <code>Stylesheet</code> is
built.</td>
</tr>
-<tr valign="top">
-<td width="20%" align="right"><code>public static org.eclipse.wst.xsl.core.internal.model.StylesheetBuilder</code></td><td width="" align="left"><code>getInstance()</code>
-<br>
- &nbsp;&nbsp;&nbsp;&nbsp;
- Get the singleton <code>StylesheetBuilder</code> instance.</td>
+</table>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
</tr>
</table>
+<h2>getInstance</h2>
+<p>
+<code>public org.eclipse.wst.xsl.core.internal.model.StylesheetBuilder <strong>getInstance</strong>()</code>
+</p>
+<p>Get the singleton <code>StylesheetBuilder</code> instance.</p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.core.internal.model.StylesheetBuilder</code> - the <code>StylesheetBuilder</code> instance</p>
+<hr>
+<h2>getStylesheet</h2>
+<p>
+<code>public org.eclipse.wst.xsl.core.internal.model.Stylesheet <strong>getStylesheet</strong>(IFile file
+ ,
+ boolean force)</code>
+</p>
+<p>Get the <code>Stylesheet</code> associated with the given file. If either
+ the <code>Stylesheet</code> has not yet been created or
+ <code>force</code> is specified then the <code>Stylesheet</code> is
+ built.</p>
+<h3>Parameters</h3>
+<p>
+<code>file</code> - the XSL file</p>
+<p>
+<code>force</code> - <code>true</code> to force a parse of the file</p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.core.internal.model.Stylesheet</code> - the <code>Stylesheet</code></p>
<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.core.internal.model</strong></font>
@@ -3344,13 +7251,13 @@ extends java.lang.Object</pre>The composed stylesheet, consisting of all templat
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>package-private java.util.Set</code></td><td width="80%" align="left"><code>stylesheets</code>
+<td width="20%" align="right"><code>package-private java.util.List</code></td><td width="80%" align="left"><code>globalVariables</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>package-private java.util.Set</code></td><td width="80%" align="left"><code>templateSet</code>
+<td width="20%" align="right"><code>package-private java.util.Set</code></td><td width="80%" align="left"><code>stylesheets</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@@ -3362,7 +7269,7 @@ extends java.lang.Object</pre>The composed stylesheet, consisting of all templat
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>package-private java.util.List</code></td><td width="80%" align="left"><code>globalVariables</code>
+<td width="20%" align="right"><code>package-private java.util.Set</code></td><td width="80%" align="left"><code>templateSet</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@@ -3376,7 +7283,7 @@ extends java.lang.Object</pre>The composed stylesheet, consisting of all templat
</td>
</tr>
<tr>
-<td><code><strong>StylesheetModel(org.eclipse.wst.xsl.core.internal.model.Stylesheet stylesheet)</strong></code></td>
+<td><code><strong>StylesheetModel</strong>(org.eclipse.wst.xsl.core.internal.model.Stylesheet stylesheet)</code></td>
</tr>
</table>
<br>
@@ -3387,24 +7294,26 @@ extends java.lang.Object</pre>The composed stylesheet, consisting of all templat
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.util.Set</code></td><td width="" align="left"><code>getIncludedStylesheets()</code>
+<td width="20%" align="right"><code>public java.util.List</code></td><td width="" align="left"><code>findMatching(org.eclipse.wst.xsl.core.internal.model.Template toMatch)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Get all stylesheets that are included in this stylesheet anywhere in the
- hierarchy via either import or include.</td>
+ Get all templates that match the given template (determined from
+ <code>Template.equals()</code>).</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.util.Set</code></td><td width="" align="left"><code>getFileDependencies()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>fix()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Get all files that are included in this stylesheet anywhere in the
- hierarchy via either import or include.</td>
+ Perform the process of traversing the hierarchy to determine all of the
+ properties of this. Note that this method may force other
+ <code>StylesheetModel</code>'s to be built during the process of fixing.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public org.eclipse.wst.xsl.core.internal.model.Stylesheet</code></td><td width="" align="left"><code>getStylesheet()</code>
+<td width="20%" align="right"><code>public java.util.Set</code></td><td width="" align="left"><code>getFileDependencies()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Get the stylesheet that this is the model for.</td>
+ Get all files that are included in this stylesheet anywhere in the
+ hierarchy via either import or include.</td>
</tr>
<tr valign="top">
<td width="20%" align="right"><code>public java.util.List</code></td><td width="" align="left"><code>getGlobalVariables()</code>
@@ -3414,6 +7323,19 @@ extends java.lang.Object</pre>The composed stylesheet, consisting of all templat
the hierarchy via either import or include.</td>
</tr>
<tr valign="top">
+<td width="20%" align="right"><code>public java.util.Set</code></td><td width="" align="left"><code>getIncludedStylesheets()</code>
+<br>
+ &nbsp;&nbsp;&nbsp;&nbsp;
+ Get all stylesheets that are included in this stylesheet anywhere in the
+ hierarchy via either import or include.</td>
+</tr>
+<tr valign="top">
+<td width="20%" align="right"><code>public org.eclipse.wst.xsl.core.internal.model.Stylesheet</code></td><td width="" align="left"><code>getStylesheet()</code>
+<br>
+ &nbsp;&nbsp;&nbsp;&nbsp;
+ Get the stylesheet that this is the model for.</td>
+</tr>
+<tr valign="top">
<td width="20%" align="right"><code>public java.util.List</code></td><td width="" align="left"><code>getTemplates()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
@@ -3428,28 +7350,169 @@ extends java.lang.Object</pre>The composed stylesheet, consisting of all templat
the hierarchy via either import or include which have the given name.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.util.List</code></td><td width="" align="left"><code>findMatching(org.eclipse.wst.xsl.core.internal.model.Template toMatch)</code>
-<br>
- &nbsp;&nbsp;&nbsp;&nbsp;
- Get all templates that match the given template (determined from
- <code>Template.equals()</code>).</td>
-</tr>
-<tr valign="top">
<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>hasCircularReference()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
Get whether this has a circular reference anywhere in its import/included
hierarchy.</td>
</tr>
-<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>fix()</code>
-<br>
- &nbsp;&nbsp;&nbsp;&nbsp;
- Perform the process of traversing the hierarchy to determine all of the
- properties of this. Note that this method may force other
- <code>StylesheetModel</code>'s to be built during the process of fixing.</td>
+</table>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>circularReference</h2>
+<p>
+<code>package-private boolean <strong>circularReference</strong></code>
+</p>
+<hr>
+<h2>files</h2>
+<p>
+<code>package-private java.util.Set <strong>files</strong></code>
+</p>
+<hr>
+<h2>globalVariables</h2>
+<p>
+<code>package-private java.util.List <strong>globalVariables</strong></code>
+</p>
+<hr>
+<h2>stylesheets</h2>
+<p>
+<code>package-private java.util.Set <strong>stylesheets</strong></code>
+</p>
+<hr>
+<h2>templates</h2>
+<p>
+<code>package-private java.util.List <strong>templates</strong></code>
+</p>
+<hr>
+<h2>templateSet</h2>
+<p>
+<code>package-private java.util.Set <strong>templateSet</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
</tr>
</table>
+<h2>StylesheetModel</h2>
+<p>
+<code>public <strong>StylesheetModel</strong>(org.eclipse.wst.xsl.core.internal.model.Stylesheet stylesheet)</code>
+</p>
+<p>Create a new instance of this.</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>findMatching</h2>
+<p>
+<code>public java.util.List <strong>findMatching</strong>(org.eclipse.wst.xsl.core.internal.model.Template toMatch)</code>
+</p>
+<p>Get all templates that match the given template (determined from
+ <code>Template.equals()</code>).</p>
+<h3>Parameters</h3>
+<p>
+<code>toMatch</code> - the template to match</p>
+<h3>Returns</h3>
+<p>
+<code>java.util.List</code> - the set of templates that match</p>
+<hr>
+<h2>fix</h2>
+<p>
+<code>public void <strong>fix</strong>()</code>
+</p>
+<p>Perform the process of traversing the hierarchy to determine all of the
+ properties of this. Note that this method may force other
+ <code>StylesheetModel</code>'s to be built during the process of fixing.</p>
+<hr>
+<h2>getFileDependencies</h2>
+<p>
+<code>public java.util.Set <strong>getFileDependencies</strong>()</code>
+</p>
+<p>Get all files that are included in this stylesheet anywhere in the
+ hierarchy via either import or include.</p>
+<h3>Returns</h3>
+<p>
+<code>java.util.Set</code> - the set of files in the entire hierarchy</p>
+<hr>
+<h2>getGlobalVariables</h2>
+<p>
+<code>public java.util.List <strong>getGlobalVariables</strong>()</code>
+</p>
+<p>Get all global variables that are included in this stylesheet anywhere in
+ the hierarchy via either import or include.</p>
+<h3>Returns</h3>
+<p>
+<code>java.util.List</code> - the set of files in the entire hierarchy</p>
+<hr>
+<h2>getIncludedStylesheets</h2>
+<p>
+<code>public java.util.Set <strong>getIncludedStylesheets</strong>()</code>
+</p>
+<p>Get all stylesheets that are included in this stylesheet anywhere in the
+ hierarchy via either import or include.</p>
+<h3>Returns</h3>
+<p>
+<code>java.util.Set</code> - the set of stylesheets in the entire hierarchy</p>
+<hr>
+<h2>getStylesheet</h2>
+<p>
+<code>public org.eclipse.wst.xsl.core.internal.model.Stylesheet <strong>getStylesheet</strong>()</code>
+</p>
+<p>Get the stylesheet that this is the model for.</p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.core.internal.model.Stylesheet</code> - the stylesheet that this is the model for</p>
+<hr>
+<h2>getTemplates</h2>
+<p>
+<code>public java.util.List <strong>getTemplates</strong>()</code>
+</p>
+<p>Get all templates that are included in this stylesheet anywhere in the
+ hierarchy via either import or include.</p>
+<h3>Returns</h3>
+<p>
+<code>java.util.List</code> - the set of templates in the entire hierarchy</p>
+<hr>
+<h2>getTemplatesByName</h2>
+<p>
+<code>public java.util.List <strong>getTemplatesByName</strong>(java.lang.String name)</code>
+</p>
+<p>Get all named templates that are included in this stylesheet anywhere in
+ the hierarchy via either import or include which have the given name.</p>
+<h3>Parameters</h3>
+<p>
+<code>name</code> - the template name</p>
+<h3>Returns</h3>
+<p>
+<code>java.util.List</code> - the set of named templates with the given name</p>
+<hr>
+<h2>hasCircularReference</h2>
+<p>
+<code>public boolean <strong>hasCircularReference</strong>()</code>
+</p>
+<p>Get whether this has a circular reference anywhere in its import/included
+ hierarchy.</p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code> - <code>true</code> if this has a circular reference</p>
<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.core.internal.model</strong></font>
@@ -3471,13 +7534,13 @@ extends org.eclipse.wst.xsl.core.internal.model.XSLElement</pre>The <code>xsl:te
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>package-private java.util.List</code></td><td width="80%" align="left"><code>variables</code>
+<td width="20%" align="right"><code>package-private java.util.List</code></td><td width="80%" align="left"><code>parameters</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>package-private java.util.List</code></td><td width="80%" align="left"><code>parameters</code>
+<td width="20%" align="right"><code>package-private java.util.List</code></td><td width="80%" align="left"><code>variables</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@@ -3491,7 +7554,7 @@ extends org.eclipse.wst.xsl.core.internal.model.XSLElement</pre>The <code>xsl:te
</td>
</tr>
<tr>
-<td><code><strong>Template(org.eclipse.wst.xsl.core.internal.model.Stylesheet stylesheet)</strong></code></td>
+<td><code><strong>Template</strong>(org.eclipse.wst.xsl.core.internal.model.Stylesheet stylesheet)</code></td>
</tr>
</table>
<br>
@@ -3514,10 +7577,10 @@ extends org.eclipse.wst.xsl.core.internal.model.XSLElement</pre>The <code>xsl:te
Add a variable to this.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getName()</code>
+<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>equals(java.lang.Object obj)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Get the value of the <code>name</code> attribute if one exists.</td>
+ </td>
</tr>
<tr valign="top">
<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getMatch()</code>
@@ -3532,10 +7595,10 @@ extends org.eclipse.wst.xsl.core.internal.model.XSLElement</pre>The <code>xsl:te
Get the value of the <code>mode</code> attribute if one exists.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getPriority()</code>
+<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getName()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Get the value of the <code>priority</code> attribute if one exists.</td>
+ Get the value of the <code>name</code> attribute if one exists.</td>
</tr>
<tr valign="top">
<td width="20%" align="right"><code>public java.util.List</code></td><td width="" align="left"><code>getParameters()</code>
@@ -3544,13 +7607,13 @@ extends org.eclipse.wst.xsl.core.internal.model.XSLElement</pre>The <code>xsl:te
Get the list of parameters of this.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public int</code></td><td width="" align="left"><code>hashCode()</code>
+<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getPriority()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- </td>
+ Get the value of the <code>priority</code> attribute if one exists.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>equals(java.lang.Object obj)</code>
+<td width="20%" align="right"><code>public int</code></td><td width="" align="left"><code>hashCode()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@@ -3563,6 +7626,146 @@ extends org.eclipse.wst.xsl.core.internal.model.XSLElement</pre>The <code>xsl:te
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>parameters</h2>
+<p>
+<code>package-private java.util.List <strong>parameters</strong></code>
+</p>
+<hr>
+<h2>variables</h2>
+<p>
+<code>package-private java.util.List <strong>variables</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>Template</h2>
+<p>
+<code>public <strong>Template</strong>(org.eclipse.wst.xsl.core.internal.model.Stylesheet stylesheet)</code>
+</p>
+<p>Create a new instance of this.</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>addParameter</h2>
+<p>
+<code>public void <strong>addParameter</strong>(org.eclipse.wst.xsl.core.internal.model.Parameter parameter)</code>
+</p>
+<p>Add a parameter to this.</p>
+<h3>Parameters</h3>
+<p>
+<code>parameter</code> - the parameter to add</p>
+<hr>
+<h2>addVariable</h2>
+<p>
+<code>public void <strong>addVariable</strong>(org.eclipse.wst.xsl.core.internal.model.Variable var)</code>
+</p>
+<p>Add a variable to this.</p>
+<h3>Parameters</h3>
+<p>
+<code>var</code> - the variable to add</p>
+<hr>
+<h2>equals</h2>
+<p>
+<code>public boolean <strong>equals</strong>(java.lang.Object obj)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>obj</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<hr>
+<h2>getMatch</h2>
+<p>
+<code>public java.lang.String <strong>getMatch</strong>()</code>
+</p>
+<p>Get the value of the <code>match</code> attribute if one exists.</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code> - the match value, or null</p>
+<hr>
+<h2>getMode</h2>
+<p>
+<code>public java.lang.String <strong>getMode</strong>()</code>
+</p>
+<p>Get the value of the <code>mode</code> attribute if one exists.</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code> - the mode value, or null</p>
+<hr>
+<h2>getName</h2>
+<p>
+<code>public java.lang.String <strong>getName</strong>()</code>
+</p>
+<p>Get the value of the <code>name</code> attribute if one exists.</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code> - the template name, or null</p>
+<hr>
+<h2>getParameters</h2>
+<p>
+<code>public java.util.List <strong>getParameters</strong>()</code>
+</p>
+<p>Get the list of parameters of this.</p>
+<h3>Returns</h3>
+<p>
+<code>java.util.List</code> - the list of parameters</p>
+<hr>
+<h2>getPriority</h2>
+<p>
+<code>public java.lang.String <strong>getPriority</strong>()</code>
+</p>
+<p>Get the value of the <code>priority</code> attribute if one exists.</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code> - the priority value, or null</p>
+<hr>
+<h2>hashCode</h2>
+<p>
+<code>public int <strong>hashCode</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>int</code>
+</p>
+<hr>
+<h2>toString</h2>
+<p>
+<code>public java.lang.String <strong>toString</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.core.internal.model</strong></font>
</p>
@@ -3583,7 +7786,7 @@ extends org.eclipse.wst.xsl.core.internal.model.XSLElement</pre>The <code>xsl:va
</td>
</tr>
<tr>
-<td><code><strong>Variable(org.eclipse.wst.xsl.core.internal.model.Stylesheet stylesheet)</strong></code></td>
+<td><code><strong>Variable</strong>(org.eclipse.wst.xsl.core.internal.model.Stylesheet stylesheet)</code></td>
</tr>
</table>
<br>
@@ -3607,6 +7810,48 @@ extends org.eclipse.wst.xsl.core.internal.model.XSLElement</pre>The <code>xsl:va
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>Variable</h2>
+<p>
+<code>public <strong>Variable</strong>(org.eclipse.wst.xsl.core.internal.model.Stylesheet stylesheet)</code>
+</p>
+<p>Create a new instance of this.</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getName</h2>
+<p>
+<code>public java.lang.String <strong>getName</strong>()</code>
+</p>
+<p>Get the value of the <code>name</code> attribute if one exists.</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code> - the variable name, or null</p>
+<hr>
+<h2>getSelect</h2>
+<p>
+<code>public java.lang.String <strong>getSelect</strong>()</code>
+</p>
+<p>Get the value of the <code>select</code> attribute if one exists.</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code> - the select value, or null</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.core.internal.model</strong></font>
</p>
@@ -3647,11 +7892,11 @@ extends org.eclipse.wst.xsl.core.internal.model.XSLNode</pre>An attribute of an
</td>
</tr>
<tr>
-<td><code><strong>XSLAttribute(org.eclipse.wst.xsl.core.internal.model.XSLElement element
+<td><code><strong>XSLAttribute</strong>(org.eclipse.wst.xsl.core.internal.model.XSLElement element
,
java.lang.String name
,
- java.lang.String value)</strong></code></td>
+ java.lang.String value)</code></td>
</tr>
</table>
<br>
@@ -3675,6 +7920,71 @@ extends org.eclipse.wst.xsl.core.internal.model.XSLNode</pre>An attribute of an
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>name</h2>
+<p>
+<code>package-private java.lang.String <strong>name</strong></code>
+</p>
+<hr>
+<h2>value</h2>
+<p>
+<code>package-private java.lang.String <strong>value</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>XSLAttribute</h2>
+<p>
+<code>public <strong>XSLAttribute</strong>(org.eclipse.wst.xsl.core.internal.model.XSLElement element
+ ,
+ java.lang.String name
+ ,
+ java.lang.String value)</code>
+</p>
+<p>Create a new instance of this.</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getName</h2>
+<p>
+<code>public java.lang.String <strong>getName</strong>()</code>
+</p>
+<p>Get the name of this.</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code> - the attribute's name</p>
+<hr>
+<h2>getValue</h2>
+<p>
+<code>public java.lang.String <strong>getValue</strong>()</code>
+</p>
+<p>Get the value of this.</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code> - the attribute's value</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.core.internal.model</strong></font>
</p>
@@ -3715,7 +8025,7 @@ extends org.eclipse.wst.xsl.core.internal.model.XSLNode</pre>An element in the X
</td>
</tr>
<tr>
-<td><code><strong>XSLElement(org.eclipse.wst.xsl.core.internal.model.Stylesheet stylesheet)</strong></code></td>
+<td><code><strong>XSLElement</strong>(org.eclipse.wst.xsl.core.internal.model.Stylesheet stylesheet)</code></td>
</tr>
</table>
<br>
@@ -3726,10 +8036,10 @@ extends org.eclipse.wst.xsl.core.internal.model.XSLNode</pre>An element in the X
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setAttribute(org.eclipse.wst.xsl.core.internal.model.XSLAttribute attribute)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>addChild(org.eclipse.wst.xsl.core.internal.model.XSLElement element)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Add an attribute of this</td>
+ Add a child element of this.</td>
</tr>
<tr valign="top">
<td width="20%" align="right"><code>public org.eclipse.wst.xsl.core.internal.model.XSLAttribute</code></td><td width="" align="left"><code>getAttribute(java.lang.String name)</code>
@@ -3750,18 +8060,121 @@ extends org.eclipse.wst.xsl.core.internal.model.XSLNode</pre>An element in the X
Get the value of the attribute with the given name.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>addChild(org.eclipse.wst.xsl.core.internal.model.XSLElement element)</code>
+<td width="20%" align="right"><code>public java.util.List</code></td><td width="" align="left"><code>getChildElements()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Add a child element of this.</td>
+ Get the list of child elements</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.util.List</code></td><td width="" align="left"><code>getChildElements()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setAttribute(org.eclipse.wst.xsl.core.internal.model.XSLAttribute attribute)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Get the list of child elements</td>
+ Add an attribute of this</td>
+</tr>
+</table>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
</tr>
</table>
+<h2>attributes</h2>
+<p>
+<code>package-private java.util.Map <strong>attributes</strong></code>
+</p>
+<hr>
+<h2>childElements</h2>
+<p>
+<code>package-private java.util.List <strong>childElements</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>XSLElement</h2>
+<p>
+<code>public <strong>XSLElement</strong>(org.eclipse.wst.xsl.core.internal.model.Stylesheet stylesheet)</code>
+</p>
+<p>Create a new instance of this.</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>addChild</h2>
+<p>
+<code>public void <strong>addChild</strong>(org.eclipse.wst.xsl.core.internal.model.XSLElement element)</code>
+</p>
+<p>Add a child element of this.</p>
+<h3>Parameters</h3>
+<p>
+<code>element</code> - the chold element</p>
+<hr>
+<h2>getAttribute</h2>
+<p>
+<code>public org.eclipse.wst.xsl.core.internal.model.XSLAttribute <strong>getAttribute</strong>(java.lang.String name)</code>
+</p>
+<p>Get the attribute with the given name.</p>
+<h3>Parameters</h3>
+<p>
+<code>name</code> - the name of the attribute</p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.core.internal.model.XSLAttribute</code> - the attribute</p>
+<hr>
+<h2>getAttributes</h2>
+<p>
+<code>public java.util.Map <strong>getAttributes</strong>()</code>
+</p>
+<p>Get the attributes keyed by their names.</p>
+<h3>Returns</h3>
+<p>
+<code>java.util.Map</code> - the map of attribute names and instances</p>
+<hr>
+<h2>getAttributeValue</h2>
+<p>
+<code>public java.lang.String <strong>getAttributeValue</strong>(java.lang.String name)</code>
+</p>
+<p>Get the value of the attribute with the given name.</p>
+<h3>Parameters</h3>
+<p>
+<code>name</code> - the name of the attribute</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code> - the attribute value</p>
+<hr>
+<h2>getChildElements</h2>
+<p>
+<code>public java.util.List <strong>getChildElements</strong>()</code>
+</p>
+<p>Get the list of child elements</p>
+<h3>Returns</h3>
+<p>
+<code>java.util.List</code> - the list of children</p>
+<hr>
+<h2>setAttribute</h2>
+<p>
+<code>public void <strong>setAttribute</strong>(org.eclipse.wst.xsl.core.internal.model.XSLAttribute attribute)</code>
+</p>
+<p>Add an attribute of this</p>
+<h3>Parameters</h3>
+<p>
+<code>attribute</code> - the attribute to add</p>
<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.core.internal.model</strong></font>
@@ -3783,25 +8196,25 @@ extends PlatformObject</pre>A node in the XSL namespace.<p></p>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static short</code></td><td width="80%" align="left"><code>ELEMENT_NODE</code>
+<td width="20%" align="right"><code>public static short</code></td><td width="80%" align="left"><code>ATTRIBUTE_NODE</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- A constant for the element node (= &lt;code&gt;org.w3c.dom.Node.ELEMENT_NODE&lt;/code&gt;)</td>
+ A constant for the attribute node (= &lt;code&gt;org.w3c.dom.Node.ATTRIBUTE_NODE&lt;/code&gt;)</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static short</code></td><td width="80%" align="left"><code>ATTRIBUTE_NODE</code>
+<td width="20%" align="right"><code>package-private int</code></td><td width="80%" align="left"><code>columnNumber</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- A constant for the attribute node (= &lt;code&gt;org.w3c.dom.Node.ATTRIBUTE_NODE&lt;/code&gt;)</td>
+ </td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>package-private int</code></td><td width="80%" align="left"><code>lineNumber</code>
+<td width="20%" align="right"><code>public static short</code></td><td width="80%" align="left"><code>ELEMENT_NODE</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- </td>
+ A constant for the element node (= &lt;code&gt;org.w3c.dom.Node.ELEMENT_NODE&lt;/code&gt;)</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>package-private int</code></td><td width="80%" align="left"><code>columnNumber</code>
+<td width="20%" align="right"><code>package-private int</code></td><td width="80%" align="left"><code>lineNumber</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@@ -3815,9 +8228,9 @@ extends PlatformObject</pre>A node in the XSL namespace.<p></p>
</td>
</tr>
<tr>
-<td><code><strong>XSLNode(org.eclipse.wst.xsl.core.internal.model.Stylesheet stylesheet
+<td><code><strong>XSLNode</strong>(org.eclipse.wst.xsl.core.internal.model.Stylesheet stylesheet
,
- short type)</strong></code></td>
+ short type)</code></td>
</tr>
</table>
<br>
@@ -3828,46 +8241,46 @@ extends PlatformObject</pre>A node in the XSL namespace.<p></p>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setLineNumber(int lineNumber)</code>
+<td width="20%" align="right"><code>public int</code></td><td width="" align="left"><code>getColumnNumber()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Set the line number where this node occurs in the XSL file.</td>
+ Set the column number where this node occurs in the XSL file.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setColumnNumber(int columnNumber)</code>
+<td width="20%" align="right"><code>public int</code></td><td width="" align="left"><code>getLength()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Set the columns number where this node occurs in the XSL file.</td>
+ Get the length of this node.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public org.eclipse.wst.xsl.core.internal.model.Stylesheet</code></td><td width="" align="left"><code>getStylesheet()</code>
+<td width="20%" align="right"><code>public int</code></td><td width="" align="left"><code>getLineNumber()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Get the stylesheet that this belongs to.</td>
+ Set the line number where this node occurs in the XSL file.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public int</code></td><td width="" align="left"><code>getLineNumber()</code>
+<td width="20%" align="right"><code>public short</code></td><td width="" align="left"><code>getNodeType()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Set the line number where this node occurs in the XSL file.</td>
+ Get the type of node.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public int</code></td><td width="" align="left"><code>getColumnNumber()</code>
+<td width="20%" align="right"><code>public int</code></td><td width="" align="left"><code>getOffset()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Set the column number where this node occurs in the XSL file.</td>
+ Get the document offset where this node occurs.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setOffset(int offset)</code>
+<td width="20%" align="right"><code>public org.eclipse.wst.xsl.core.internal.model.Stylesheet</code></td><td width="" align="left"><code>getStylesheet()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Set the document offset where this node occurs.</td>
+ Get the stylesheet that this belongs to.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public int</code></td><td width="" align="left"><code>getOffset()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setColumnNumber(int columnNumber)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Get the document offset where this node occurs.</td>
+ Set the columns number where this node occurs in the XSL file.</td>
</tr>
<tr valign="top">
<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setLength(int length)</code>
@@ -3876,16 +8289,16 @@ extends PlatformObject</pre>A node in the XSL namespace.<p></p>
Set the length of this node.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public int</code></td><td width="" align="left"><code>getLength()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setLineNumber(int lineNumber)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Get the length of this node.</td>
+ Set the line number where this node occurs in the XSL file.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public short</code></td><td width="" align="left"><code>getNodeType()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setOffset(int offset)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Get the type of node.</td>
+ Set the document offset where this node occurs.</td>
</tr>
<tr valign="top">
<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>toString()</code>
@@ -3895,6 +8308,171 @@ extends PlatformObject</pre>A node in the XSL namespace.<p></p>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>ATTRIBUTE_NODE</h2>
+<p>
+<code>public static short <strong>ATTRIBUTE_NODE</strong></code>
+</p>
+<table>
+<tr>
+<td>A constant for the attribute node (= <code>org.w3c.dom.Node.ATTRIBUTE_NODE</code>)</td>
+</tr>
+</table>
+<hr>
+<h2>columnNumber</h2>
+<p>
+<code>package-private int <strong>columnNumber</strong></code>
+</p>
+<hr>
+<h2>ELEMENT_NODE</h2>
+<p>
+<code>public static short <strong>ELEMENT_NODE</strong></code>
+</p>
+<table>
+<tr>
+<td>A constant for the element node (= <code>org.w3c.dom.Node.ELEMENT_NODE</code>)</td>
+</tr>
+</table>
+<hr>
+<h2>lineNumber</h2>
+<p>
+<code>package-private int <strong>lineNumber</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>XSLNode</h2>
+<p>
+<code>public <strong>XSLNode</strong>(org.eclipse.wst.xsl.core.internal.model.Stylesheet stylesheet
+ ,
+ short type)</code>
+</p>
+<p>Create a new instance of this.</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getColumnNumber</h2>
+<p>
+<code>public int <strong>getColumnNumber</strong>()</code>
+</p>
+<p>Set the column number where this node occurs in the XSL file.</p>
+<h3>Returns</h3>
+<p>
+<code>int</code> - the column number where this node occurs in the XSL file.</p>
+<hr>
+<h2>getLength</h2>
+<p>
+<code>public int <strong>getLength</strong>()</code>
+</p>
+<p>Get the length of this node.</p>
+<h3>Returns</h3>
+<p>
+<code>int</code> - the node length</p>
+<hr>
+<h2>getLineNumber</h2>
+<p>
+<code>public int <strong>getLineNumber</strong>()</code>
+</p>
+<p>Set the line number where this node occurs in the XSL file.</p>
+<h3>Returns</h3>
+<p>
+<code>int</code> - the line number where this node occurs in the XSL file.</p>
+<hr>
+<h2>getNodeType</h2>
+<p>
+<code>public short <strong>getNodeType</strong>()</code>
+</p>
+<p>Get the type of node.</p>
+<h3>Returns</h3>
+<p>
+<code>short</code> - one of <code>ELEMENT_NODE</code> or <code>ATTRIBUTE_NODE</code></p>
+<hr>
+<h2>getOffset</h2>
+<p>
+<code>public int <strong>getOffset</strong>()</code>
+</p>
+<p>Get the document offset where this node occurs.</p>
+<h3>Returns</h3>
+<p>
+<code>int</code> - the document offset</p>
+<hr>
+<h2>getStylesheet</h2>
+<p>
+<code>public org.eclipse.wst.xsl.core.internal.model.Stylesheet <strong>getStylesheet</strong>()</code>
+</p>
+<p>Get the stylesheet that this belongs to.</p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.core.internal.model.Stylesheet</code> - the stylesheet</p>
+<hr>
+<h2>setColumnNumber</h2>
+<p>
+<code>public void <strong>setColumnNumber</strong>(int columnNumber)</code>
+</p>
+<p>Set the columns number where this node occurs in the XSL file.</p>
+<h3>Parameters</h3>
+<p>
+<code>columnNumber</code> - the column number</p>
+<hr>
+<h2>setLength</h2>
+<p>
+<code>public void <strong>setLength</strong>(int length)</code>
+</p>
+<p>Set the length of this node.</p>
+<h3>Parameters</h3>
+<p>
+<code>length</code> - the node length</p>
+<hr>
+<h2>setLineNumber</h2>
+<p>
+<code>public void <strong>setLineNumber</strong>(int lineNumber)</code>
+</p>
+<p>Set the line number where this node occurs in the XSL file.</p>
+<h3>Parameters</h3>
+<p>
+<code>lineNumber</code> - the line number</p>
+<hr>
+<h2>setOffset</h2>
+<p>
+<code>public void <strong>setOffset</strong>(int offset)</code>
+</p>
+<p>Set the document offset where this node occurs.</p>
+<h3>Parameters</h3>
+<p>
+<code>offset</code> - the document offset</p>
+<hr>
+<h2>toString</h2>
+<p>
+<code>public java.lang.String <strong>toString</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.core.internal.preferences</strong></font>
</p>
@@ -3915,7 +8493,7 @@ extends AbstractPreferenceInitializer</pre>Preferences initializer for XSL core
</td>
</tr>
<tr>
-<td><code><strong>PreferenceInitializer()</strong></code></td>
+<td><code><strong>PreferenceInitializer</strong>()</code></td>
</tr>
</table>
<br>
@@ -3933,6 +8511,36 @@ extends AbstractPreferenceInitializer</pre>Preferences initializer for XSL core
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>PreferenceInitializer</h2>
+<p>
+<code>public <strong>PreferenceInitializer</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>initializeDefaultPreferences</h2>
+<p>
+<code>public void <strong>initializeDefaultPreferences</strong>()</code>
+</p>
+<p></p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.core.internal.util</strong></font>
</p>
@@ -3995,6 +8603,12 @@ extends java.lang.Object</pre>Debug Class is used to determine when Debugging ou
</td>
</tr>
<tr valign="top">
+<td width="20%" align="right"><code>public static boolean</code></td><td width="80%" align="left"><code>debugLauncher</code>
+<br>
+ &nbsp;&nbsp;&nbsp;&nbsp;
+ </td>
+</tr>
+<tr valign="top">
<td width="20%" align="right"><code>public static boolean</code></td><td width="80%" align="left"><code>debugMediator</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
@@ -4049,28 +8663,22 @@ extends java.lang.Object</pre>Debug Class is used to determine when Debugging ou
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static boolean</code></td><td width="80%" align="left"><code>debugLauncher</code>
+<td width="20%" align="right"><code>public static boolean</code></td><td width="80%" align="left"><code>debugTreeModel</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static boolean</code></td><td width="80%" align="left"><code>debugXSLModel</code>
-<br>
- &nbsp;&nbsp;&nbsp;&nbsp;
- Output Modeling Messages.</td>
-</tr>
-<tr valign="top">
-<td width="20%" align="right"><code>public static boolean</code></td><td width="80%" align="left"><code>debugTreeModel</code>
+<td width="20%" align="right"><code>public static boolean</code></td><td width="80%" align="left"><code>debugUpdateTreePositions</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static boolean</code></td><td width="80%" align="left"><code>debugUpdateTreePositions</code>
+<td width="20%" align="right"><code>public static boolean</code></td><td width="80%" align="left"><code>debugXSLModel</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- </td>
+ Output Modeling Messages.</td>
</tr>
<tr valign="top">
<td width="20%" align="right"><code>public static boolean</code></td><td width="80%" align="left"><code>displayInfo</code>
@@ -4171,7 +8779,7 @@ extends java.lang.Object</pre>Debug Class is used to determine when Debugging ou
</td>
</tr>
<tr>
-<td><code><strong>Debug()</strong></code></td>
+<td><code><strong>Debug</strong>()</code></td>
</tr>
</table>
<br>
@@ -4209,6 +8817,273 @@ extends java.lang.Object</pre>Debug Class is used to determine when Debugging ou
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>checkForMemoryLeaks</h2>
+<p>
+<code>public static boolean <strong>checkForMemoryLeaks</strong></code>
+</p>
+<hr>
+<h2>collectStats</h2>
+<p>
+<code>public static boolean <strong>collectStats</strong></code>
+</p>
+<hr>
+<h2>DEBUG</h2>
+<p>
+<code>public static int <strong>DEBUG</strong></code>
+</p>
+<hr>
+<h2>DEBUG_THREADLOCAL</h2>
+<p>
+<code>public static boolean <strong>DEBUG_THREADLOCAL</strong></code>
+</p>
+<hr>
+<h2>debugBreakpoints</h2>
+<p>
+<code>public static boolean <strong>debugBreakpoints</strong></code>
+</p>
+<hr>
+<h2>debugCaretMediator</h2>
+<p>
+<code>public static boolean <strong>debugCaretMediator</strong></code>
+</p>
+<hr>
+<h2>debugDisplayTreePositions</h2>
+<p>
+<code>public static boolean <strong>debugDisplayTreePositions</strong></code>
+</p>
+<hr>
+<h2>debugLauncher</h2>
+<p>
+<code>public static boolean <strong>debugLauncher</strong></code>
+</p>
+<hr>
+<h2>debugMediator</h2>
+<p>
+<code>public static boolean <strong>debugMediator</strong></code>
+</p>
+<hr>
+<h2>debugNotification</h2>
+<p>
+<code>public static boolean <strong>debugNotification</strong></code>
+</p>
+<hr>
+<h2>debugNotificationAndEvents</h2>
+<p>
+<code>public static boolean <strong>debugNotificationAndEvents</strong></code>
+</p>
+<hr>
+<h2>debugNotifyDeferred</h2>
+<p>
+<code>public static boolean <strong>debugNotifyDeferred</strong></code>
+</p>
+<hr>
+<h2>debugReconciling</h2>
+<p>
+<code>public static boolean <strong>debugReconciling</strong></code>
+</p>
+<hr>
+<h2>debugRtfFormatProvider</h2>
+<p>
+<code>public static boolean <strong>debugRtfFormatProvider</strong></code>
+</p>
+<hr>
+<h2>debugStructuredDocument</h2>
+<p>
+<code>public static boolean <strong>debugStructuredDocument</strong></code>
+</p>
+<hr>
+<h2>debugTaglibs</h2>
+<p>
+<code>public static boolean <strong>debugTaglibs</strong></code>
+</p>
+<hr>
+<h2>debugTokenizer</h2>
+<p>
+<code>public static boolean <strong>debugTokenizer</strong></code>
+</p>
+<hr>
+<h2>debugTreeModel</h2>
+<p>
+<code>public static boolean <strong>debugTreeModel</strong></code>
+</p>
+<hr>
+<h2>debugUpdateTreePositions</h2>
+<p>
+<code>public static boolean <strong>debugUpdateTreePositions</strong></code>
+</p>
+<hr>
+<h2>debugXSLModel</h2>
+<p>
+<code>public static boolean <strong>debugXSLModel</strong></code>
+</p>
+<table>
+<tr>
+<td>Output Modeling Messages.</td>
+</tr>
+</table>
+<hr>
+<h2>displayInfo</h2>
+<p>
+<code>public static boolean <strong>displayInfo</strong></code>
+</p>
+<hr>
+<h2>displayToConsole</h2>
+<p>
+<code>public static boolean <strong>displayToConsole</strong></code>
+</p>
+<table>
+<tr>
+<td>effects output of Logger</td>
+</tr>
+</table>
+<hr>
+<h2>displayWarnings</h2>
+<p>
+<code>public static boolean <strong>displayWarnings</strong></code>
+</p>
+<hr>
+<h2>headParsing</h2>
+<p>
+<code>public static boolean <strong>headParsing</strong></code>
+</p>
+<hr>
+<h2>jsDebugContextAssist</h2>
+<p>
+<code>public static boolean <strong>jsDebugContextAssist</strong></code>
+</p>
+<hr>
+<h2>jsDebugSyntaxColoring</h2>
+<p>
+<code>public static boolean <strong>jsDebugSyntaxColoring</strong></code>
+</p>
+<hr>
+<h2>LOCKS</h2>
+<p>
+<code>public static boolean <strong>LOCKS</strong></code>
+</p>
+<hr>
+<h2>perfTest</h2>
+<p>
+<code>public static boolean <strong>perfTest</strong></code>
+</p>
+<hr>
+<h2>perfTestAdapterClassLoading</h2>
+<p>
+<code>public static boolean <strong>perfTestAdapterClassLoading</strong></code>
+</p>
+<hr>
+<h2>perfTestFormat</h2>
+<p>
+<code>public static boolean <strong>perfTestFormat</strong></code>
+</p>
+<hr>
+<h2>perfTestRawStructuredDocumentOnly</h2>
+<p>
+<code>public static boolean <strong>perfTestRawStructuredDocumentOnly</strong></code>
+</p>
+<hr>
+<h2>perfTestStructuredDocumentEventOnly</h2>
+<p>
+<code>public static boolean <strong>perfTestStructuredDocumentEventOnly</strong></code>
+</p>
+<hr>
+<h2>perfTestStructuredDocumentOnly</h2>
+<p>
+<code>public static boolean <strong>perfTestStructuredDocumentOnly</strong></code>
+</p>
+<hr>
+<h2>syntaxHighlighting</h2>
+<p>
+<code>public static boolean <strong>syntaxHighlighting</strong></code>
+</p>
+<hr>
+<h2>useStandardEolInWidget</h2>
+<p>
+<code>public static boolean <strong>useStandardEolInWidget</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>Debug</h2>
+<p>
+<code>public <strong>Debug</strong>()</code>
+</p>
+<p>Debug constructor comment.</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>dump</h2>
+<p>
+<code>public void <strong>dump</strong>(IStructuredDocument structuredDocument)</code>
+</p>
+<p>For tests and debug only</p>
+<h3>Parameters</h3>
+<p>
+<code>structuredDocument</code>
+</p>
+<hr>
+<h2>dump</h2>
+<p>
+<code>public void <strong>dump</strong>(IStructuredDocument structuredDocument
+ ,
+ boolean verbose)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>structuredDocument</code>
+</p>
+<p>
+<code>verbose</code>
+</p>
+<hr>
+<h2>println</h2>
+<p>
+<code>public void <strong>println</strong>(java.lang.String msg)</code>
+</p>
+<p>Simple utility to make sure println's are some what in order</p>
+<h3>Parameters</h3>
+<p>
+<code>msg</code>
+</p>
+<hr>
+<h2>toStringUtil</h2>
+<p>
+<code>public java.lang.String <strong>toStringUtil</strong>(IStructuredDocument object)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>object</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.core.internal.util</strong></font>
</p>
@@ -4229,7 +9104,7 @@ extends java.lang.Object</pre>This is a general file utility class.<p></p>
</td>
</tr>
<tr>
-<td><code><strong>FileUtil()</strong></code></td>
+<td><code><strong>FileUtil</strong>()</code></td>
</tr>
</table>
<br>
@@ -4253,6 +9128,54 @@ extends java.lang.Object</pre>This is a general file utility class.<p></p>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>FileUtil</h2>
+<p>
+<code>public <strong>FileUtil</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>isXMLFile</h2>
+<p>
+<code>public boolean <strong>isXMLFile</strong>(IFile file)</code>
+</p>
+<p>Determines if a file is one of the valid XML content types.</p>
+<h3>Parameters</h3>
+<p>
+<code>file</code> - The input IFile to check</p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code> - True if it is a XML file, false otherwise.</p>
+<hr>
+<h2>isXSLFile</h2>
+<p>
+<code>public boolean <strong>isXSLFile</strong>(IFile file)</code>
+</p>
+<p>Determines if a file is a XSLT File.</p>
+<h3>Parameters</h3>
+<p>
+<code>file</code> - The input IFile to check.</p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code> - True if it is a XSLT file, false otherwise.</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.core.internal.util</strong></font>
</p>
@@ -4273,7 +9196,7 @@ extends java.lang.Object</pre>General Purpose utility classes to convert from St
</td>
</tr>
<tr>
-<td><code><strong>StructuredDocumentUtil()</strong></code></td>
+<td><code><strong>StructuredDocumentUtil</strong>()</code></td>
</tr>
</table>
<br>
@@ -4294,6 +9217,49 @@ extends java.lang.Object</pre>General Purpose utility classes to convert from St
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>StructuredDocumentUtil</h2>
+<p>
+<code>public <strong>StructuredDocumentUtil</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getNode</h2>
+<p>
+<code>public IDOMNode <strong>getNode</strong>(IStructuredDocumentRegion documentRegion
+ ,
+ ITextRegion textRegion)</code>
+</p>
+<p>Given a StructuredDocumentRegion and a TextRegion, return a
+ IDOMNode for that particular position in the StructuredDocument</p>
+<h3>Parameters</h3>
+<p>
+<code>documentRegion</code>
+</p>
+<p>
+<code>textRegion</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>IDOMNode</code> - IDOMNode</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.core.internal.validation</strong></font>
</p>
@@ -4315,7 +9281,7 @@ extends java.lang.Exception</pre>An exception used to indicate whether the maxim
</td>
</tr>
<tr>
-<td><code><strong>MaxErrorsExceededException()</strong></code></td>
+<td><code><strong>MaxErrorsExceededException</strong>()</code></td>
</tr>
</table>
<br>
@@ -4327,6 +9293,21 @@ extends java.lang.Exception</pre>An exception used to indicate whether the maxim
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>MaxErrorsExceededException</h2>
+<p>
+<code>public <strong>MaxErrorsExceededException</strong>()</code>
+</p>
+<p></p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.core.internal.validation</strong></font>
</p>
@@ -4451,6 +9432,185 @@ extends NLS</pre>Messages for the validator.<p></p>
</table>
<br>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>XSLValidator_1</h2>
+<p>
+<code>public static java.lang.String <strong>XSLValidator_1</strong></code>
+</p>
+<table>
+<tr>
+<td>Invalid xpath.</td>
+</tr>
+</table>
+<hr>
+<h2>XSLValidator_10</h2>
+<p>
+<code>public static java.lang.String <strong>XSLValidator_10</strong></code>
+</p>
+<table>
+<tr>
+<td>Stylesheet importing itself</td>
+</tr>
+</table>
+<hr>
+<h2>XSLValidator_11</h2>
+<p>
+<code>public static java.lang.String <strong>XSLValidator_11</strong></code>
+</p>
+<table>
+<tr>
+<td>Template conflict (internal)</td>
+</tr>
+</table>
+<hr>
+<h2>XSLValidator_12</h2>
+<p>
+<code>public static java.lang.String <strong>XSLValidator_12</strong></code>
+</p>
+<table>
+<tr>
+<td>Template conflict (included)</td>
+</tr>
+</table>
+<hr>
+<h2>XSLValidator_13</h2>
+<p>
+<code>public static java.lang.String <strong>XSLValidator_13</strong></code>
+</p>
+<table>
+<tr>
+<td>Template conflict (external)</td>
+</tr>
+</table>
+<hr>
+<h2>XSLValidator_14</h2>
+<p>
+<code>public static java.lang.String <strong>XSLValidator_14</strong></code>
+</p>
+<table>
+<tr>
+<td>Parameter missing name attribute</td>
+</tr>
+</table>
+<hr>
+<h2>XSLValidator_15</h2>
+<p>
+<code>public static java.lang.String <strong>XSLValidator_15</strong></code>
+</p>
+<table>
+<tr>
+<td>Parameter with empty name attribute</td>
+</tr>
+</table>
+<hr>
+<h2>XSLValidator_16</h2>
+<p>
+<code>public static java.lang.String <strong>XSLValidator_16</strong></code>
+</p>
+<table>
+<tr>
+<td>Duplicate parameter</td>
+</tr>
+</table>
+<hr>
+<h2>XSLValidator_18</h2>
+<p>
+<code>public static java.lang.String <strong>XSLValidator_18</strong></code>
+</p>
+<table>
+<tr>
+<td>Unresolved named template</td>
+</tr>
+</table>
+<hr>
+<h2>XSLValidator_2</h2>
+<p>
+<code>public static java.lang.String <strong>XSLValidator_2</strong></code>
+</p>
+<table>
+<tr>
+<td>Circular reference</td>
+</tr>
+</table>
+<hr>
+<h2>XSLValidator_20</h2>
+<p>
+<code>public static java.lang.String <strong>XSLValidator_20</strong></code>
+</p>
+<table>
+<tr>
+<td>Parameter without default value</td>
+</tr>
+</table>
+<hr>
+<h2>XSLValidator_22</h2>
+<p>
+<code>public static java.lang.String <strong>XSLValidator_22</strong></code>
+</p>
+<table>
+<tr>
+<td>Parameter does not exist</td>
+</tr>
+</table>
+<hr>
+<h2>XSLValidator_23</h2>
+<p>
+<code>public static java.lang.String <strong>XSLValidator_23</strong></code>
+</p>
+<table>
+<tr>
+<td>href attribute is required</td>
+</tr>
+</table>
+<hr>
+<h2>XSLValidator_3</h2>
+<p>
+<code>public static java.lang.String <strong>XSLValidator_3</strong></code>
+</p>
+<table>
+<tr>
+<td>Missing parameter</td>
+</tr>
+</table>
+<hr>
+<h2>XSLValidator_4</h2>
+<p>
+<code>public static java.lang.String <strong>XSLValidator_4</strong></code>
+</p>
+<table>
+<tr>
+<td>Unresolved include</td>
+</tr>
+</table>
+<hr>
+<h2>XSLValidator_6</h2>
+<p>
+<code>public static java.lang.String <strong>XSLValidator_6</strong></code>
+</p>
+<table>
+<tr>
+<td>Stylesheet includes itself</td>
+</tr>
+</table>
+<hr>
+<h2>XSLValidator_8</h2>
+<p>
+<code>public static java.lang.String <strong>XSLValidator_8</strong></code>
+</p>
+<table>
+<tr>
+<td>Unresolved import</td>
+</tr>
+</table>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.core.internal.validation</strong></font>
</p>
@@ -4473,13 +9633,13 @@ extends ValidationMessage</pre>A validation message specific to the XSL validato
</td>
</tr>
<tr>
-<td><code><strong>XSLValidationMessage(java.lang.String message
+<td><code><strong>XSLValidationMessage</strong>(java.lang.String message
,
int lineNumber
,
int columnNumber
,
- java.lang.String uri)</strong></code></td>
+ java.lang.String uri)</code></td>
</tr>
</table>
<br>
@@ -4490,16 +9650,16 @@ extends ValidationMessage</pre>A validation message specific to the XSL validato
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setNode(org.eclipse.wst.xsl.core.internal.model.XSLNode node)</code>
+<td width="20%" align="right"><code>public org.eclipse.wst.xsl.core.internal.model.XSLNode</code></td><td width="" align="left"><code>getNode()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Set the node that this message applies to.</td>
+ Get the node that this message applies to.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public org.eclipse.wst.xsl.core.internal.model.XSLNode</code></td><td width="" align="left"><code>getNode()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setNode(org.eclipse.wst.xsl.core.internal.model.XSLNode node)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Get the node that this message applies to.</td>
+ Set the node that this message applies to.</td>
</tr>
<tr valign="top">
<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>toString()</code>
@@ -4509,6 +9669,64 @@ extends ValidationMessage</pre>A validation message specific to the XSL validato
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>XSLValidationMessage</h2>
+<p>
+<code>public <strong>XSLValidationMessage</strong>(java.lang.String message
+ ,
+ int lineNumber
+ ,
+ int columnNumber
+ ,
+ java.lang.String uri)</code>
+</p>
+<p>Create a new instance of this.</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getNode</h2>
+<p>
+<code>public org.eclipse.wst.xsl.core.internal.model.XSLNode <strong>getNode</strong>()</code>
+</p>
+<p>Get the node that this message applies to.</p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.core.internal.model.XSLNode</code> - the node</p>
+<hr>
+<h2>setNode</h2>
+<p>
+<code>public void <strong>setNode</strong>(org.eclipse.wst.xsl.core.internal.model.XSLNode node)</code>
+</p>
+<p>Set the node that this message applies to.</p>
+<h3>Parameters</h3>
+<p>
+<code>node</code> - the node</p>
+<hr>
+<h2>toString</h2>
+<p>
+<code>public java.lang.String <strong>toString</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.core.internal.validation</strong></font>
</p>
@@ -4530,7 +9748,7 @@ extends java.lang.Object</pre>A validation report for the XSL validator.<p></p>
</td>
</tr>
<tr>
-<td><code><strong>XSLValidationReport(java.lang.String uri)</strong></code></td>
+<td><code><strong>XSLValidationReport</strong>(java.lang.String uri)</code></td>
</tr>
</table>
<br>
@@ -4541,18 +9759,6 @@ extends java.lang.Object</pre>A validation report for the XSL validator.<p></p>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.util.List</code></td><td width="" align="left"><code>getErrors()</code>
-<br>
- &nbsp;&nbsp;&nbsp;&nbsp;
- Get the error level validation messages.</td>
-</tr>
-<tr valign="top">
-<td width="20%" align="right"><code>public java.util.List</code></td><td width="" align="left"><code>getWarnings()</code>
-<br>
- &nbsp;&nbsp;&nbsp;&nbsp;
- Get the warn level validation messages.</td>
-</tr>
-<tr valign="top">
<td width="20%" align="right"><code>public ValidationMessage</code></td><td width="" align="left"><code>addError(org.eclipse.wst.xsl.core.internal.model.XSLNode node
,
java.lang.String message)</code>
@@ -4569,6 +9775,12 @@ extends java.lang.Object</pre>A validation report for the XSL validator.<p></p>
Add an warning message for the given XSL node.</td>
</tr>
<tr valign="top">
+<td width="20%" align="right"><code>public java.util.List</code></td><td width="" align="left"><code>getErrors()</code>
+<br>
+ &nbsp;&nbsp;&nbsp;&nbsp;
+ Get the error level validation messages.</td>
+</tr>
+<tr valign="top">
<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getFileURI()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
@@ -4587,6 +9799,12 @@ extends java.lang.Object</pre>A validation report for the XSL validator.<p></p>
Returns an array of validation messages.</td>
</tr>
<tr valign="top">
+<td width="20%" align="right"><code>public java.util.List</code></td><td width="" align="left"><code>getWarnings()</code>
+<br>
+ &nbsp;&nbsp;&nbsp;&nbsp;
+ Get the warn level validation messages.</td>
+</tr>
+<tr valign="top">
<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>isValid()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
@@ -4594,6 +9812,116 @@ extends java.lang.Object</pre>A validation report for the XSL validator.<p></p>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>XSLValidationReport</h2>
+<p>
+<code>public <strong>XSLValidationReport</strong>(java.lang.String uri)</code>
+</p>
+<p>Create a new instance of this.</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>addError</h2>
+<p>
+<code>public ValidationMessage <strong>addError</strong>(org.eclipse.wst.xsl.core.internal.model.XSLNode node
+ ,
+ java.lang.String message)</code>
+</p>
+<p>Add an error message for the given XSL node.</p>
+<h3>Parameters</h3>
+<p>
+<code>node</code> - the node the error applies to</p>
+<p>
+<code>message</code> - the message to associate with the node</p>
+<h3>Returns</h3>
+<p>
+<code>ValidationMessage</code> - the validation message created</p>
+<hr>
+<h2>addWarning</h2>
+<p>
+<code>public ValidationMessage <strong>addWarning</strong>(org.eclipse.wst.xsl.core.internal.model.XSLNode node
+ ,
+ java.lang.String message)</code>
+</p>
+<p>Add an warning message for the given XSL node.</p>
+<h3>Parameters</h3>
+<p>
+<code>node</code> - the node the warning applies to</p>
+<p>
+<code>message</code> - the message to associate with the node</p>
+<h3>Returns</h3>
+<p>
+<code>ValidationMessage</code> - the validation message created</p>
+<hr>
+<h2>getErrors</h2>
+<p>
+<code>public java.util.List <strong>getErrors</strong>()</code>
+</p>
+<p>Get the error level validation messages.</p>
+<h3>Returns</h3>
+<p>
+<code>java.util.List</code> - error level validation messages</p>
+<hr>
+<h2>getFileURI</h2>
+<p>
+<code>public java.lang.String <strong>getFileURI</strong>()</code>
+</p>
+<p>Get the URI that this report applies to.</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code> - the URI</p>
+<hr>
+<h2>getNestedMessages</h2>
+<p>
+<code>public java.util.HashMap <strong>getNestedMessages</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.util.HashMap</code> - null</p>
+<hr>
+<h2>getValidationMessages</h2>
+<p>
+<code>public ValidationMessage[] <strong>getValidationMessages</strong>()</code>
+</p>
+<p>Returns an array of validation messages.</p>
+<h3>Returns</h3>
+<p>
+<code>ValidationMessage[]</code> - An array of validation messages.</p>
+<hr>
+<h2>getWarnings</h2>
+<p>
+<code>public java.util.List <strong>getWarnings</strong>()</code>
+</p>
+<p>Get the warn level validation messages.</p>
+<h3>Returns</h3>
+<p>
+<code>java.util.List</code> - warn level validation messages</p>
+<hr>
+<h2>isValid</h2>
+<p>
+<code>public boolean <strong>isValid</strong>()</code>
+</p>
+<p>Returns whether the file is valid. The file may have warnings associated with it.</p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code> - True if the file is valid, false otherwise.</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.core.internal.validation</strong></font>
</p>
@@ -4614,6 +9942,12 @@ extends java.lang.Object</pre>The XSL validator for workspace XSL files.<p></p>
</td>
</tr>
<tr valign="top">
+<td width="20%" align="right"><code>public static org.eclipse.wst.xsl.core.internal.validation.XSLValidator</code></td><td width="" align="left"><code>getInstance()</code>
+<br>
+ &nbsp;&nbsp;&nbsp;&nbsp;
+ Get the singleton XSLValidator instance.</td>
+</tr>
+<tr valign="top">
<td width="20%" align="right"><code>public ValidationReport</code></td><td width="" align="left"><code>validate(IFile xslFile
,
boolean forceBuild)</code>
@@ -4631,13 +9965,66 @@ extends java.lang.Object</pre>The XSL validator for workspace XSL files.<p></p>
&nbsp;&nbsp;&nbsp;&nbsp;
Validate the given XSL file using the specified report.</td>
</tr>
-<tr valign="top">
-<td width="20%" align="right"><code>public static org.eclipse.wst.xsl.core.internal.validation.XSLValidator</code></td><td width="" align="left"><code>getInstance()</code>
-<br>
- &nbsp;&nbsp;&nbsp;&nbsp;
- Get the singleton XSLValidator instance.</td>
+</table>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
</tr>
</table>
+<h2>getInstance</h2>
+<p>
+<code>public org.eclipse.wst.xsl.core.internal.validation.XSLValidator <strong>getInstance</strong>()</code>
+</p>
+<p>Get the singleton XSLValidator instance.</p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.core.internal.validation.XSLValidator</code> - the singleson XSLValidator instance</p>
+<hr>
+<h2>validate</h2>
+<p>
+<code>public ValidationReport <strong>validate</strong>(IFile xslFile
+ ,
+ boolean forceBuild)</code>
+</p>
+<p>Validate the given XSL file. Same as <code>validate(xslFile,report,forceBuild)</code> except a new report is created and returned.</p>
+<h3>Parameters</h3>
+<p>
+<code>xslFile</code> - the XSL file</p>
+<p>
+<code>forceBuild</code> - true if build should always be forced</p>
+<h3>Returns</h3>
+<p>
+<code>ValidationReport</code> - the validation report</p>
+<h3>Throws:</h3>
+<p>
+<code>CoreException - if any exception occurs while validating</code>
+</p>
+<hr>
+<h2>validate</h2>
+<p>
+<code>public void <strong>validate</strong>(IFile xslFile
+ ,
+ org.eclipse.wst.xsl.core.internal.validation.XSLValidationReport report
+ ,
+ boolean forceBuild)</code>
+</p>
+<p>Validate the given XSL file using the specified report.</p>
+<h3>Parameters</h3>
+<p>
+<code>xslFile</code> - the XSL file</p>
+<p>
+<code>report</code> - the report to use for reporting validation errors</p>
+<p>
+<code>forceBuild</code> - true if build should always be forced</p>
+<h3>Throws:</h3>
+<p>
+<code>CoreException - if any exception occurs while validating</code>
+</p>
<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.core.internal.validation.eclipse</strong></font>
@@ -4659,7 +10046,7 @@ extends AbstractNestedValidator</pre>The XSL validator extends the XML <code>Abs
</td>
</tr>
<tr>
-<td><code><strong>Validator()</strong></code></td>
+<td><code><strong>Validator</strong>()</code></td>
</tr>
</table>
<br>
@@ -4670,6 +10057,14 @@ extends AbstractNestedValidator</pre>The XSL validator extends the XML <code>Abs
</td>
</tr>
<tr valign="top">
+<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>addInfoToMessage(ValidationMessage validationMessage
+ ,
+ IMessage message)</code>
+<br>
+ &nbsp;&nbsp;&nbsp;&nbsp;
+ </td>
+</tr>
+<tr valign="top">
<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>clean(IProject project
,
ValidationState state
@@ -4692,14 +10087,6 @@ extends AbstractNestedValidator</pre>The XSL validator extends the XML <code>Abs
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public IStatus</code></td><td width="" align="left"><code>validateInJob(IValidationContext context
- ,
- IReporter reporter)</code>
-<br>
- &nbsp;&nbsp;&nbsp;&nbsp;
- </td>
-</tr>
-<tr valign="top">
<td width="20%" align="right"><code>public ValidationReport</code></td><td width="" align="left"><code>validate(java.lang.String uri
,
java.io.InputStream inputstream
@@ -4710,15 +10097,150 @@ extends AbstractNestedValidator</pre>The XSL validator extends the XML <code>Abs
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>addInfoToMessage(ValidationMessage validationMessage
+<td width="20%" align="right"><code>public IStatus</code></td><td width="" align="left"><code>validateInJob(IValidationContext context
,
- IMessage message)</code>
+ IReporter reporter)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>Validator</h2>
+<p>
+<code>public <strong>Validator</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>addInfoToMessage</h2>
+<p>
+<code>protected void <strong>addInfoToMessage</strong>(ValidationMessage validationMessage
+ ,
+ IMessage message)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>validationMessage</code>
+</p>
+<p>
+<code>message</code>
+</p>
+<hr>
+<h2>clean</h2>
+<p>
+<code>public void <strong>clean</strong>(IProject project
+ ,
+ ValidationState state
+ ,
+ IProgressMonitor monitor)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>project</code>
+</p>
+<p>
+<code>state</code>
+</p>
+<p>
+<code>monitor</code>
+</p>
+<hr>
+<h2>validate</h2>
+<p>
+<code>public ValidationResult <strong>validate</strong>(IResource resource
+ ,
+ int kind
+ ,
+ ValidationState state
+ ,
+ IProgressMonitor monitor)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>resource</code>
+</p>
+<p>
+<code>kind</code>
+</p>
+<p>
+<code>state</code>
+</p>
+<p>
+<code>monitor</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>ValidationResult</code>
+</p>
+<hr>
+<h2>validate</h2>
+<p>
+<code>public ValidationReport <strong>validate</strong>(java.lang.String uri
+ ,
+ java.io.InputStream inputstream
+ ,
+ NestedValidatorContext context)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>uri</code>
+</p>
+<p>
+<code>inputstream</code>
+</p>
+<p>
+<code>context</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>ValidationReport</code>
+</p>
+<hr>
+<h2>validateInJob</h2>
+<p>
+<code>public IStatus <strong>validateInJob</strong>(IValidationContext context
+ ,
+ IReporter reporter)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>context</code>
+</p>
+<p>
+<code>reporter</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>IStatus</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>ValidationException</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.core.internal.validation.eclipse</strong></font>
</p>
@@ -4739,7 +10261,7 @@ extends AbstractValidator</pre>Validator for both build validation (AbstractVali
</td>
</tr>
<tr>
-<td><code><strong>Validator2()</strong></code></td>
+<td><code><strong>Validator2</strong>()</code></td>
</tr>
</table>
<br>
@@ -4760,13 +10282,7 @@ extends AbstractValidator</pre>Validator for both build validation (AbstractVali
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public ValidationResult</code></td><td width="" align="left"><code>validate(IResource resource
- ,
- int kind
- ,
- ValidationState state
- ,
- IProgressMonitor monitor)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>cleanup(IReporter reporter)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@@ -4778,21 +10294,27 @@ extends AbstractValidator</pre>Validator for both build validation (AbstractVali
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public IStatus</code></td><td width="" align="left"><code>validateInJob(IValidationContext helper
+<td width="20%" align="right"><code>public ValidationResult</code></td><td width="" align="left"><code>validate(IResource resource
,
- IReporter reporter)</code>
+ int kind
+ ,
+ ValidationState state
+ ,
+ IProgressMonitor monitor)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>cleanup(IReporter reporter)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>validate(IValidationContext helper
+ ,
+ IReporter reporter)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>validate(IValidationContext helper
+<td width="20%" align="right"><code>public IStatus</code></td><td width="" align="left"><code>validateInJob(IValidationContext helper
,
IReporter reporter)</code>
<br>
@@ -4801,6 +10323,145 @@ extends AbstractValidator</pre>Validator for both build validation (AbstractVali
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>Validator2</h2>
+<p>
+<code>public <strong>Validator2</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>clean</h2>
+<p>
+<code>public void <strong>clean</strong>(IProject project
+ ,
+ ValidationState state
+ ,
+ IProgressMonitor monitor)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>project</code>
+</p>
+<p>
+<code>state</code>
+</p>
+<p>
+<code>monitor</code>
+</p>
+<hr>
+<h2>cleanup</h2>
+<p>
+<code>public void <strong>cleanup</strong>(IReporter reporter)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>reporter</code>
+</p>
+<hr>
+<h2>getSchedulingRule</h2>
+<p>
+<code>public ISchedulingRule <strong>getSchedulingRule</strong>(IValidationContext helper)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>helper</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>ISchedulingRule</code>
+</p>
+<hr>
+<h2>validate</h2>
+<p>
+<code>public ValidationResult <strong>validate</strong>(IResource resource
+ ,
+ int kind
+ ,
+ ValidationState state
+ ,
+ IProgressMonitor monitor)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>resource</code>
+</p>
+<p>
+<code>kind</code>
+</p>
+<p>
+<code>state</code>
+</p>
+<p>
+<code>monitor</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>ValidationResult</code>
+</p>
+<hr>
+<h2>validate</h2>
+<p>
+<code>public void <strong>validate</strong>(IValidationContext helper
+ ,
+ IReporter reporter)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>helper</code>
+</p>
+<p>
+<code>reporter</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>ValidationException</code>
+</p>
+<hr>
+<h2>validateInJob</h2>
+<p>
+<code>public IStatus <strong>validateInJob</strong>(IValidationContext helper
+ ,
+ IReporter reporter)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>helper</code>
+</p>
+<p>
+<code>reporter</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>IStatus</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>ValidationException</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.core.internal.xinclude</strong></font>
</p>
@@ -4823,7 +10484,7 @@ extends java.lang.Object</pre>XIncluder will read an XML file, that has elements
</td>
</tr>
<tr>
-<td><code><strong>XIncluder()</strong></code></td>
+<td><code><strong>XIncluder</strong>()</code></td>
</tr>
</table>
<br>
@@ -4843,6 +10504,47 @@ extends java.lang.Object</pre>XIncluder will read an XML file, that has elements
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>XIncluder</h2>
+<p>
+<code>public <strong>XIncluder</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>extractXMLFile</h2>
+<p>
+<code>public void <strong>extractXMLFile</strong>(java.lang.String in
+ ,
+ java.lang.String out)</code>
+</p>
+<p>extracXMLFile merges the files referenced by xinclude include elements.</p>
+<h3>Parameters</h3>
+<p>
+<code>in</code> - The full path to the input XML file</p>
+<p>
+<code>out</code> - The full path to the merged XML file</p>
+<h3>Throws:</h3>
+<p>
+<code>java.lang.Exception</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.core.resolver</strong></font>
</p>
@@ -4863,7 +10565,7 @@ extends java.lang.Object</pre>TODO: Javadoc<p></p>
</td>
</tr>
<tr>
-<td><code><strong>ResolverExtension()</strong></code></td>
+<td><code><strong>ResolverExtension</strong>()</code></td>
</tr>
</table>
<br>
@@ -4887,6 +10589,59 @@ extends java.lang.Object</pre>TODO: Javadoc<p></p>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>ResolverExtension</h2>
+<p>
+<code>public <strong>ResolverExtension</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>resolve</h2>
+<p>
+<code>public java.lang.String <strong>resolve</strong>(IFile file
+ ,
+ java.lang.String baseLocation
+ ,
+ java.lang.String publicId
+ ,
+ java.lang.String systemId)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>file</code>
+</p>
+<p>
+<code>baseLocation</code>
+</p>
+<p>
+<code>publicId</code>
+</p>
+<p>
+<code>systemId</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.core.resolver</strong></font>
</p>
@@ -4906,7 +10661,7 @@ extends org.xml.sax.helpers.DefaultHandler</pre>A simple XML parser to find the
</td>
</tr>
<tr>
-<td><code><strong>XSLVersionHandler()</strong></code></td>
+<td><code><strong>XSLVersionHandler</strong>()</code></td>
</tr>
</table>
<br>
@@ -4945,6 +10700,18 @@ extends org.xml.sax.helpers.DefaultHandler</pre>A simple XML parser to find the
</td>
</tr>
<tr valign="top">
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>error(org.xml.sax.SAXParseException e)</code>
+<br>
+ &nbsp;&nbsp;&nbsp;&nbsp;
+ </td>
+</tr>
+<tr valign="top">
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>fatalError(org.xml.sax.SAXParseException e)</code>
+<br>
+ &nbsp;&nbsp;&nbsp;&nbsp;
+ </td>
+</tr>
+<tr valign="top">
<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getVersionAttribute()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
@@ -5004,19 +10771,241 @@ extends org.xml.sax.helpers.DefaultHandler</pre>A simple XML parser to find the
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
-<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>error(org.xml.sax.SAXParseException e)</code>
-<br>
- &nbsp;&nbsp;&nbsp;&nbsp;
- </td>
+</table>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
</tr>
-<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>fatalError(org.xml.sax.SAXParseException e)</code>
-<br>
- &nbsp;&nbsp;&nbsp;&nbsp;
- </td>
+</table>
+<h2>XSLVersionHandler</h2>
+<p>
+<code>public <strong>XSLVersionHandler</strong>()</code>
+</p>
+<p>TODO: Add Javadoc</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
</tr>
</table>
+<h2>comment</h2>
+<p>
+<code>public void <strong>comment</strong>(char[] ch
+ ,
+ int start
+ ,
+ int length)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>ch</code>
+</p>
+<p>
+<code>start</code>
+</p>
+<p>
+<code>length</code>
+</p>
+<hr>
+<h2>endCDATA</h2>
+<p>
+<code>public void <strong>endCDATA</strong>()</code>
+</p>
+<p></p>
+<hr>
+<h2>endDTD</h2>
+<p>
+<code>public void <strong>endDTD</strong>()</code>
+</p>
+<p></p>
+<hr>
+<h2>endEntity</h2>
+<p>
+<code>public void <strong>endEntity</strong>(java.lang.String name)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>name</code>
+</p>
+<hr>
+<h2>error</h2>
+<p>
+<code>public void <strong>error</strong>(org.xml.sax.SAXParseException e)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>e</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>org.xml.sax.SAXException</code>
+</p>
+<hr>
+<h2>fatalError</h2>
+<p>
+<code>public void <strong>fatalError</strong>(org.xml.sax.SAXParseException e)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>e</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>org.xml.sax.SAXException</code>
+</p>
+<hr>
+<h2>getVersionAttribute</h2>
+<p>
+<code>public java.lang.String <strong>getVersionAttribute</strong>()</code>
+</p>
+<p>TODO: Add Javadoc</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
+<h2>parseContents</h2>
+<p>
+<code>public boolean <strong>parseContents</strong>(org.xml.sax.InputSource contents)</code>
+</p>
+<p>TODO: Add Javadoc</p>
+<h3>Parameters</h3>
+<p>
+<code>contents</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>java.io.IOException</code>
+</p>
+<p>
+<code>javax.xml.parsers.ParserConfigurationException</code>
+</p>
+<p>
+<code>org.xml.sax.SAXException</code>
+</p>
+<hr>
+<h2>resolveEntity</h2>
+<p>
+<code>public org.xml.sax.InputSource <strong>resolveEntity</strong>(java.lang.String publicId
+ ,
+ java.lang.String systemId)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>publicId</code>
+</p>
+<p>
+<code>systemId</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>org.xml.sax.InputSource</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>org.xml.sax.SAXException</code>
+</p>
+<hr>
+<h2>startCDATA</h2>
+<p>
+<code>public void <strong>startCDATA</strong>()</code>
+</p>
+<p></p>
+<hr>
+<h2>startDTD</h2>
+<p>
+<code>public void <strong>startDTD</strong>(java.lang.String name
+ ,
+ java.lang.String publicId
+ ,
+ java.lang.String systemId)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>name</code>
+</p>
+<p>
+<code>publicId</code>
+</p>
+<p>
+<code>systemId</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>org.xml.sax.SAXException</code>
+</p>
+<hr>
+<h2>startElement</h2>
+<p>
+<code>public void <strong>startElement</strong>(java.lang.String uri
+ ,
+ java.lang.String elementName
+ ,
+ java.lang.String qualifiedName
+ ,
+ org.xml.sax.Attributes attributes)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>uri</code>
+</p>
+<p>
+<code>elementName</code>
+</p>
+<p>
+<code>qualifiedName</code>
+</p>
+<p>
+<code>attributes</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>org.xml.sax.SAXException</code>
+</p>
+<hr>
+<h2>startEntity</h2>
+<p>
+<code>public void <strong>startEntity</strong>(java.lang.String name)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>name</code>
+</p>
+<hr>
+<h2>warning</h2>
+<p>
+<code>public void <strong>warning</strong>(org.xml.sax.SAXParseException e)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>e</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>org.xml.sax.SAXException</code>
+</p>
<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.core.internal.encoding</strong></font>
@@ -5037,7 +11026,7 @@ extends AbstractDocumentLoader</pre>This class reads an XSL file and creates an
</td>
</tr>
<tr>
-<td><code><strong>XSLDocumentLoader()</strong></code></td>
+<td><code><strong>XSLDocumentLoader</strong>()</code></td>
</tr>
</table>
<br>
@@ -5085,6 +11074,90 @@ extends AbstractDocumentLoader</pre>This class reads an XSL file and creates an
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>XSLDocumentLoader</h2>
+<p>
+<code>public <strong>XSLDocumentLoader</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getDefaultDocumentPartitioner</h2>
+<p>
+<code>public IDocumentPartitioner <strong>getDefaultDocumentPartitioner</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>IDocumentPartitioner</code>
+</p>
+<hr>
+<h2>getDocumentEncodingDetector</h2>
+<p>
+<code>public IDocumentCharsetDetector <strong>getDocumentEncodingDetector</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>IDocumentCharsetDetector</code>
+</p>
+<hr>
+<h2>getParser</h2>
+<p>
+<code>public RegionParser <strong>getParser</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>RegionParser</code>
+</p>
+<hr>
+<h2>getSpecDefaultEncoding</h2>
+<p>
+<code>protected java.lang.String <strong>getSpecDefaultEncoding</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
+<h2>newEncodedDocument</h2>
+<p>
+<code>protected IEncodedDocument <strong>newEncodedDocument</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>IEncodedDocument</code>
+</p>
+<hr>
+<h2>newInstance</h2>
+<p>
+<code>public IDocumentLoader <strong>newInstance</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>IDocumentLoader</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.core.internal.modelhandler</strong></font>
</p>
@@ -5121,7 +11194,7 @@ extends ModelHandlerForXML</pre>Provides generic XML model handling. It is also
</td>
</tr>
<tr>
-<td><code><strong>ModelHandlerForXSL()</strong></code></td>
+<td><code><strong>ModelHandlerForXSL</strong>()</code></td>
</tr>
</table>
<br>
@@ -5151,6 +11224,80 @@ extends ModelHandlerForXML</pre>Provides generic XML model handling. It is also
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>AssociatedContentTypeID</h2>
+<p>
+<code>package-private static java.lang.String <strong>AssociatedContentTypeID</strong></code>
+</p>
+<table>
+<tr>
+<td>Needs to match what's in plugin registry. In fact, can be overwritten
+ at run time with what's in registry! (so should never be 'final')</td>
+</tr>
+</table>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>ModelHandlerForXSL</h2>
+<p>
+<code>public <strong>ModelHandlerForXSL</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getDocumentLoader</h2>
+<p>
+<code>public IDocumentLoader <strong>getDocumentLoader</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>IDocumentLoader</code>
+</p>
+<hr>
+<h2>getEncodingDetector</h2>
+<p>
+<code>public IDocumentCharsetDetector <strong>getEncodingDetector</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>IDocumentCharsetDetector</code>
+</p>
+<hr>
+<h2>getModelLoader</h2>
+<p>
+<code>public IModelLoader <strong>getModelLoader</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>IModelLoader</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.core.internal.modelhandler</strong></font>
</p>
@@ -5170,7 +11317,7 @@ extends XMLModelLoader</pre>This class reads an XML file and creates an XML Stru
</td>
</tr>
<tr>
-<td><code><strong>XSLModelLoader()</strong></code></td>
+<td><code><strong>XSLModelLoader</strong>()</code></td>
</tr>
</table>
<br>
@@ -5206,6 +11353,70 @@ extends XMLModelLoader</pre>This class reads an XML file and creates an XML Stru
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>XSLModelLoader</h2>
+<p>
+<code>public <strong>XSLModelLoader</strong>()</code>
+</p>
+<p>XMLLoader constructor comment.</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getDocumentLoader</h2>
+<p>
+<code>public IDocumentLoader <strong>getDocumentLoader</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>IDocumentLoader</code>
+</p>
+<hr>
+<h2>newInstance</h2>
+<p>
+<code>public IModelLoader <strong>newInstance</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>IModelLoader</code>
+</p>
+<hr>
+<h2>newModel</h2>
+<p>
+<code>public IStructuredModel <strong>newModel</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>IStructuredModel</code>
+</p>
+<hr>
+<h2>preLoadAdapt</h2>
+<p>
+<code>protected void <strong>preLoadAdapt</strong>(IStructuredModel structuredModel)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>structuredModel</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.core.internal.parser</strong></font>
</p>
@@ -5226,7 +11437,7 @@ extends XMLSourceParser</pre>
</td>
</tr>
<tr>
-<td><code><strong>XSLSourceParser()</strong></code></td>
+<td><code><strong>XSLSourceParser</strong>()</code></td>
</tr>
</table>
<br>
@@ -5243,19 +11454,73 @@ extends XMLSourceParser</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>setTokenizer(BlockTokenizer newTokenizer)</code>
+<td width="20%" align="right"><code>protected IStructuredDocumentRegion</code></td><td width="" align="left"><code>parseNodes()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected IStructuredDocumentRegion</code></td><td width="" align="left"><code>parseNodes()</code>
+<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>setTokenizer(BlockTokenizer newTokenizer)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>XSLSourceParser</h2>
+<p>
+<code>public <strong>XSLSourceParser</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>newInstance</h2>
+<p>
+<code>public RegionParser <strong>newInstance</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>RegionParser</code>
+</p>
+<hr>
+<h2>parseNodes</h2>
+<p>
+<code>protected IStructuredDocumentRegion <strong>parseNodes</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>IStructuredDocumentRegion</code>
+</p>
+<hr>
+<h2>setTokenizer</h2>
+<p>
+<code>protected void <strong>setTokenizer</strong>(BlockTokenizer newTokenizer)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>newTokenizer</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.core.internal.parser.regions</strong></font>
</p>
@@ -5276,14 +11541,14 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr>
-<td><code><strong>XPathSeparatorRegion()</strong></code></td>
+<td><code><strong>XPathSeparatorRegion</strong>()</code></td>
</tr>
<tr>
-<td><code><strong>XPathSeparatorRegion(int start
+<td><code><strong>XPathSeparatorRegion</strong>(int start
,
int textLength
,
- int length)</strong></code></td>
+ int length)</code></td>
</tr>
</table>
<br>
@@ -5375,6 +11640,184 @@ extends java.lang.Object</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>XPathSeparatorRegion</h2>
+<p>
+<code>public <strong>XPathSeparatorRegion</strong>()</code>
+</p>
+<p></p>
+<hr>
+<h2>XPathSeparatorRegion</h2>
+<p>
+<code>public <strong>XPathSeparatorRegion</strong>(int start
+ ,
+ int textLength
+ ,
+ int length)</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>adjustLength</h2>
+<p>
+<code>public void <strong>adjustLength</strong>(int i)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>i</code>
+</p>
+<hr>
+<h2>adjustStart</h2>
+<p>
+<code>public void <strong>adjustStart</strong>(int i)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>i</code>
+</p>
+<hr>
+<h2>adjustTextLength</h2>
+<p>
+<code>public void <strong>adjustTextLength</strong>(int i)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>i</code>
+</p>
+<hr>
+<h2>equatePositions</h2>
+<p>
+<code>public void <strong>equatePositions</strong>(ITextRegion region)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>region</code>
+</p>
+<hr>
+<h2>getEnd</h2>
+<p>
+<code>public int <strong>getEnd</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>int</code>
+</p>
+<hr>
+<h2>getLength</h2>
+<p>
+<code>public int <strong>getLength</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>int</code>
+</p>
+<hr>
+<h2>getStart</h2>
+<p>
+<code>public int <strong>getStart</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>int</code>
+</p>
+<hr>
+<h2>getTextEnd</h2>
+<p>
+<code>public int <strong>getTextEnd</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>int</code>
+</p>
+<hr>
+<h2>getTextLength</h2>
+<p>
+<code>public int <strong>getTextLength</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>int</code>
+</p>
+<hr>
+<h2>getType</h2>
+<p>
+<code>public java.lang.String <strong>getType</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
+<h2>toString</h2>
+<p>
+<code>public java.lang.String <strong>toString</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
+<h2>updateRegion</h2>
+<p>
+<code>public StructuredDocumentEvent <strong>updateRegion</strong>(java.lang.Object requester
+ ,
+ IStructuredDocumentRegion parent
+ ,
+ java.lang.String changes
+ ,
+ int requestStart
+ ,
+ int lengthToReplace)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>requester</code>
+</p>
+<p>
+<code>parent</code>
+</p>
+<p>
+<code>changes</code>
+</p>
+<p>
+<code>requestStart</code>
+</p>
+<p>
+<code>lengthToReplace</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>StructuredDocumentEvent</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.core.internal.regions</strong></font>
</p>
@@ -5419,25 +11862,25 @@ extends </pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>XPATH_SEPARATOR_DIV</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>XPATH_FUNCTION_NAME</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>XPATH_FUNCTION_PARAMETERS_OPEN</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>XPATH_FUNCTION_PARAMETERS_CLOSE</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>XPATH_FUNCTION_PARAMETERS_CLOSE</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>XPATH_FUNCTION_PARAMETERS_OPEN</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>XPATH_FUNCTION_NAME</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>XPATH_SEPARATOR_DIV</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@@ -5445,6 +11888,55 @@ extends </pre>
</table>
<br>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>BLOCK_TEXT</h2>
+<p>
+<code>public static java.lang.String <strong>BLOCK_TEXT</strong></code>
+</p>
+<hr>
+<h2>UNDEFINED</h2>
+<p>
+<code>public static java.lang.String <strong>UNDEFINED</strong></code>
+</p>
+<hr>
+<h2>WHITE_SPACE</h2>
+<p>
+<code>public static java.lang.String <strong>WHITE_SPACE</strong></code>
+</p>
+<hr>
+<h2>XPATH_CONTENT</h2>
+<p>
+<code>public static java.lang.String <strong>XPATH_CONTENT</strong></code>
+</p>
+<hr>
+<h2>XPATH_FUNCTION_NAME</h2>
+<p>
+<code>public static java.lang.String <strong>XPATH_FUNCTION_NAME</strong></code>
+</p>
+<hr>
+<h2>XPATH_FUNCTION_PARAMETERS_CLOSE</h2>
+<p>
+<code>public static java.lang.String <strong>XPATH_FUNCTION_PARAMETERS_CLOSE</strong></code>
+</p>
+<hr>
+<h2>XPATH_FUNCTION_PARAMETERS_OPEN</h2>
+<p>
+<code>public static java.lang.String <strong>XPATH_FUNCTION_PARAMETERS_OPEN</strong></code>
+</p>
+<hr>
+<h2>XPATH_SEPARATOR_DIV</h2>
+<p>
+<code>public static java.lang.String <strong>XPATH_SEPARATOR_DIV</strong></code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.core.internal.regions</strong></font>
</p>
@@ -5465,7 +11957,7 @@ extends XMLParserRegionFactory</pre>
</td>
</tr>
<tr>
-<td><code><strong>XSLParserRegionFactory()</strong></code></td>
+<td><code><strong>XSLParserRegionFactory</strong>()</code></td>
</tr>
</table>
<br>
@@ -5477,6 +11969,21 @@ extends XMLParserRegionFactory</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>XSLParserRegionFactory</h2>
+<p>
+<code>public <strong>XSLParserRegionFactory</strong>()</code>
+</p>
+<p></p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.core.internal.text</strong></font>
</p>
@@ -5507,6 +12014,20 @@ extends </pre>This interface is not intended to be implemented.
</table>
<br>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>XSL_XPATH</h2>
+<p>
+<code>public static java.lang.String <strong>XSL_XPATH</strong></code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.core.internal.text.rules</strong></font>
</p>
@@ -5528,7 +12049,7 @@ extends StructuredTextPartitionerForXML</pre>Contains information specific to se
</td>
</tr>
<tr>
-<td><code><strong>StructuredTextPartitionerForXSL()</strong></code></td>
+<td><code><strong>StructuredTextPartitionerForXSL</strong>()</code></td>
</tr>
</table>
<br>
@@ -5539,15 +12060,15 @@ extends StructuredTextPartitionerForXML</pre>Contains information specific to se
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getPartitionType(ITextRegion region
- ,
- int offset)</code>
+<td width="20%" align="right"><code>public static java.lang.String[]</code></td><td width="" align="left"><code>getConfiguredContentTypes()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String[]</code></td><td width="" align="left"><code>getConfiguredContentTypes()</code>
+<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getPartitionType(ITextRegion region
+ ,
+ int offset)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@@ -5560,6 +12081,71 @@ extends StructuredTextPartitionerForXML</pre>Contains information specific to se
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>StructuredTextPartitionerForXSL</h2>
+<p>
+<code>public <strong>StructuredTextPartitionerForXSL</strong>()</code>
+</p>
+<p>The StructuredTextPartitionerForXSL adds the necessary
+ Partition types to help Identify potential XPath areas.
+ This is also used for Line Styling and Content Assistance.</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getConfiguredContentTypes</h2>
+<p>
+<code>public java.lang.String[] <strong>getConfiguredContentTypes</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String[]</code>
+</p>
+<hr>
+<h2>getPartitionType</h2>
+<p>
+<code>public java.lang.String <strong>getPartitionType</strong>(ITextRegion region
+ ,
+ int offset)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>region</code>
+</p>
+<p>
+<code>offset</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
+<h2>newInstance</h2>
+<p>
+<code>public IDocumentPartitioner <strong>newInstance</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>IDocumentPartitioner</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.core.internal.xpath.parser</strong></font>
</p>
@@ -5580,217 +12166,217 @@ extends Lexer</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>LT</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>AT</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>STAR</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>COLON</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>DOUBLE_SLASH</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>COMMA</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>DOLLAR_SIGN</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>DIGIT</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>MOD</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>DIV</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>KW_AND</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>DOLLAR_SIGN</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>LEFT_BRACKET</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>DOT</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>GTE</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>DOT_DOT</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>NUMBER</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>DOUBLE_COLON</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>LITERAL</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>DOUBLE_QUOTE_STRING</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>EQUALS</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>DOUBLE_SLASH</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>MINUS</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>EOF</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>Tokens</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>EQUALS</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>EOF</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>GT</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>LTE</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>GTE</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>NOT_EQUALS</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>IDENTIFIER</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>COLON</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>KW_AND</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>AT</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>KW_OR</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>RIGHT_PAREN</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>LEFT_BRACKET</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>SINGLE_QUOTE_STRING</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>LEFT_PAREN</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>SLASH</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>LITERAL</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>WS</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>LT</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>DOUBLE_COLON</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>LTE</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>COMMA</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>MINUS</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>KW_OR</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>MOD</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>DOUBLE_QUOTE_STRING</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>NOT_EQUALS</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>IDENTIFIER</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>NUMBER</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>RIGHT_BRACKET</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>PIPE</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>LEFT_PAREN</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>PLUS</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>GT</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>RIGHT_BRACKET</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>PIPE</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>RIGHT_PAREN</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>PLUS</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>SINGLE_QUOTE_STRING</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>DIGIT</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>SLASH</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>DIV</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>STAR</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>DOT</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>Tokens</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>DOT_DOT</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>WS</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@@ -5804,10 +12390,10 @@ extends Lexer</pre>
</td>
</tr>
<tr>
-<td><code><strong>XPathParserLexer()</strong></code></td>
+<td><code><strong>XPathParserLexer</strong>()</code></td>
</tr>
<tr>
-<td><code><strong>XPathParserLexer(CharStream input)</strong></code></td>
+<td><code><strong>XPathParserLexer</strong>(CharStream input)</code></td>
</tr>
</table>
<br>
@@ -5824,205 +12410,764 @@ extends Lexer</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mWS()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mAT()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mDIGIT()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mCOLON()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mSINGLE_QUOTE_STRING()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mCOMMA()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mDOUBLE_QUOTE_STRING()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mDIGIT()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mLITERAL()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mDIV()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mNUMBER()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mDOLLAR_SIGN()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mIDENTIFIER()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mDOT()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mLEFT_PAREN()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mDOT_DOT()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mRIGHT_PAREN()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mDOUBLE_COLON()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mLEFT_BRACKET()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mDOUBLE_QUOTE_STRING()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mRIGHT_BRACKET()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mDOUBLE_SLASH()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mPIPE()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mEQUALS()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mDOT()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mGT()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mDOT_DOT()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mGTE()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mAT()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mIDENTIFIER()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mCOMMA()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mLEFT_BRACKET()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mDOUBLE_COLON()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mLEFT_PAREN()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mCOLON()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mLITERAL()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mSLASH()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mLT()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mDOUBLE_SLASH()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mLTE()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mDOLLAR_SIGN()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mMINUS()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mPLUS()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mMOD()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mMINUS()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mNOT_EQUALS()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mEQUALS()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mNUMBER()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mNOT_EQUALS()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mPIPE()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mLT()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mPLUS()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mLTE()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mRIGHT_BRACKET()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mGT()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mRIGHT_PAREN()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mGTE()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mSINGLE_QUOTE_STRING()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mSTAR()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mSLASH()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mDIV()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mSTAR()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mMOD()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mTokens()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mTokens()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mWS()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>AT</h2>
+<p>
+<code>public static int <strong>AT</strong></code>
+</p>
+<hr>
+<h2>COLON</h2>
+<p>
+<code>public static int <strong>COLON</strong></code>
+</p>
+<hr>
+<h2>COMMA</h2>
+<p>
+<code>public static int <strong>COMMA</strong></code>
+</p>
+<hr>
+<h2>DIGIT</h2>
+<p>
+<code>public static int <strong>DIGIT</strong></code>
+</p>
+<hr>
+<h2>DIV</h2>
+<p>
+<code>public static int <strong>DIV</strong></code>
+</p>
+<hr>
+<h2>DOLLAR_SIGN</h2>
+<p>
+<code>public static int <strong>DOLLAR_SIGN</strong></code>
+</p>
+<hr>
+<h2>DOT</h2>
+<p>
+<code>public static int <strong>DOT</strong></code>
+</p>
+<hr>
+<h2>DOT_DOT</h2>
+<p>
+<code>public static int <strong>DOT_DOT</strong></code>
+</p>
+<hr>
+<h2>DOUBLE_COLON</h2>
+<p>
+<code>public static int <strong>DOUBLE_COLON</strong></code>
+</p>
+<hr>
+<h2>DOUBLE_QUOTE_STRING</h2>
+<p>
+<code>public static int <strong>DOUBLE_QUOTE_STRING</strong></code>
+</p>
+<hr>
+<h2>DOUBLE_SLASH</h2>
+<p>
+<code>public static int <strong>DOUBLE_SLASH</strong></code>
+</p>
+<hr>
+<h2>EOF</h2>
+<p>
+<code>public static int <strong>EOF</strong></code>
+</p>
+<hr>
+<h2>EQUALS</h2>
+<p>
+<code>public static int <strong>EQUALS</strong></code>
+</p>
+<hr>
+<h2>GT</h2>
+<p>
+<code>public static int <strong>GT</strong></code>
+</p>
+<hr>
+<h2>GTE</h2>
+<p>
+<code>public static int <strong>GTE</strong></code>
+</p>
+<hr>
+<h2>IDENTIFIER</h2>
+<p>
+<code>public static int <strong>IDENTIFIER</strong></code>
+</p>
+<hr>
+<h2>KW_AND</h2>
+<p>
+<code>public static int <strong>KW_AND</strong></code>
+</p>
+<hr>
+<h2>KW_OR</h2>
+<p>
+<code>public static int <strong>KW_OR</strong></code>
+</p>
+<hr>
+<h2>LEFT_BRACKET</h2>
+<p>
+<code>public static int <strong>LEFT_BRACKET</strong></code>
+</p>
+<hr>
+<h2>LEFT_PAREN</h2>
+<p>
+<code>public static int <strong>LEFT_PAREN</strong></code>
+</p>
+<hr>
+<h2>LITERAL</h2>
+<p>
+<code>public static int <strong>LITERAL</strong></code>
+</p>
+<hr>
+<h2>LT</h2>
+<p>
+<code>public static int <strong>LT</strong></code>
+</p>
+<hr>
+<h2>LTE</h2>
+<p>
+<code>public static int <strong>LTE</strong></code>
+</p>
+<hr>
+<h2>MINUS</h2>
+<p>
+<code>public static int <strong>MINUS</strong></code>
+</p>
+<hr>
+<h2>MOD</h2>
+<p>
+<code>public static int <strong>MOD</strong></code>
+</p>
+<hr>
+<h2>NOT_EQUALS</h2>
+<p>
+<code>public static int <strong>NOT_EQUALS</strong></code>
+</p>
+<hr>
+<h2>NUMBER</h2>
+<p>
+<code>public static int <strong>NUMBER</strong></code>
+</p>
+<hr>
+<h2>PIPE</h2>
+<p>
+<code>public static int <strong>PIPE</strong></code>
+</p>
+<hr>
+<h2>PLUS</h2>
+<p>
+<code>public static int <strong>PLUS</strong></code>
+</p>
+<hr>
+<h2>RIGHT_BRACKET</h2>
+<p>
+<code>public static int <strong>RIGHT_BRACKET</strong></code>
+</p>
+<hr>
+<h2>RIGHT_PAREN</h2>
+<p>
+<code>public static int <strong>RIGHT_PAREN</strong></code>
+</p>
+<hr>
+<h2>SINGLE_QUOTE_STRING</h2>
+<p>
+<code>public static int <strong>SINGLE_QUOTE_STRING</strong></code>
+</p>
+<hr>
+<h2>SLASH</h2>
+<p>
+<code>public static int <strong>SLASH</strong></code>
+</p>
+<hr>
+<h2>STAR</h2>
+<p>
+<code>public static int <strong>STAR</strong></code>
+</p>
+<hr>
+<h2>Tokens</h2>
+<p>
+<code>public static int <strong>Tokens</strong></code>
+</p>
+<hr>
+<h2>WS</h2>
+<p>
+<code>public static int <strong>WS</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>XPathParserLexer</h2>
+<p>
+<code>public <strong>XPathParserLexer</strong>()</code>
+</p>
+<p></p>
+<hr>
+<h2>XPathParserLexer</h2>
+<p>
+<code>public <strong>XPathParserLexer</strong>(CharStream input)</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getGrammarFileName</h2>
+<p>
+<code>public java.lang.String <strong>getGrammarFileName</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
+<h2>mAT</h2>
+<p>
+<code>public void <strong>mAT</strong>()</code>
+</p>
+<p></p>
+<h3>Throws:</h3>
+<p>
+<code>RecognitionException</code>
+</p>
+<hr>
+<h2>mCOLON</h2>
+<p>
+<code>public void <strong>mCOLON</strong>()</code>
+</p>
+<p></p>
+<h3>Throws:</h3>
+<p>
+<code>RecognitionException</code>
+</p>
+<hr>
+<h2>mCOMMA</h2>
+<p>
+<code>public void <strong>mCOMMA</strong>()</code>
+</p>
+<p></p>
+<h3>Throws:</h3>
+<p>
+<code>RecognitionException</code>
+</p>
+<hr>
+<h2>mDIGIT</h2>
+<p>
+<code>public void <strong>mDIGIT</strong>()</code>
+</p>
+<p></p>
+<h3>Throws:</h3>
+<p>
+<code>RecognitionException</code>
+</p>
+<hr>
+<h2>mDIV</h2>
+<p>
+<code>public void <strong>mDIV</strong>()</code>
+</p>
+<p></p>
+<h3>Throws:</h3>
+<p>
+<code>RecognitionException</code>
+</p>
+<hr>
+<h2>mDOLLAR_SIGN</h2>
+<p>
+<code>public void <strong>mDOLLAR_SIGN</strong>()</code>
+</p>
+<p></p>
+<h3>Throws:</h3>
+<p>
+<code>RecognitionException</code>
+</p>
+<hr>
+<h2>mDOT</h2>
+<p>
+<code>public void <strong>mDOT</strong>()</code>
+</p>
+<p></p>
+<h3>Throws:</h3>
+<p>
+<code>RecognitionException</code>
+</p>
+<hr>
+<h2>mDOT_DOT</h2>
+<p>
+<code>public void <strong>mDOT_DOT</strong>()</code>
+</p>
+<p></p>
+<h3>Throws:</h3>
+<p>
+<code>RecognitionException</code>
+</p>
+<hr>
+<h2>mDOUBLE_COLON</h2>
+<p>
+<code>public void <strong>mDOUBLE_COLON</strong>()</code>
+</p>
+<p></p>
+<h3>Throws:</h3>
+<p>
+<code>RecognitionException</code>
+</p>
+<hr>
+<h2>mDOUBLE_QUOTE_STRING</h2>
+<p>
+<code>public void <strong>mDOUBLE_QUOTE_STRING</strong>()</code>
+</p>
+<p></p>
+<h3>Throws:</h3>
+<p>
+<code>RecognitionException</code>
+</p>
+<hr>
+<h2>mDOUBLE_SLASH</h2>
+<p>
+<code>public void <strong>mDOUBLE_SLASH</strong>()</code>
+</p>
+<p></p>
+<h3>Throws:</h3>
+<p>
+<code>RecognitionException</code>
+</p>
+<hr>
+<h2>mEQUALS</h2>
+<p>
+<code>public void <strong>mEQUALS</strong>()</code>
+</p>
+<p></p>
+<h3>Throws:</h3>
+<p>
+<code>RecognitionException</code>
+</p>
+<hr>
+<h2>mGT</h2>
+<p>
+<code>public void <strong>mGT</strong>()</code>
+</p>
+<p></p>
+<h3>Throws:</h3>
+<p>
+<code>RecognitionException</code>
+</p>
+<hr>
+<h2>mGTE</h2>
+<p>
+<code>public void <strong>mGTE</strong>()</code>
+</p>
+<p></p>
+<h3>Throws:</h3>
+<p>
+<code>RecognitionException</code>
+</p>
+<hr>
+<h2>mIDENTIFIER</h2>
+<p>
+<code>public void <strong>mIDENTIFIER</strong>()</code>
+</p>
+<p></p>
+<h3>Throws:</h3>
+<p>
+<code>RecognitionException</code>
+</p>
+<hr>
+<h2>mLEFT_BRACKET</h2>
+<p>
+<code>public void <strong>mLEFT_BRACKET</strong>()</code>
+</p>
+<p></p>
+<h3>Throws:</h3>
+<p>
+<code>RecognitionException</code>
+</p>
+<hr>
+<h2>mLEFT_PAREN</h2>
+<p>
+<code>public void <strong>mLEFT_PAREN</strong>()</code>
+</p>
+<p></p>
+<h3>Throws:</h3>
+<p>
+<code>RecognitionException</code>
+</p>
+<hr>
+<h2>mLITERAL</h2>
+<p>
+<code>public void <strong>mLITERAL</strong>()</code>
+</p>
+<p></p>
+<h3>Throws:</h3>
+<p>
+<code>RecognitionException</code>
+</p>
+<hr>
+<h2>mLT</h2>
+<p>
+<code>public void <strong>mLT</strong>()</code>
+</p>
+<p></p>
+<h3>Throws:</h3>
+<p>
+<code>RecognitionException</code>
+</p>
+<hr>
+<h2>mLTE</h2>
+<p>
+<code>public void <strong>mLTE</strong>()</code>
+</p>
+<p></p>
+<h3>Throws:</h3>
+<p>
+<code>RecognitionException</code>
+</p>
+<hr>
+<h2>mMINUS</h2>
+<p>
+<code>public void <strong>mMINUS</strong>()</code>
+</p>
+<p></p>
+<h3>Throws:</h3>
+<p>
+<code>RecognitionException</code>
+</p>
+<hr>
+<h2>mMOD</h2>
+<p>
+<code>public void <strong>mMOD</strong>()</code>
+</p>
+<p></p>
+<h3>Throws:</h3>
+<p>
+<code>RecognitionException</code>
+</p>
+<hr>
+<h2>mNOT_EQUALS</h2>
+<p>
+<code>public void <strong>mNOT_EQUALS</strong>()</code>
+</p>
+<p></p>
+<h3>Throws:</h3>
+<p>
+<code>RecognitionException</code>
+</p>
+<hr>
+<h2>mNUMBER</h2>
+<p>
+<code>public void <strong>mNUMBER</strong>()</code>
+</p>
+<p></p>
+<h3>Throws:</h3>
+<p>
+<code>RecognitionException</code>
+</p>
+<hr>
+<h2>mPIPE</h2>
+<p>
+<code>public void <strong>mPIPE</strong>()</code>
+</p>
+<p></p>
+<h3>Throws:</h3>
+<p>
+<code>RecognitionException</code>
+</p>
+<hr>
+<h2>mPLUS</h2>
+<p>
+<code>public void <strong>mPLUS</strong>()</code>
+</p>
+<p></p>
+<h3>Throws:</h3>
+<p>
+<code>RecognitionException</code>
+</p>
+<hr>
+<h2>mRIGHT_BRACKET</h2>
+<p>
+<code>public void <strong>mRIGHT_BRACKET</strong>()</code>
+</p>
+<p></p>
+<h3>Throws:</h3>
+<p>
+<code>RecognitionException</code>
+</p>
+<hr>
+<h2>mRIGHT_PAREN</h2>
+<p>
+<code>public void <strong>mRIGHT_PAREN</strong>()</code>
+</p>
+<p></p>
+<h3>Throws:</h3>
+<p>
+<code>RecognitionException</code>
+</p>
+<hr>
+<h2>mSINGLE_QUOTE_STRING</h2>
+<p>
+<code>public void <strong>mSINGLE_QUOTE_STRING</strong>()</code>
+</p>
+<p></p>
+<h3>Throws:</h3>
+<p>
+<code>RecognitionException</code>
+</p>
+<hr>
+<h2>mSLASH</h2>
+<p>
+<code>public void <strong>mSLASH</strong>()</code>
+</p>
+<p></p>
+<h3>Throws:</h3>
+<p>
+<code>RecognitionException</code>
+</p>
+<hr>
+<h2>mSTAR</h2>
+<p>
+<code>public void <strong>mSTAR</strong>()</code>
+</p>
+<p></p>
+<h3>Throws:</h3>
+<p>
+<code>RecognitionException</code>
+</p>
+<hr>
+<h2>mTokens</h2>
+<p>
+<code>public void <strong>mTokens</strong>()</code>
+</p>
+<p></p>
+<h3>Throws:</h3>
+<p>
+<code>RecognitionException</code>
+</p>
+<hr>
+<h2>mWS</h2>
+<p>
+<code>public void <strong>mWS</strong>()</code>
+</p>
+<p></p>
+<h3>Throws:</h3>
+<p>
+<code>RecognitionException</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.core.internal.xpath.parser</strong></font>
</p>
@@ -6043,217 +13188,217 @@ extends Lexer</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>LT</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>AT</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>STAR</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>COLON</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>DOUBLE_SLASH</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>COMMA</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>DOLLAR_SIGN</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>DIGIT</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>MOD</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>DIV</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>KW_AND</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>DOLLAR_SIGN</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>LEFT_BRACKET</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>DOT</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>GTE</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>DOT_DOT</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>NUMBER</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>DOUBLE_COLON</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>LITERAL</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>DOUBLE_QUOTE_STRING</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>EQUALS</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>DOUBLE_SLASH</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>MINUS</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>EOF</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>Tokens</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>EQUALS</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>EOF</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>GT</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>LTE</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>GTE</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>NOT_EQUALS</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>IDENTIFIER</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>COLON</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>KW_AND</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>AT</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>KW_OR</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>RIGHT_PAREN</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>LEFT_BRACKET</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>SINGLE_QUOTE_STRING</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>LEFT_PAREN</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>SLASH</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>LITERAL</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>WS</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>LT</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>DOUBLE_COLON</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>LTE</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>KW_OR</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>MINUS</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>COMMA</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>MOD</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>DOUBLE_QUOTE_STRING</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>NOT_EQUALS</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>IDENTIFIER</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>NUMBER</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>RIGHT_BRACKET</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>PIPE</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>LEFT_PAREN</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>PLUS</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>GT</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>RIGHT_BRACKET</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>PIPE</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>RIGHT_PAREN</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>PLUS</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>SINGLE_QUOTE_STRING</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>DIGIT</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>SLASH</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>DIV</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>STAR</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>DOT</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>Tokens</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>DOT_DOT</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>WS</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@@ -6267,10 +13412,10 @@ extends Lexer</pre>
</td>
</tr>
<tr>
-<td><code><strong>xpathLexer()</strong></code></td>
+<td><code><strong>xpathLexer</strong>()</code></td>
</tr>
<tr>
-<td><code><strong>xpathLexer(CharStream input)</strong></code></td>
+<td><code><strong>xpathLexer</strong>(CharStream input)</code></td>
</tr>
</table>
<br>
@@ -6287,217 +13432,796 @@ extends Lexer</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mKW_OR()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mAT()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mKW_AND()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mCOLON()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mDIV()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mCOMMA()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mMOD()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mDIGIT()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mWS()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mDIV()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mDIGIT()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mDOLLAR_SIGN()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mSINGLE_QUOTE_STRING()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mDOT()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mDOUBLE_QUOTE_STRING()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mDOT_DOT()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mLITERAL()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mDOUBLE_COLON()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mNUMBER()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mDOUBLE_QUOTE_STRING()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mIDENTIFIER()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mDOUBLE_SLASH()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mLEFT_PAREN()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mEQUALS()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mRIGHT_PAREN()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mGT()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mLEFT_BRACKET()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mGTE()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mRIGHT_BRACKET()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mIDENTIFIER()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mPIPE()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mKW_AND()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mDOT()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mKW_OR()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mDOT_DOT()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mLEFT_BRACKET()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mAT()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mLEFT_PAREN()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mCOMMA()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mLITERAL()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mDOUBLE_COLON()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mLT()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mCOLON()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mLTE()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mSLASH()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mMINUS()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mDOUBLE_SLASH()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mMOD()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mDOLLAR_SIGN()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mNOT_EQUALS()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mPLUS()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mNUMBER()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mMINUS()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mPIPE()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mEQUALS()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mPLUS()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mNOT_EQUALS()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mRIGHT_BRACKET()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mLT()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mRIGHT_PAREN()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mLTE()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mSINGLE_QUOTE_STRING()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mGT()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mSLASH()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mGTE()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mSTAR()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mSTAR()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mTokens()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mTokens()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>mWS()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>AT</h2>
+<p>
+<code>public static int <strong>AT</strong></code>
+</p>
+<hr>
+<h2>COLON</h2>
+<p>
+<code>public static int <strong>COLON</strong></code>
+</p>
+<hr>
+<h2>COMMA</h2>
+<p>
+<code>public static int <strong>COMMA</strong></code>
+</p>
+<hr>
+<h2>DIGIT</h2>
+<p>
+<code>public static int <strong>DIGIT</strong></code>
+</p>
+<hr>
+<h2>DIV</h2>
+<p>
+<code>public static int <strong>DIV</strong></code>
+</p>
+<hr>
+<h2>DOLLAR_SIGN</h2>
+<p>
+<code>public static int <strong>DOLLAR_SIGN</strong></code>
+</p>
+<hr>
+<h2>DOT</h2>
+<p>
+<code>public static int <strong>DOT</strong></code>
+</p>
+<hr>
+<h2>DOT_DOT</h2>
+<p>
+<code>public static int <strong>DOT_DOT</strong></code>
+</p>
+<hr>
+<h2>DOUBLE_COLON</h2>
+<p>
+<code>public static int <strong>DOUBLE_COLON</strong></code>
+</p>
+<hr>
+<h2>DOUBLE_QUOTE_STRING</h2>
+<p>
+<code>public static int <strong>DOUBLE_QUOTE_STRING</strong></code>
+</p>
+<hr>
+<h2>DOUBLE_SLASH</h2>
+<p>
+<code>public static int <strong>DOUBLE_SLASH</strong></code>
+</p>
+<hr>
+<h2>EOF</h2>
+<p>
+<code>public static int <strong>EOF</strong></code>
+</p>
+<hr>
+<h2>EQUALS</h2>
+<p>
+<code>public static int <strong>EQUALS</strong></code>
+</p>
+<hr>
+<h2>GT</h2>
+<p>
+<code>public static int <strong>GT</strong></code>
+</p>
+<hr>
+<h2>GTE</h2>
+<p>
+<code>public static int <strong>GTE</strong></code>
+</p>
+<hr>
+<h2>IDENTIFIER</h2>
+<p>
+<code>public static int <strong>IDENTIFIER</strong></code>
+</p>
+<hr>
+<h2>KW_AND</h2>
+<p>
+<code>public static int <strong>KW_AND</strong></code>
+</p>
+<hr>
+<h2>KW_OR</h2>
+<p>
+<code>public static int <strong>KW_OR</strong></code>
+</p>
+<hr>
+<h2>LEFT_BRACKET</h2>
+<p>
+<code>public static int <strong>LEFT_BRACKET</strong></code>
+</p>
+<hr>
+<h2>LEFT_PAREN</h2>
+<p>
+<code>public static int <strong>LEFT_PAREN</strong></code>
+</p>
+<hr>
+<h2>LITERAL</h2>
+<p>
+<code>public static int <strong>LITERAL</strong></code>
+</p>
+<hr>
+<h2>LT</h2>
+<p>
+<code>public static int <strong>LT</strong></code>
+</p>
+<hr>
+<h2>LTE</h2>
+<p>
+<code>public static int <strong>LTE</strong></code>
+</p>
+<hr>
+<h2>MINUS</h2>
+<p>
+<code>public static int <strong>MINUS</strong></code>
+</p>
+<hr>
+<h2>MOD</h2>
+<p>
+<code>public static int <strong>MOD</strong></code>
+</p>
+<hr>
+<h2>NOT_EQUALS</h2>
+<p>
+<code>public static int <strong>NOT_EQUALS</strong></code>
+</p>
+<hr>
+<h2>NUMBER</h2>
+<p>
+<code>public static int <strong>NUMBER</strong></code>
+</p>
+<hr>
+<h2>PIPE</h2>
+<p>
+<code>public static int <strong>PIPE</strong></code>
+</p>
+<hr>
+<h2>PLUS</h2>
+<p>
+<code>public static int <strong>PLUS</strong></code>
+</p>
+<hr>
+<h2>RIGHT_BRACKET</h2>
+<p>
+<code>public static int <strong>RIGHT_BRACKET</strong></code>
+</p>
+<hr>
+<h2>RIGHT_PAREN</h2>
+<p>
+<code>public static int <strong>RIGHT_PAREN</strong></code>
+</p>
+<hr>
+<h2>SINGLE_QUOTE_STRING</h2>
+<p>
+<code>public static int <strong>SINGLE_QUOTE_STRING</strong></code>
+</p>
+<hr>
+<h2>SLASH</h2>
+<p>
+<code>public static int <strong>SLASH</strong></code>
+</p>
+<hr>
+<h2>STAR</h2>
+<p>
+<code>public static int <strong>STAR</strong></code>
+</p>
+<hr>
+<h2>Tokens</h2>
+<p>
+<code>public static int <strong>Tokens</strong></code>
+</p>
+<hr>
+<h2>WS</h2>
+<p>
+<code>public static int <strong>WS</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>xpathLexer</h2>
+<p>
+<code>public <strong>xpathLexer</strong>()</code>
+</p>
+<p></p>
+<hr>
+<h2>xpathLexer</h2>
+<p>
+<code>public <strong>xpathLexer</strong>(CharStream input)</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getGrammarFileName</h2>
+<p>
+<code>public java.lang.String <strong>getGrammarFileName</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
+<h2>mAT</h2>
+<p>
+<code>public void <strong>mAT</strong>()</code>
+</p>
+<p></p>
+<h3>Throws:</h3>
+<p>
+<code>RecognitionException</code>
+</p>
+<hr>
+<h2>mCOLON</h2>
+<p>
+<code>public void <strong>mCOLON</strong>()</code>
+</p>
+<p></p>
+<h3>Throws:</h3>
+<p>
+<code>RecognitionException</code>
+</p>
+<hr>
+<h2>mCOMMA</h2>
+<p>
+<code>public void <strong>mCOMMA</strong>()</code>
+</p>
+<p></p>
+<h3>Throws:</h3>
+<p>
+<code>RecognitionException</code>
+</p>
+<hr>
+<h2>mDIGIT</h2>
+<p>
+<code>public void <strong>mDIGIT</strong>()</code>
+</p>
+<p></p>
+<h3>Throws:</h3>
+<p>
+<code>RecognitionException</code>
+</p>
+<hr>
+<h2>mDIV</h2>
+<p>
+<code>public void <strong>mDIV</strong>()</code>
+</p>
+<p></p>
+<h3>Throws:</h3>
+<p>
+<code>RecognitionException</code>
+</p>
+<hr>
+<h2>mDOLLAR_SIGN</h2>
+<p>
+<code>public void <strong>mDOLLAR_SIGN</strong>()</code>
+</p>
+<p></p>
+<h3>Throws:</h3>
+<p>
+<code>RecognitionException</code>
+</p>
+<hr>
+<h2>mDOT</h2>
+<p>
+<code>public void <strong>mDOT</strong>()</code>
+</p>
+<p></p>
+<h3>Throws:</h3>
+<p>
+<code>RecognitionException</code>
+</p>
+<hr>
+<h2>mDOT_DOT</h2>
+<p>
+<code>public void <strong>mDOT_DOT</strong>()</code>
+</p>
+<p></p>
+<h3>Throws:</h3>
+<p>
+<code>RecognitionException</code>
+</p>
+<hr>
+<h2>mDOUBLE_COLON</h2>
+<p>
+<code>public void <strong>mDOUBLE_COLON</strong>()</code>
+</p>
+<p></p>
+<h3>Throws:</h3>
+<p>
+<code>RecognitionException</code>
+</p>
+<hr>
+<h2>mDOUBLE_QUOTE_STRING</h2>
+<p>
+<code>public void <strong>mDOUBLE_QUOTE_STRING</strong>()</code>
+</p>
+<p></p>
+<h3>Throws:</h3>
+<p>
+<code>RecognitionException</code>
+</p>
+<hr>
+<h2>mDOUBLE_SLASH</h2>
+<p>
+<code>public void <strong>mDOUBLE_SLASH</strong>()</code>
+</p>
+<p></p>
+<h3>Throws:</h3>
+<p>
+<code>RecognitionException</code>
+</p>
+<hr>
+<h2>mEQUALS</h2>
+<p>
+<code>public void <strong>mEQUALS</strong>()</code>
+</p>
+<p></p>
+<h3>Throws:</h3>
+<p>
+<code>RecognitionException</code>
+</p>
+<hr>
+<h2>mGT</h2>
+<p>
+<code>public void <strong>mGT</strong>()</code>
+</p>
+<p></p>
+<h3>Throws:</h3>
+<p>
+<code>RecognitionException</code>
+</p>
+<hr>
+<h2>mGTE</h2>
+<p>
+<code>public void <strong>mGTE</strong>()</code>
+</p>
+<p></p>
+<h3>Throws:</h3>
+<p>
+<code>RecognitionException</code>
+</p>
+<hr>
+<h2>mIDENTIFIER</h2>
+<p>
+<code>public void <strong>mIDENTIFIER</strong>()</code>
+</p>
+<p></p>
+<h3>Throws:</h3>
+<p>
+<code>RecognitionException</code>
+</p>
+<hr>
+<h2>mKW_AND</h2>
+<p>
+<code>public void <strong>mKW_AND</strong>()</code>
+</p>
+<p></p>
+<h3>Throws:</h3>
+<p>
+<code>RecognitionException</code>
+</p>
+<hr>
+<h2>mKW_OR</h2>
+<p>
+<code>public void <strong>mKW_OR</strong>()</code>
+</p>
+<p></p>
+<h3>Throws:</h3>
+<p>
+<code>RecognitionException</code>
+</p>
+<hr>
+<h2>mLEFT_BRACKET</h2>
+<p>
+<code>public void <strong>mLEFT_BRACKET</strong>()</code>
+</p>
+<p></p>
+<h3>Throws:</h3>
+<p>
+<code>RecognitionException</code>
+</p>
+<hr>
+<h2>mLEFT_PAREN</h2>
+<p>
+<code>public void <strong>mLEFT_PAREN</strong>()</code>
+</p>
+<p></p>
+<h3>Throws:</h3>
+<p>
+<code>RecognitionException</code>
+</p>
+<hr>
+<h2>mLITERAL</h2>
+<p>
+<code>public void <strong>mLITERAL</strong>()</code>
+</p>
+<p></p>
+<h3>Throws:</h3>
+<p>
+<code>RecognitionException</code>
+</p>
+<hr>
+<h2>mLT</h2>
+<p>
+<code>public void <strong>mLT</strong>()</code>
+</p>
+<p></p>
+<h3>Throws:</h3>
+<p>
+<code>RecognitionException</code>
+</p>
+<hr>
+<h2>mLTE</h2>
+<p>
+<code>public void <strong>mLTE</strong>()</code>
+</p>
+<p></p>
+<h3>Throws:</h3>
+<p>
+<code>RecognitionException</code>
+</p>
+<hr>
+<h2>mMINUS</h2>
+<p>
+<code>public void <strong>mMINUS</strong>()</code>
+</p>
+<p></p>
+<h3>Throws:</h3>
+<p>
+<code>RecognitionException</code>
+</p>
+<hr>
+<h2>mMOD</h2>
+<p>
+<code>public void <strong>mMOD</strong>()</code>
+</p>
+<p></p>
+<h3>Throws:</h3>
+<p>
+<code>RecognitionException</code>
+</p>
+<hr>
+<h2>mNOT_EQUALS</h2>
+<p>
+<code>public void <strong>mNOT_EQUALS</strong>()</code>
+</p>
+<p></p>
+<h3>Throws:</h3>
+<p>
+<code>RecognitionException</code>
+</p>
+<hr>
+<h2>mNUMBER</h2>
+<p>
+<code>public void <strong>mNUMBER</strong>()</code>
+</p>
+<p></p>
+<h3>Throws:</h3>
+<p>
+<code>RecognitionException</code>
+</p>
+<hr>
+<h2>mPIPE</h2>
+<p>
+<code>public void <strong>mPIPE</strong>()</code>
+</p>
+<p></p>
+<h3>Throws:</h3>
+<p>
+<code>RecognitionException</code>
+</p>
+<hr>
+<h2>mPLUS</h2>
+<p>
+<code>public void <strong>mPLUS</strong>()</code>
+</p>
+<p></p>
+<h3>Throws:</h3>
+<p>
+<code>RecognitionException</code>
+</p>
+<hr>
+<h2>mRIGHT_BRACKET</h2>
+<p>
+<code>public void <strong>mRIGHT_BRACKET</strong>()</code>
+</p>
+<p></p>
+<h3>Throws:</h3>
+<p>
+<code>RecognitionException</code>
+</p>
+<hr>
+<h2>mRIGHT_PAREN</h2>
+<p>
+<code>public void <strong>mRIGHT_PAREN</strong>()</code>
+</p>
+<p></p>
+<h3>Throws:</h3>
+<p>
+<code>RecognitionException</code>
+</p>
+<hr>
+<h2>mSINGLE_QUOTE_STRING</h2>
+<p>
+<code>public void <strong>mSINGLE_QUOTE_STRING</strong>()</code>
+</p>
+<p></p>
+<h3>Throws:</h3>
+<p>
+<code>RecognitionException</code>
+</p>
+<hr>
+<h2>mSLASH</h2>
+<p>
+<code>public void <strong>mSLASH</strong>()</code>
+</p>
+<p></p>
+<h3>Throws:</h3>
+<p>
+<code>RecognitionException</code>
+</p>
+<hr>
+<h2>mSTAR</h2>
+<p>
+<code>public void <strong>mSTAR</strong>()</code>
+</p>
+<p></p>
+<h3>Throws:</h3>
+<p>
+<code>RecognitionException</code>
+</p>
+<hr>
+<h2>mTokens</h2>
+<p>
+<code>public void <strong>mTokens</strong>()</code>
+</p>
+<p></p>
+<h3>Throws:</h3>
+<p>
+<code>RecognitionException</code>
+</p>
+<hr>
+<h2>mWS</h2>
+<p>
+<code>public void <strong>mWS</strong>()</code>
+</p>
+<p></p>
+<h3>Throws:</h3>
+<p>
+<code>RecognitionException</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.core.internal.xpath.parser</strong></font>
</p>
@@ -6518,853 +14242,853 @@ extends DebugParser</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String[]</code></td><td width="80%" align="left"><code>tokenNames</code>
+<td width="20%" align="right"><code>protected DebugTreeAdaptor</code></td><td width="80%" align="left"><code>adaptor</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>LT</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>AT</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>DOUBLE_SLASH</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>COLON</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>STAR</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>COMMA</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>DOLLAR_SIGN</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>DIGIT</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>MOD</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>DIV</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>KW_AND</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>DOLLAR_SIGN</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>LEFT_BRACKET</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>DOT</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>GTE</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>DOT_DOT</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>NUMBER</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>DOUBLE_COLON</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>LITERAL</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>DOUBLE_QUOTE_STRING</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>EQUALS</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>DOUBLE_SLASH</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>MINUS</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>EOF</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>EOF</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>EQUALS</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>LTE</code>
+<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_abbr_step_in_step384</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>NOT_EQUALS</code>
+<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_absolute_location_path_in_location_path96</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>COLON</code>
+<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_absolute_location_path_in_path_expr857</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>AT</code>
+<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_absolute_location_path_in_path_expr908</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>RIGHT_PAREN</code>
+<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_additive_expr_in_relational_expr1105</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>SINGLE_QUOTE_STRING</code>
+<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_additive_expr_in_relational_expr1175</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>WS</code>
+<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_and_expr_in_or_expr964</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>SLASH</code>
+<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_and_expr_in_or_expr981</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>DOUBLE_QUOTE_STRING</code>
+<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_arg_list_in_function_call706</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>COMMA</code>
+<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_argument_in_arg_list727</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>KW_OR</code>
+<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_argument_in_arg_list737</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>DOUBLE_COLON</code>
+<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_AT_in_abbr_axis_specifier560</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>IDENTIFIER</code>
+<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_AT_in_axis476</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>RIGHT_BRACKET</code>
+<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_AT_in_synpred2243</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>LEFT_PAREN</code>
+<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_axis_in_step247</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>GT</code>
+<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_COLON_in_step289</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>PLUS</code>
+<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_COMMA_in_arg_list735</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>PIPE</code>
+<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_DIV_in_mult_expr1294</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>DIGIT</code>
+<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_DOLLAR_SIGN_in_variable_reference676</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>DIV</code>
+<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_DOUBLE_COLON_in_axis469</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>DOT</code>
+<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_DOUBLE_COLON_in_synpred2239</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>DOT_DOT</code>
+<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_DOUBLE_SLASH_in_absolute_location_path124</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String[]</code></td><td width="80%" align="left"><code>ruleNames</code>
+<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_DOUBLE_SLASH_in_i_relative_location_path198</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public int</code></td><td width="80%" align="left"><code>ruleLevel</code>
+<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_equality_expr_in_and_expr1002</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected DebugTreeAdaptor</code></td><td width="80%" align="left"><code>adaptor</code>
+<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_equality_expr_in_and_expr1020</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_union_expr_in_xpath75</code>
+<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_EQUALS_in_equality_expr1044</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_absolute_location_path_in_location_path96</code>
+<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_expr_in_argument755</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_relative_location_path_in_location_path102</code>
+<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_expr_in_predicate_expr521</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_SLASH_in_absolute_location_path117</code>
+<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_expr_in_primary_expr614</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_DOUBLE_SLASH_in_absolute_location_path124</code>
+<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_filter_expr_in_path_expr849</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_i_relative_location_path_in_absolute_location_path147</code>
+<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_filter_expr_in_path_expr900</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_i_relative_location_path_in_relative_location_path169</code>
+<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_function_call_in_primary_expr635</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_step_in_i_relative_location_path182</code>
+<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_GT_in_relational_expr1126</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_SLASH_in_i_relative_location_path190</code>
+<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_GTE_in_relational_expr1153</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_DOUBLE_SLASH_in_i_relative_location_path198</code>
+<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_i_relative_location_path_in_absolute_location_path147</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_step_in_i_relative_location_path207</code>
+<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_i_relative_location_path_in_relative_location_path169</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_axis_in_step247</code>
+<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_IDENTIFIER_in_axis467</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_IDENTIFIER_in_step287</code>
+<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_IDENTIFIER_in_function_call699</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_COLON_in_step289</code>
+<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_IDENTIFIER_in_special_step417</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_set_in_step301</code>
+<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_IDENTIFIER_in_special_step427</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_special_step_in_step351</code>
+<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_IDENTIFIER_in_special_step448</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_predicate_in_step367</code>
+<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_IDENTIFIER_in_step287</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_abbr_step_in_step384</code>
+<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_IDENTIFIER_in_synpred2237</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_predicate_in_step395</code>
+<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_IDENTIFIER_in_synpred3821</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_IDENTIFIER_in_special_step417</code>
+<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_IDENTIFIER_in_synpred4841</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_LEFT_PAREN_in_special_step419</code>
+<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_IDENTIFIER_in_variable_reference679</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_IDENTIFIER_in_special_step427</code>
+<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_KW_AND_in_and_expr1006</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_RIGHT_PAREN_in_special_step438</code>
+<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_KW_OR_in_or_expr968</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_IDENTIFIER_in_special_step448</code>
+<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_LEFT_BRACKET_in_predicate500</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_LEFT_PAREN_in_special_step450</code>
+<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_LEFT_PAREN_in_function_call701</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_RIGHT_PAREN_in_special_step452</code>
+<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_LEFT_PAREN_in_primary_expr611</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_IDENTIFIER_in_axis467</code>
+<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_LEFT_PAREN_in_special_step419</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_DOUBLE_COLON_in_axis469</code>
+<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_LEFT_PAREN_in_special_step450</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_AT_in_axis476</code>
+<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_LEFT_PAREN_in_synpred3823</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_LEFT_BRACKET_in_predicate500</code>
+<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_LEFT_PAREN_in_synpred4843</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_predicate_expr_in_predicate503</code>
+<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_LITERAL_in_literal648</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_RIGHT_BRACKET_in_predicate505</code>
+<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_literal_in_primary_expr623</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_expr_in_predicate_expr521</code>
+<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_location_path_in_path_expr831</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_set_in_abbr_step0</code>
+<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_location_path_in_path_expr889</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_AT_in_abbr_axis_specifier560</code>
+<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_LT_in_relational_expr1111</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_or_expr_in_expr589</code>
+<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_LTE_in_relational_expr1139</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_variable_reference_in_primary_expr605</code>
+<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_MINUS_in_additive_expr1232</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_LEFT_PAREN_in_primary_expr611</code>
+<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_MINUS_in_unary_expr1361</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_expr_in_primary_expr614</code>
+<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_MOD_in_mult_expr1307</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_RIGHT_PAREN_in_primary_expr616</code>
+<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_mult_expr_in_additive_expr1213</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_literal_in_primary_expr623</code>
+<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_mult_expr_in_additive_expr1251</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_number_in_primary_expr629</code>
+<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_NOT_EQUALS_in_equality_expr1059</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_function_call_in_primary_expr635</code>
+<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_NUMBER_in_number662</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_LITERAL_in_literal648</code>
+<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_number_in_primary_expr629</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_NUMBER_in_number662</code>
+<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_or_expr_in_expr589</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_DOLLAR_SIGN_in_variable_reference676</code>
+<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_path_expr_in_union_expr775</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_IDENTIFIER_in_variable_reference679</code>
+<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_path_expr_in_union_expr785</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_IDENTIFIER_in_function_call699</code>
+<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_PIPE_in_union_expr782</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_LEFT_PAREN_in_function_call701</code>
+<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_PLUS_in_additive_expr1219</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_arg_list_in_function_call706</code>
+<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_predicate_expr_in_predicate503</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_RIGHT_PAREN_in_function_call711</code>
+<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_predicate_in_filter_expr937</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_argument_in_arg_list727</code>
+<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_predicate_in_step367</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_COMMA_in_arg_list735</code>
+<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_predicate_in_step395</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_argument_in_arg_list737</code>
+<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_primary_expr_in_filter_expr930</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_expr_in_argument755</code>
+<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_relational_expr_in_equality_expr1038</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_path_expr_in_union_expr775</code>
+<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_relational_expr_in_equality_expr1080</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_PIPE_in_union_expr782</code>
+<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_relative_location_path_in_location_path102</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_path_expr_in_union_expr785</code>
+<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_RIGHT_BRACKET_in_predicate505</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_location_path_in_path_expr831</code>
+<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_RIGHT_PAREN_in_function_call711</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_filter_expr_in_path_expr849</code>
+<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_RIGHT_PAREN_in_primary_expr616</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_absolute_location_path_in_path_expr857</code>
+<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_RIGHT_PAREN_in_special_step438</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_location_path_in_path_expr889</code>
+<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_RIGHT_PAREN_in_special_step452</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_filter_expr_in_path_expr900</code>
+<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_set_in_abbr_step0</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_absolute_location_path_in_path_expr908</code>
+<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_set_in_step301</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_primary_expr_in_filter_expr930</code>
+<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_set_in_synpred1135</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_predicate_in_filter_expr937</code>
+<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_set_in_synpred5872</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_and_expr_in_or_expr964</code>
+<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_SLASH_in_absolute_location_path117</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_KW_OR_in_or_expr968</code>
+<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_SLASH_in_i_relative_location_path190</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_and_expr_in_or_expr981</code>
+<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_special_step_in_step351</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_equality_expr_in_and_expr1002</code>
+<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_STAR_in_mult_expr1281</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_KW_AND_in_and_expr1006</code>
+<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_step_in_i_relative_location_path182</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_equality_expr_in_and_expr1020</code>
+<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_step_in_i_relative_location_path207</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_relational_expr_in_equality_expr1038</code>
+<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_unary_expr_in_mult_expr1275</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_EQUALS_in_equality_expr1044</code>
+<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_unary_expr_in_mult_expr1327</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_NOT_EQUALS_in_equality_expr1059</code>
+<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_unary_expr_in_unary_expr1363</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_relational_expr_in_equality_expr1080</code>
+<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_union_expr_in_unary_expr1352</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_additive_expr_in_relational_expr1105</code>
+<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_union_expr_in_xpath75</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_LT_in_relational_expr1111</code>
+<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_variable_reference_in_primary_expr605</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_GT_in_relational_expr1126</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>GT</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_LTE_in_relational_expr1139</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>GTE</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_GTE_in_relational_expr1153</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>IDENTIFIER</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_additive_expr_in_relational_expr1175</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>KW_AND</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_mult_expr_in_additive_expr1213</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>KW_OR</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_PLUS_in_additive_expr1219</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>LEFT_BRACKET</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_MINUS_in_additive_expr1232</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>LEFT_PAREN</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_mult_expr_in_additive_expr1251</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>LITERAL</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_unary_expr_in_mult_expr1275</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>LT</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_STAR_in_mult_expr1281</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>LTE</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_DIV_in_mult_expr1294</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>MINUS</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_MOD_in_mult_expr1307</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>MOD</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_unary_expr_in_mult_expr1327</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>NOT_EQUALS</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_union_expr_in_unary_expr1352</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>NUMBER</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_MINUS_in_unary_expr1361</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>PIPE</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_unary_expr_in_unary_expr1363</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>PLUS</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_set_in_synpred1135</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>RIGHT_BRACKET</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_IDENTIFIER_in_synpred2237</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>RIGHT_PAREN</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_DOUBLE_COLON_in_synpred2239</code>
+<td width="20%" align="right"><code>public int</code></td><td width="80%" align="left"><code>ruleLevel</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_AT_in_synpred2243</code>
+<td width="20%" align="right"><code>public static java.lang.String[]</code></td><td width="80%" align="left"><code>ruleNames</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_IDENTIFIER_in_synpred3821</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>SINGLE_QUOTE_STRING</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_LEFT_PAREN_in_synpred3823</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>SLASH</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_IDENTIFIER_in_synpred4841</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>STAR</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_LEFT_PAREN_in_synpred4843</code>
+<td width="20%" align="right"><code>public static java.lang.String[]</code></td><td width="80%" align="left"><code>tokenNames</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static BitSet</code></td><td width="80%" align="left"><code>FOLLOW_set_in_synpred5872</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>WS</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@@ -7378,102 +15102,102 @@ extends DebugParser</pre>
</td>
</tr>
<tr>
-<td><code><strong>xpathParser(TokenStream input
+<td><code><strong>xpathParser</strong>(TokenStream input
,
- int port)</strong></code></td>
+ int port)</code></td>
</tr>
<tr>
-<td><code><strong>xpathParser(TokenStream input)</strong></code></td>
+<td><code><strong>xpathParser</strong>(TokenStream input)</code></td>
</tr>
<tr>
-<td><code><strong>xpathParser.xpath_return()</strong></code></td>
+<td><code><strong>xpathParser.abbr_axis_specifier_return</strong>()</code></td>
</tr>
<tr>
-<td><code><strong>xpathParser.location_path_return()</strong></code></td>
+<td><code><strong>xpathParser.abbr_step_return</strong>()</code></td>
</tr>
<tr>
-<td><code><strong>xpathParser.absolute_location_path_return()</strong></code></td>
+<td><code><strong>xpathParser.absolute_location_path_return</strong>()</code></td>
</tr>
<tr>
-<td><code><strong>xpathParser.relative_location_path_return()</strong></code></td>
+<td><code><strong>xpathParser.additive_expr_return</strong>()</code></td>
</tr>
<tr>
-<td><code><strong>xpathParser.i_relative_location_path_return()</strong></code></td>
+<td><code><strong>xpathParser.and_expr_return</strong>()</code></td>
</tr>
<tr>
-<td><code><strong>xpathParser.step_return()</strong></code></td>
+<td><code><strong>xpathParser.arg_list_return</strong>()</code></td>
</tr>
<tr>
-<td><code><strong>xpathParser.special_step_return()</strong></code></td>
+<td><code><strong>xpathParser.argument_return</strong>()</code></td>
</tr>
<tr>
-<td><code><strong>xpathParser.axis_return()</strong></code></td>
+<td><code><strong>xpathParser.axis_return</strong>()</code></td>
</tr>
<tr>
-<td><code><strong>xpathParser.predicate_return()</strong></code></td>
+<td><code><strong>xpathParser.equality_expr_return</strong>()</code></td>
</tr>
<tr>
-<td><code><strong>xpathParser.predicate_expr_return()</strong></code></td>
+<td><code><strong>xpathParser.expr_return</strong>()</code></td>
</tr>
<tr>
-<td><code><strong>xpathParser.abbr_step_return()</strong></code></td>
+<td><code><strong>xpathParser.filter_expr_return</strong>()</code></td>
</tr>
<tr>
-<td><code><strong>xpathParser.abbr_axis_specifier_return()</strong></code></td>
+<td><code><strong>xpathParser.function_call_return</strong>()</code></td>
</tr>
<tr>
-<td><code><strong>xpathParser.expr_return()</strong></code></td>
+<td><code><strong>xpathParser.i_relative_location_path_return</strong>()</code></td>
</tr>
<tr>
-<td><code><strong>xpathParser.primary_expr_return()</strong></code></td>
+<td><code><strong>xpathParser.literal_return</strong>()</code></td>
</tr>
<tr>
-<td><code><strong>xpathParser.literal_return()</strong></code></td>
+<td><code><strong>xpathParser.location_path_return</strong>()</code></td>
</tr>
<tr>
-<td><code><strong>xpathParser.number_return()</strong></code></td>
+<td><code><strong>xpathParser.mult_expr_return</strong>()</code></td>
</tr>
<tr>
-<td><code><strong>xpathParser.variable_reference_return()</strong></code></td>
+<td><code><strong>xpathParser.number_return</strong>()</code></td>
</tr>
<tr>
-<td><code><strong>xpathParser.function_call_return()</strong></code></td>
+<td><code><strong>xpathParser.or_expr_return</strong>()</code></td>
</tr>
<tr>
-<td><code><strong>xpathParser.arg_list_return()</strong></code></td>
+<td><code><strong>xpathParser.path_expr_return</strong>()</code></td>
</tr>
<tr>
-<td><code><strong>xpathParser.argument_return()</strong></code></td>
+<td><code><strong>xpathParser.predicate_expr_return</strong>()</code></td>
</tr>
<tr>
-<td><code><strong>xpathParser.union_expr_return()</strong></code></td>
+<td><code><strong>xpathParser.predicate_return</strong>()</code></td>
</tr>
<tr>
-<td><code><strong>xpathParser.path_expr_return()</strong></code></td>
+<td><code><strong>xpathParser.primary_expr_return</strong>()</code></td>
</tr>
<tr>
-<td><code><strong>xpathParser.filter_expr_return()</strong></code></td>
+<td><code><strong>xpathParser.relational_expr_return</strong>()</code></td>
</tr>
<tr>
-<td><code><strong>xpathParser.or_expr_return()</strong></code></td>
+<td><code><strong>xpathParser.relative_location_path_return</strong>()</code></td>
</tr>
<tr>
-<td><code><strong>xpathParser.and_expr_return()</strong></code></td>
+<td><code><strong>xpathParser.special_step_return</strong>()</code></td>
</tr>
<tr>
-<td><code><strong>xpathParser.equality_expr_return()</strong></code></td>
+<td><code><strong>xpathParser.step_return</strong>()</code></td>
</tr>
<tr>
-<td><code><strong>xpathParser.relational_expr_return()</strong></code></td>
+<td><code><strong>xpathParser.unary_expr_return</strong>()</code></td>
</tr>
<tr>
-<td><code><strong>xpathParser.additive_expr_return()</strong></code></td>
+<td><code><strong>xpathParser.union_expr_return</strong>()</code></td>
</tr>
<tr>
-<td><code><strong>xpathParser.mult_expr_return()</strong></code></td>
+<td><code><strong>xpathParser.variable_reference_return</strong>()</code></td>
</tr>
<tr>
-<td><code><strong>xpathParser.unary_expr_return()</strong></code></td>
+<td><code><strong>xpathParser.xpath_return</strong>()</code></td>
</tr>
</table>
<br>
@@ -7484,123 +15208,123 @@ extends DebugParser</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected boolean</code></td><td width="" align="left"><code>evalPredicate(boolean result
- ,
- java.lang.String predicate)</code>
+<td width="20%" align="right"><code>public org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.abbr_axis_specifier_return</code></td><td width="" align="left"><code>abbr_axis_specifier()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setTreeAdaptor(TreeAdaptor adaptor)</code>
+<td width="20%" align="right"><code>public org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.abbr_step_return</code></td><td width="" align="left"><code>abbr_step()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public TreeAdaptor</code></td><td width="" align="left"><code>getTreeAdaptor()</code>
+<td width="20%" align="right"><code>public org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.absolute_location_path_return</code></td><td width="" align="left"><code>absolute_location_path()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.lang.String[]</code></td><td width="" align="left"><code>getTokenNames()</code>
+<td width="20%" align="right"><code>public org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.additive_expr_return</code></td><td width="" align="left"><code>additive_expr()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getGrammarFileName()</code>
+<td width="20%" align="right"><code>public org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.and_expr_return</code></td><td width="" align="left"><code>and_expr()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.xpath_return</code></td><td width="" align="left"><code>xpath()</code>
+<td width="20%" align="right"><code>public org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.arg_list_return</code></td><td width="" align="left"><code>arg_list()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.location_path_return</code></td><td width="" align="left"><code>location_path()</code>
+<td width="20%" align="right"><code>public org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.argument_return</code></td><td width="" align="left"><code>argument()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.absolute_location_path_return</code></td><td width="" align="left"><code>absolute_location_path()</code>
+<td width="20%" align="right"><code>public org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.axis_return</code></td><td width="" align="left"><code>axis()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.relative_location_path_return</code></td><td width="" align="left"><code>relative_location_path()</code>
+<td width="20%" align="right"><code>public org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.equality_expr_return</code></td><td width="" align="left"><code>equality_expr()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.i_relative_location_path_return</code></td><td width="" align="left"><code>i_relative_location_path()</code>
+<td width="20%" align="right"><code>protected boolean</code></td><td width="" align="left"><code>evalPredicate(boolean result
+ ,
+ java.lang.String predicate)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.step_return</code></td><td width="" align="left"><code>step()</code>
+<td width="20%" align="right"><code>public org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.expr_return</code></td><td width="" align="left"><code>expr()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.special_step_return</code></td><td width="" align="left"><code>special_step()</code>
+<td width="20%" align="right"><code>public org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.filter_expr_return</code></td><td width="" align="left"><code>filter_expr()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.axis_return</code></td><td width="" align="left"><code>axis()</code>
+<td width="20%" align="right"><code>public org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.function_call_return</code></td><td width="" align="left"><code>function_call()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.predicate_return</code></td><td width="" align="left"><code>predicate()</code>
+<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getGrammarFileName()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.predicate_expr_return</code></td><td width="" align="left"><code>predicate_expr()</code>
+<td width="20%" align="right"><code>public java.lang.String[]</code></td><td width="" align="left"><code>getTokenNames()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.abbr_step_return</code></td><td width="" align="left"><code>abbr_step()</code>
+<td width="20%" align="right"><code>public TreeAdaptor</code></td><td width="" align="left"><code>getTreeAdaptor()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.abbr_axis_specifier_return</code></td><td width="" align="left"><code>abbr_axis_specifier()</code>
+<td width="20%" align="right"><code>public org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.i_relative_location_path_return</code></td><td width="" align="left"><code>i_relative_location_path()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.expr_return</code></td><td width="" align="left"><code>expr()</code>
+<td width="20%" align="right"><code>public org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.literal_return</code></td><td width="" align="left"><code>literal()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.primary_expr_return</code></td><td width="" align="left"><code>primary_expr()</code>
+<td width="20%" align="right"><code>public org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.location_path_return</code></td><td width="" align="left"><code>location_path()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.literal_return</code></td><td width="" align="left"><code>literal()</code>
+<td width="20%" align="right"><code>public org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.mult_expr_return</code></td><td width="" align="left"><code>mult_expr()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@@ -7612,103 +15336,103 @@ extends DebugParser</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.variable_reference_return</code></td><td width="" align="left"><code>variable_reference()</code>
+<td width="20%" align="right"><code>public org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.or_expr_return</code></td><td width="" align="left"><code>or_expr()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.function_call_return</code></td><td width="" align="left"><code>function_call()</code>
+<td width="20%" align="right"><code>public org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.path_expr_return</code></td><td width="" align="left"><code>path_expr()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.arg_list_return</code></td><td width="" align="left"><code>arg_list()</code>
+<td width="20%" align="right"><code>public org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.predicate_return</code></td><td width="" align="left"><code>predicate()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.argument_return</code></td><td width="" align="left"><code>argument()</code>
+<td width="20%" align="right"><code>public org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.predicate_expr_return</code></td><td width="" align="left"><code>predicate_expr()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.union_expr_return</code></td><td width="" align="left"><code>union_expr()</code>
+<td width="20%" align="right"><code>public org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.primary_expr_return</code></td><td width="" align="left"><code>primary_expr()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.path_expr_return</code></td><td width="" align="left"><code>path_expr()</code>
+<td width="20%" align="right"><code>public org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.relational_expr_return</code></td><td width="" align="left"><code>relational_expr()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.filter_expr_return</code></td><td width="" align="left"><code>filter_expr()</code>
+<td width="20%" align="right"><code>public org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.relative_location_path_return</code></td><td width="" align="left"><code>relative_location_path()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.or_expr_return</code></td><td width="" align="left"><code>or_expr()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setTreeAdaptor(TreeAdaptor adaptor)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.and_expr_return</code></td><td width="" align="left"><code>and_expr()</code>
+<td width="20%" align="right"><code>public org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.special_step_return</code></td><td width="" align="left"><code>special_step()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.equality_expr_return</code></td><td width="" align="left"><code>equality_expr()</code>
+<td width="20%" align="right"><code>public org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.step_return</code></td><td width="" align="left"><code>step()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.relational_expr_return</code></td><td width="" align="left"><code>relational_expr()</code>
+<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>synpred1()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.additive_expr_return</code></td><td width="" align="left"><code>additive_expr()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>synpred1_fragment()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.mult_expr_return</code></td><td width="" align="left"><code>mult_expr()</code>
+<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>synpred2()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.unary_expr_return</code></td><td width="" align="left"><code>unary_expr()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>synpred2_fragment()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>synpred1_fragment()</code>
+<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>synpred3()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>synpred2_fragment()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>synpred3_fragment()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>synpred3_fragment()</code>
+<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>synpred4()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@@ -7720,43 +15444,1373 @@ extends DebugParser</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>synpred5_fragment()</code>
+<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>synpred5()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>synpred5()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>synpred5_fragment()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>synpred1()</code>
+<td width="20%" align="right"><code>public org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.unary_expr_return</code></td><td width="" align="left"><code>unary_expr()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>synpred2()</code>
+<td width="20%" align="right"><code>public org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.union_expr_return</code></td><td width="" align="left"><code>union_expr()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>synpred3()</code>
+<td width="20%" align="right"><code>public org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.variable_reference_return</code></td><td width="" align="left"><code>variable_reference()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>synpred4()</code>
+<td width="20%" align="right"><code>public org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.xpath_return</code></td><td width="" align="left"><code>xpath()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>adaptor</h2>
+<p>
+<code>protected DebugTreeAdaptor <strong>adaptor</strong></code>
+</p>
+<hr>
+<h2>AT</h2>
+<p>
+<code>public static int <strong>AT</strong></code>
+</p>
+<hr>
+<h2>COLON</h2>
+<p>
+<code>public static int <strong>COLON</strong></code>
+</p>
+<hr>
+<h2>COMMA</h2>
+<p>
+<code>public static int <strong>COMMA</strong></code>
+</p>
+<hr>
+<h2>DIGIT</h2>
+<p>
+<code>public static int <strong>DIGIT</strong></code>
+</p>
+<hr>
+<h2>DIV</h2>
+<p>
+<code>public static int <strong>DIV</strong></code>
+</p>
+<hr>
+<h2>DOLLAR_SIGN</h2>
+<p>
+<code>public static int <strong>DOLLAR_SIGN</strong></code>
+</p>
+<hr>
+<h2>DOT</h2>
+<p>
+<code>public static int <strong>DOT</strong></code>
+</p>
+<hr>
+<h2>DOT_DOT</h2>
+<p>
+<code>public static int <strong>DOT_DOT</strong></code>
+</p>
+<hr>
+<h2>DOUBLE_COLON</h2>
+<p>
+<code>public static int <strong>DOUBLE_COLON</strong></code>
+</p>
+<hr>
+<h2>DOUBLE_QUOTE_STRING</h2>
+<p>
+<code>public static int <strong>DOUBLE_QUOTE_STRING</strong></code>
+</p>
+<hr>
+<h2>DOUBLE_SLASH</h2>
+<p>
+<code>public static int <strong>DOUBLE_SLASH</strong></code>
+</p>
+<hr>
+<h2>EOF</h2>
+<p>
+<code>public static int <strong>EOF</strong></code>
+</p>
+<hr>
+<h2>EQUALS</h2>
+<p>
+<code>public static int <strong>EQUALS</strong></code>
+</p>
+<hr>
+<h2>FOLLOW_abbr_step_in_step384</h2>
+<p>
+<code>public static BitSet <strong>FOLLOW_abbr_step_in_step384</strong></code>
+</p>
+<hr>
+<h2>FOLLOW_absolute_location_path_in_location_path96</h2>
+<p>
+<code>public static BitSet <strong>FOLLOW_absolute_location_path_in_location_path96</strong></code>
+</p>
+<hr>
+<h2>FOLLOW_absolute_location_path_in_path_expr857</h2>
+<p>
+<code>public static BitSet <strong>FOLLOW_absolute_location_path_in_path_expr857</strong></code>
+</p>
+<hr>
+<h2>FOLLOW_absolute_location_path_in_path_expr908</h2>
+<p>
+<code>public static BitSet <strong>FOLLOW_absolute_location_path_in_path_expr908</strong></code>
+</p>
+<hr>
+<h2>FOLLOW_additive_expr_in_relational_expr1105</h2>
+<p>
+<code>public static BitSet <strong>FOLLOW_additive_expr_in_relational_expr1105</strong></code>
+</p>
+<hr>
+<h2>FOLLOW_additive_expr_in_relational_expr1175</h2>
+<p>
+<code>public static BitSet <strong>FOLLOW_additive_expr_in_relational_expr1175</strong></code>
+</p>
+<hr>
+<h2>FOLLOW_and_expr_in_or_expr964</h2>
+<p>
+<code>public static BitSet <strong>FOLLOW_and_expr_in_or_expr964</strong></code>
+</p>
+<hr>
+<h2>FOLLOW_and_expr_in_or_expr981</h2>
+<p>
+<code>public static BitSet <strong>FOLLOW_and_expr_in_or_expr981</strong></code>
+</p>
+<hr>
+<h2>FOLLOW_arg_list_in_function_call706</h2>
+<p>
+<code>public static BitSet <strong>FOLLOW_arg_list_in_function_call706</strong></code>
+</p>
+<hr>
+<h2>FOLLOW_argument_in_arg_list727</h2>
+<p>
+<code>public static BitSet <strong>FOLLOW_argument_in_arg_list727</strong></code>
+</p>
+<hr>
+<h2>FOLLOW_argument_in_arg_list737</h2>
+<p>
+<code>public static BitSet <strong>FOLLOW_argument_in_arg_list737</strong></code>
+</p>
+<hr>
+<h2>FOLLOW_AT_in_abbr_axis_specifier560</h2>
+<p>
+<code>public static BitSet <strong>FOLLOW_AT_in_abbr_axis_specifier560</strong></code>
+</p>
+<hr>
+<h2>FOLLOW_AT_in_axis476</h2>
+<p>
+<code>public static BitSet <strong>FOLLOW_AT_in_axis476</strong></code>
+</p>
+<hr>
+<h2>FOLLOW_AT_in_synpred2243</h2>
+<p>
+<code>public static BitSet <strong>FOLLOW_AT_in_synpred2243</strong></code>
+</p>
+<hr>
+<h2>FOLLOW_axis_in_step247</h2>
+<p>
+<code>public static BitSet <strong>FOLLOW_axis_in_step247</strong></code>
+</p>
+<hr>
+<h2>FOLLOW_COLON_in_step289</h2>
+<p>
+<code>public static BitSet <strong>FOLLOW_COLON_in_step289</strong></code>
+</p>
+<hr>
+<h2>FOLLOW_COMMA_in_arg_list735</h2>
+<p>
+<code>public static BitSet <strong>FOLLOW_COMMA_in_arg_list735</strong></code>
+</p>
+<hr>
+<h2>FOLLOW_DIV_in_mult_expr1294</h2>
+<p>
+<code>public static BitSet <strong>FOLLOW_DIV_in_mult_expr1294</strong></code>
+</p>
+<hr>
+<h2>FOLLOW_DOLLAR_SIGN_in_variable_reference676</h2>
+<p>
+<code>public static BitSet <strong>FOLLOW_DOLLAR_SIGN_in_variable_reference676</strong></code>
+</p>
+<hr>
+<h2>FOLLOW_DOUBLE_COLON_in_axis469</h2>
+<p>
+<code>public static BitSet <strong>FOLLOW_DOUBLE_COLON_in_axis469</strong></code>
+</p>
+<hr>
+<h2>FOLLOW_DOUBLE_COLON_in_synpred2239</h2>
+<p>
+<code>public static BitSet <strong>FOLLOW_DOUBLE_COLON_in_synpred2239</strong></code>
+</p>
+<hr>
+<h2>FOLLOW_DOUBLE_SLASH_in_absolute_location_path124</h2>
+<p>
+<code>public static BitSet <strong>FOLLOW_DOUBLE_SLASH_in_absolute_location_path124</strong></code>
+</p>
+<hr>
+<h2>FOLLOW_DOUBLE_SLASH_in_i_relative_location_path198</h2>
+<p>
+<code>public static BitSet <strong>FOLLOW_DOUBLE_SLASH_in_i_relative_location_path198</strong></code>
+</p>
+<hr>
+<h2>FOLLOW_equality_expr_in_and_expr1002</h2>
+<p>
+<code>public static BitSet <strong>FOLLOW_equality_expr_in_and_expr1002</strong></code>
+</p>
+<hr>
+<h2>FOLLOW_equality_expr_in_and_expr1020</h2>
+<p>
+<code>public static BitSet <strong>FOLLOW_equality_expr_in_and_expr1020</strong></code>
+</p>
+<hr>
+<h2>FOLLOW_EQUALS_in_equality_expr1044</h2>
+<p>
+<code>public static BitSet <strong>FOLLOW_EQUALS_in_equality_expr1044</strong></code>
+</p>
+<hr>
+<h2>FOLLOW_expr_in_argument755</h2>
+<p>
+<code>public static BitSet <strong>FOLLOW_expr_in_argument755</strong></code>
+</p>
+<hr>
+<h2>FOLLOW_expr_in_predicate_expr521</h2>
+<p>
+<code>public static BitSet <strong>FOLLOW_expr_in_predicate_expr521</strong></code>
+</p>
+<hr>
+<h2>FOLLOW_expr_in_primary_expr614</h2>
+<p>
+<code>public static BitSet <strong>FOLLOW_expr_in_primary_expr614</strong></code>
+</p>
+<hr>
+<h2>FOLLOW_filter_expr_in_path_expr849</h2>
+<p>
+<code>public static BitSet <strong>FOLLOW_filter_expr_in_path_expr849</strong></code>
+</p>
+<hr>
+<h2>FOLLOW_filter_expr_in_path_expr900</h2>
+<p>
+<code>public static BitSet <strong>FOLLOW_filter_expr_in_path_expr900</strong></code>
+</p>
+<hr>
+<h2>FOLLOW_function_call_in_primary_expr635</h2>
+<p>
+<code>public static BitSet <strong>FOLLOW_function_call_in_primary_expr635</strong></code>
+</p>
+<hr>
+<h2>FOLLOW_GT_in_relational_expr1126</h2>
+<p>
+<code>public static BitSet <strong>FOLLOW_GT_in_relational_expr1126</strong></code>
+</p>
+<hr>
+<h2>FOLLOW_GTE_in_relational_expr1153</h2>
+<p>
+<code>public static BitSet <strong>FOLLOW_GTE_in_relational_expr1153</strong></code>
+</p>
+<hr>
+<h2>FOLLOW_i_relative_location_path_in_absolute_location_path147</h2>
+<p>
+<code>public static BitSet <strong>FOLLOW_i_relative_location_path_in_absolute_location_path147</strong></code>
+</p>
+<hr>
+<h2>FOLLOW_i_relative_location_path_in_relative_location_path169</h2>
+<p>
+<code>public static BitSet <strong>FOLLOW_i_relative_location_path_in_relative_location_path169</strong></code>
+</p>
+<hr>
+<h2>FOLLOW_IDENTIFIER_in_axis467</h2>
+<p>
+<code>public static BitSet <strong>FOLLOW_IDENTIFIER_in_axis467</strong></code>
+</p>
+<hr>
+<h2>FOLLOW_IDENTIFIER_in_function_call699</h2>
+<p>
+<code>public static BitSet <strong>FOLLOW_IDENTIFIER_in_function_call699</strong></code>
+</p>
+<hr>
+<h2>FOLLOW_IDENTIFIER_in_special_step417</h2>
+<p>
+<code>public static BitSet <strong>FOLLOW_IDENTIFIER_in_special_step417</strong></code>
+</p>
+<hr>
+<h2>FOLLOW_IDENTIFIER_in_special_step427</h2>
+<p>
+<code>public static BitSet <strong>FOLLOW_IDENTIFIER_in_special_step427</strong></code>
+</p>
+<hr>
+<h2>FOLLOW_IDENTIFIER_in_special_step448</h2>
+<p>
+<code>public static BitSet <strong>FOLLOW_IDENTIFIER_in_special_step448</strong></code>
+</p>
+<hr>
+<h2>FOLLOW_IDENTIFIER_in_step287</h2>
+<p>
+<code>public static BitSet <strong>FOLLOW_IDENTIFIER_in_step287</strong></code>
+</p>
+<hr>
+<h2>FOLLOW_IDENTIFIER_in_synpred2237</h2>
+<p>
+<code>public static BitSet <strong>FOLLOW_IDENTIFIER_in_synpred2237</strong></code>
+</p>
+<hr>
+<h2>FOLLOW_IDENTIFIER_in_synpred3821</h2>
+<p>
+<code>public static BitSet <strong>FOLLOW_IDENTIFIER_in_synpred3821</strong></code>
+</p>
+<hr>
+<h2>FOLLOW_IDENTIFIER_in_synpred4841</h2>
+<p>
+<code>public static BitSet <strong>FOLLOW_IDENTIFIER_in_synpred4841</strong></code>
+</p>
+<hr>
+<h2>FOLLOW_IDENTIFIER_in_variable_reference679</h2>
+<p>
+<code>public static BitSet <strong>FOLLOW_IDENTIFIER_in_variable_reference679</strong></code>
+</p>
+<hr>
+<h2>FOLLOW_KW_AND_in_and_expr1006</h2>
+<p>
+<code>public static BitSet <strong>FOLLOW_KW_AND_in_and_expr1006</strong></code>
+</p>
+<hr>
+<h2>FOLLOW_KW_OR_in_or_expr968</h2>
+<p>
+<code>public static BitSet <strong>FOLLOW_KW_OR_in_or_expr968</strong></code>
+</p>
+<hr>
+<h2>FOLLOW_LEFT_BRACKET_in_predicate500</h2>
+<p>
+<code>public static BitSet <strong>FOLLOW_LEFT_BRACKET_in_predicate500</strong></code>
+</p>
+<hr>
+<h2>FOLLOW_LEFT_PAREN_in_function_call701</h2>
+<p>
+<code>public static BitSet <strong>FOLLOW_LEFT_PAREN_in_function_call701</strong></code>
+</p>
+<hr>
+<h2>FOLLOW_LEFT_PAREN_in_primary_expr611</h2>
+<p>
+<code>public static BitSet <strong>FOLLOW_LEFT_PAREN_in_primary_expr611</strong></code>
+</p>
+<hr>
+<h2>FOLLOW_LEFT_PAREN_in_special_step419</h2>
+<p>
+<code>public static BitSet <strong>FOLLOW_LEFT_PAREN_in_special_step419</strong></code>
+</p>
+<hr>
+<h2>FOLLOW_LEFT_PAREN_in_special_step450</h2>
+<p>
+<code>public static BitSet <strong>FOLLOW_LEFT_PAREN_in_special_step450</strong></code>
+</p>
+<hr>
+<h2>FOLLOW_LEFT_PAREN_in_synpred3823</h2>
+<p>
+<code>public static BitSet <strong>FOLLOW_LEFT_PAREN_in_synpred3823</strong></code>
+</p>
+<hr>
+<h2>FOLLOW_LEFT_PAREN_in_synpred4843</h2>
+<p>
+<code>public static BitSet <strong>FOLLOW_LEFT_PAREN_in_synpred4843</strong></code>
+</p>
+<hr>
+<h2>FOLLOW_LITERAL_in_literal648</h2>
+<p>
+<code>public static BitSet <strong>FOLLOW_LITERAL_in_literal648</strong></code>
+</p>
+<hr>
+<h2>FOLLOW_literal_in_primary_expr623</h2>
+<p>
+<code>public static BitSet <strong>FOLLOW_literal_in_primary_expr623</strong></code>
+</p>
+<hr>
+<h2>FOLLOW_location_path_in_path_expr831</h2>
+<p>
+<code>public static BitSet <strong>FOLLOW_location_path_in_path_expr831</strong></code>
+</p>
+<hr>
+<h2>FOLLOW_location_path_in_path_expr889</h2>
+<p>
+<code>public static BitSet <strong>FOLLOW_location_path_in_path_expr889</strong></code>
+</p>
+<hr>
+<h2>FOLLOW_LT_in_relational_expr1111</h2>
+<p>
+<code>public static BitSet <strong>FOLLOW_LT_in_relational_expr1111</strong></code>
+</p>
+<hr>
+<h2>FOLLOW_LTE_in_relational_expr1139</h2>
+<p>
+<code>public static BitSet <strong>FOLLOW_LTE_in_relational_expr1139</strong></code>
+</p>
+<hr>
+<h2>FOLLOW_MINUS_in_additive_expr1232</h2>
+<p>
+<code>public static BitSet <strong>FOLLOW_MINUS_in_additive_expr1232</strong></code>
+</p>
+<hr>
+<h2>FOLLOW_MINUS_in_unary_expr1361</h2>
+<p>
+<code>public static BitSet <strong>FOLLOW_MINUS_in_unary_expr1361</strong></code>
+</p>
+<hr>
+<h2>FOLLOW_MOD_in_mult_expr1307</h2>
+<p>
+<code>public static BitSet <strong>FOLLOW_MOD_in_mult_expr1307</strong></code>
+</p>
+<hr>
+<h2>FOLLOW_mult_expr_in_additive_expr1213</h2>
+<p>
+<code>public static BitSet <strong>FOLLOW_mult_expr_in_additive_expr1213</strong></code>
+</p>
+<hr>
+<h2>FOLLOW_mult_expr_in_additive_expr1251</h2>
+<p>
+<code>public static BitSet <strong>FOLLOW_mult_expr_in_additive_expr1251</strong></code>
+</p>
+<hr>
+<h2>FOLLOW_NOT_EQUALS_in_equality_expr1059</h2>
+<p>
+<code>public static BitSet <strong>FOLLOW_NOT_EQUALS_in_equality_expr1059</strong></code>
+</p>
+<hr>
+<h2>FOLLOW_NUMBER_in_number662</h2>
+<p>
+<code>public static BitSet <strong>FOLLOW_NUMBER_in_number662</strong></code>
+</p>
+<hr>
+<h2>FOLLOW_number_in_primary_expr629</h2>
+<p>
+<code>public static BitSet <strong>FOLLOW_number_in_primary_expr629</strong></code>
+</p>
+<hr>
+<h2>FOLLOW_or_expr_in_expr589</h2>
+<p>
+<code>public static BitSet <strong>FOLLOW_or_expr_in_expr589</strong></code>
+</p>
+<hr>
+<h2>FOLLOW_path_expr_in_union_expr775</h2>
+<p>
+<code>public static BitSet <strong>FOLLOW_path_expr_in_union_expr775</strong></code>
+</p>
+<hr>
+<h2>FOLLOW_path_expr_in_union_expr785</h2>
+<p>
+<code>public static BitSet <strong>FOLLOW_path_expr_in_union_expr785</strong></code>
+</p>
+<hr>
+<h2>FOLLOW_PIPE_in_union_expr782</h2>
+<p>
+<code>public static BitSet <strong>FOLLOW_PIPE_in_union_expr782</strong></code>
+</p>
+<hr>
+<h2>FOLLOW_PLUS_in_additive_expr1219</h2>
+<p>
+<code>public static BitSet <strong>FOLLOW_PLUS_in_additive_expr1219</strong></code>
+</p>
+<hr>
+<h2>FOLLOW_predicate_expr_in_predicate503</h2>
+<p>
+<code>public static BitSet <strong>FOLLOW_predicate_expr_in_predicate503</strong></code>
+</p>
+<hr>
+<h2>FOLLOW_predicate_in_filter_expr937</h2>
+<p>
+<code>public static BitSet <strong>FOLLOW_predicate_in_filter_expr937</strong></code>
+</p>
+<hr>
+<h2>FOLLOW_predicate_in_step367</h2>
+<p>
+<code>public static BitSet <strong>FOLLOW_predicate_in_step367</strong></code>
+</p>
+<hr>
+<h2>FOLLOW_predicate_in_step395</h2>
+<p>
+<code>public static BitSet <strong>FOLLOW_predicate_in_step395</strong></code>
+</p>
+<hr>
+<h2>FOLLOW_primary_expr_in_filter_expr930</h2>
+<p>
+<code>public static BitSet <strong>FOLLOW_primary_expr_in_filter_expr930</strong></code>
+</p>
+<hr>
+<h2>FOLLOW_relational_expr_in_equality_expr1038</h2>
+<p>
+<code>public static BitSet <strong>FOLLOW_relational_expr_in_equality_expr1038</strong></code>
+</p>
+<hr>
+<h2>FOLLOW_relational_expr_in_equality_expr1080</h2>
+<p>
+<code>public static BitSet <strong>FOLLOW_relational_expr_in_equality_expr1080</strong></code>
+</p>
+<hr>
+<h2>FOLLOW_relative_location_path_in_location_path102</h2>
+<p>
+<code>public static BitSet <strong>FOLLOW_relative_location_path_in_location_path102</strong></code>
+</p>
+<hr>
+<h2>FOLLOW_RIGHT_BRACKET_in_predicate505</h2>
+<p>
+<code>public static BitSet <strong>FOLLOW_RIGHT_BRACKET_in_predicate505</strong></code>
+</p>
+<hr>
+<h2>FOLLOW_RIGHT_PAREN_in_function_call711</h2>
+<p>
+<code>public static BitSet <strong>FOLLOW_RIGHT_PAREN_in_function_call711</strong></code>
+</p>
+<hr>
+<h2>FOLLOW_RIGHT_PAREN_in_primary_expr616</h2>
+<p>
+<code>public static BitSet <strong>FOLLOW_RIGHT_PAREN_in_primary_expr616</strong></code>
+</p>
+<hr>
+<h2>FOLLOW_RIGHT_PAREN_in_special_step438</h2>
+<p>
+<code>public static BitSet <strong>FOLLOW_RIGHT_PAREN_in_special_step438</strong></code>
+</p>
+<hr>
+<h2>FOLLOW_RIGHT_PAREN_in_special_step452</h2>
+<p>
+<code>public static BitSet <strong>FOLLOW_RIGHT_PAREN_in_special_step452</strong></code>
+</p>
+<hr>
+<h2>FOLLOW_set_in_abbr_step0</h2>
+<p>
+<code>public static BitSet <strong>FOLLOW_set_in_abbr_step0</strong></code>
+</p>
+<hr>
+<h2>FOLLOW_set_in_step301</h2>
+<p>
+<code>public static BitSet <strong>FOLLOW_set_in_step301</strong></code>
+</p>
+<hr>
+<h2>FOLLOW_set_in_synpred1135</h2>
+<p>
+<code>public static BitSet <strong>FOLLOW_set_in_synpred1135</strong></code>
+</p>
+<hr>
+<h2>FOLLOW_set_in_synpred5872</h2>
+<p>
+<code>public static BitSet <strong>FOLLOW_set_in_synpred5872</strong></code>
+</p>
+<hr>
+<h2>FOLLOW_SLASH_in_absolute_location_path117</h2>
+<p>
+<code>public static BitSet <strong>FOLLOW_SLASH_in_absolute_location_path117</strong></code>
+</p>
+<hr>
+<h2>FOLLOW_SLASH_in_i_relative_location_path190</h2>
+<p>
+<code>public static BitSet <strong>FOLLOW_SLASH_in_i_relative_location_path190</strong></code>
+</p>
+<hr>
+<h2>FOLLOW_special_step_in_step351</h2>
+<p>
+<code>public static BitSet <strong>FOLLOW_special_step_in_step351</strong></code>
+</p>
+<hr>
+<h2>FOLLOW_STAR_in_mult_expr1281</h2>
+<p>
+<code>public static BitSet <strong>FOLLOW_STAR_in_mult_expr1281</strong></code>
+</p>
+<hr>
+<h2>FOLLOW_step_in_i_relative_location_path182</h2>
+<p>
+<code>public static BitSet <strong>FOLLOW_step_in_i_relative_location_path182</strong></code>
+</p>
+<hr>
+<h2>FOLLOW_step_in_i_relative_location_path207</h2>
+<p>
+<code>public static BitSet <strong>FOLLOW_step_in_i_relative_location_path207</strong></code>
+</p>
+<hr>
+<h2>FOLLOW_unary_expr_in_mult_expr1275</h2>
+<p>
+<code>public static BitSet <strong>FOLLOW_unary_expr_in_mult_expr1275</strong></code>
+</p>
+<hr>
+<h2>FOLLOW_unary_expr_in_mult_expr1327</h2>
+<p>
+<code>public static BitSet <strong>FOLLOW_unary_expr_in_mult_expr1327</strong></code>
+</p>
+<hr>
+<h2>FOLLOW_unary_expr_in_unary_expr1363</h2>
+<p>
+<code>public static BitSet <strong>FOLLOW_unary_expr_in_unary_expr1363</strong></code>
+</p>
+<hr>
+<h2>FOLLOW_union_expr_in_unary_expr1352</h2>
+<p>
+<code>public static BitSet <strong>FOLLOW_union_expr_in_unary_expr1352</strong></code>
+</p>
+<hr>
+<h2>FOLLOW_union_expr_in_xpath75</h2>
+<p>
+<code>public static BitSet <strong>FOLLOW_union_expr_in_xpath75</strong></code>
+</p>
+<hr>
+<h2>FOLLOW_variable_reference_in_primary_expr605</h2>
+<p>
+<code>public static BitSet <strong>FOLLOW_variable_reference_in_primary_expr605</strong></code>
+</p>
+<hr>
+<h2>GT</h2>
+<p>
+<code>public static int <strong>GT</strong></code>
+</p>
+<hr>
+<h2>GTE</h2>
+<p>
+<code>public static int <strong>GTE</strong></code>
+</p>
+<hr>
+<h2>IDENTIFIER</h2>
+<p>
+<code>public static int <strong>IDENTIFIER</strong></code>
+</p>
+<hr>
+<h2>KW_AND</h2>
+<p>
+<code>public static int <strong>KW_AND</strong></code>
+</p>
+<hr>
+<h2>KW_OR</h2>
+<p>
+<code>public static int <strong>KW_OR</strong></code>
+</p>
+<hr>
+<h2>LEFT_BRACKET</h2>
+<p>
+<code>public static int <strong>LEFT_BRACKET</strong></code>
+</p>
+<hr>
+<h2>LEFT_PAREN</h2>
+<p>
+<code>public static int <strong>LEFT_PAREN</strong></code>
+</p>
+<hr>
+<h2>LITERAL</h2>
+<p>
+<code>public static int <strong>LITERAL</strong></code>
+</p>
+<hr>
+<h2>LT</h2>
+<p>
+<code>public static int <strong>LT</strong></code>
+</p>
+<hr>
+<h2>LTE</h2>
+<p>
+<code>public static int <strong>LTE</strong></code>
+</p>
+<hr>
+<h2>MINUS</h2>
+<p>
+<code>public static int <strong>MINUS</strong></code>
+</p>
+<hr>
+<h2>MOD</h2>
+<p>
+<code>public static int <strong>MOD</strong></code>
+</p>
+<hr>
+<h2>NOT_EQUALS</h2>
+<p>
+<code>public static int <strong>NOT_EQUALS</strong></code>
+</p>
+<hr>
+<h2>NUMBER</h2>
+<p>
+<code>public static int <strong>NUMBER</strong></code>
+</p>
+<hr>
+<h2>PIPE</h2>
+<p>
+<code>public static int <strong>PIPE</strong></code>
+</p>
+<hr>
+<h2>PLUS</h2>
+<p>
+<code>public static int <strong>PLUS</strong></code>
+</p>
+<hr>
+<h2>RIGHT_BRACKET</h2>
+<p>
+<code>public static int <strong>RIGHT_BRACKET</strong></code>
+</p>
+<hr>
+<h2>RIGHT_PAREN</h2>
+<p>
+<code>public static int <strong>RIGHT_PAREN</strong></code>
+</p>
+<hr>
+<h2>ruleLevel</h2>
+<p>
+<code>public int <strong>ruleLevel</strong></code>
+</p>
+<hr>
+<h2>ruleNames</h2>
+<p>
+<code>public static java.lang.String[] <strong>ruleNames</strong></code>
+</p>
+<hr>
+<h2>SINGLE_QUOTE_STRING</h2>
+<p>
+<code>public static int <strong>SINGLE_QUOTE_STRING</strong></code>
+</p>
+<hr>
+<h2>SLASH</h2>
+<p>
+<code>public static int <strong>SLASH</strong></code>
+</p>
+<hr>
+<h2>STAR</h2>
+<p>
+<code>public static int <strong>STAR</strong></code>
+</p>
+<hr>
+<h2>tokenNames</h2>
+<p>
+<code>public static java.lang.String[] <strong>tokenNames</strong></code>
+</p>
+<hr>
+<h2>WS</h2>
+<p>
+<code>public static int <strong>WS</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>xpathParser</h2>
+<p>
+<code>public <strong>xpathParser</strong>(TokenStream input
+ ,
+ int port)</code>
+</p>
+<p></p>
+<hr>
+<h2>xpathParser</h2>
+<p>
+<code>public <strong>xpathParser</strong>(TokenStream input)</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>abbr_axis_specifier</h2>
+<p>
+<code>public org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.abbr_axis_specifier_return <strong>abbr_axis_specifier</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.abbr_axis_specifier_return</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>RecognitionException</code>
+</p>
+<hr>
+<h2>abbr_step</h2>
+<p>
+<code>public org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.abbr_step_return <strong>abbr_step</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.abbr_step_return</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>RecognitionException</code>
+</p>
+<hr>
+<h2>absolute_location_path</h2>
+<p>
+<code>public org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.absolute_location_path_return <strong>absolute_location_path</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.absolute_location_path_return</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>RecognitionException</code>
+</p>
+<hr>
+<h2>additive_expr</h2>
+<p>
+<code>public org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.additive_expr_return <strong>additive_expr</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.additive_expr_return</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>RecognitionException</code>
+</p>
+<hr>
+<h2>and_expr</h2>
+<p>
+<code>public org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.and_expr_return <strong>and_expr</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.and_expr_return</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>RecognitionException</code>
+</p>
+<hr>
+<h2>arg_list</h2>
+<p>
+<code>public org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.arg_list_return <strong>arg_list</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.arg_list_return</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>RecognitionException</code>
+</p>
+<hr>
+<h2>argument</h2>
+<p>
+<code>public org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.argument_return <strong>argument</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.argument_return</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>RecognitionException</code>
+</p>
+<hr>
+<h2>axis</h2>
+<p>
+<code>public org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.axis_return <strong>axis</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.axis_return</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>RecognitionException</code>
+</p>
+<hr>
+<h2>equality_expr</h2>
+<p>
+<code>public org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.equality_expr_return <strong>equality_expr</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.equality_expr_return</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>RecognitionException</code>
+</p>
+<hr>
+<h2>evalPredicate</h2>
+<p>
+<code>protected boolean <strong>evalPredicate</strong>(boolean result
+ ,
+ java.lang.String predicate)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>result</code>
+</p>
+<p>
+<code>predicate</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<hr>
+<h2>expr</h2>
+<p>
+<code>public org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.expr_return <strong>expr</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.expr_return</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>RecognitionException</code>
+</p>
+<hr>
+<h2>filter_expr</h2>
+<p>
+<code>public org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.filter_expr_return <strong>filter_expr</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.filter_expr_return</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>RecognitionException</code>
+</p>
+<hr>
+<h2>function_call</h2>
+<p>
+<code>public org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.function_call_return <strong>function_call</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.function_call_return</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>RecognitionException</code>
+</p>
+<hr>
+<h2>getGrammarFileName</h2>
+<p>
+<code>public java.lang.String <strong>getGrammarFileName</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
+<h2>getTokenNames</h2>
+<p>
+<code>public java.lang.String[] <strong>getTokenNames</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String[]</code>
+</p>
+<hr>
+<h2>getTreeAdaptor</h2>
+<p>
+<code>public TreeAdaptor <strong>getTreeAdaptor</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>TreeAdaptor</code>
+</p>
+<hr>
+<h2>i_relative_location_path</h2>
+<p>
+<code>public org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.i_relative_location_path_return <strong>i_relative_location_path</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.i_relative_location_path_return</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>RecognitionException</code>
+</p>
+<hr>
+<h2>literal</h2>
+<p>
+<code>public org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.literal_return <strong>literal</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.literal_return</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>RecognitionException</code>
+</p>
+<hr>
+<h2>location_path</h2>
+<p>
+<code>public org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.location_path_return <strong>location_path</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.location_path_return</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>RecognitionException</code>
+</p>
+<hr>
+<h2>mult_expr</h2>
+<p>
+<code>public org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.mult_expr_return <strong>mult_expr</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.mult_expr_return</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>RecognitionException</code>
+</p>
+<hr>
+<h2>number</h2>
+<p>
+<code>public org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.number_return <strong>number</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.number_return</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>RecognitionException</code>
+</p>
+<hr>
+<h2>or_expr</h2>
+<p>
+<code>public org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.or_expr_return <strong>or_expr</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.or_expr_return</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>RecognitionException</code>
+</p>
+<hr>
+<h2>path_expr</h2>
+<p>
+<code>public org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.path_expr_return <strong>path_expr</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.path_expr_return</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>RecognitionException</code>
+</p>
+<hr>
+<h2>predicate</h2>
+<p>
+<code>public org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.predicate_return <strong>predicate</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.predicate_return</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>RecognitionException</code>
+</p>
+<hr>
+<h2>predicate_expr</h2>
+<p>
+<code>public org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.predicate_expr_return <strong>predicate_expr</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.predicate_expr_return</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>RecognitionException</code>
+</p>
+<hr>
+<h2>primary_expr</h2>
+<p>
+<code>public org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.primary_expr_return <strong>primary_expr</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.primary_expr_return</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>RecognitionException</code>
+</p>
+<hr>
+<h2>relational_expr</h2>
+<p>
+<code>public org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.relational_expr_return <strong>relational_expr</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.relational_expr_return</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>RecognitionException</code>
+</p>
+<hr>
+<h2>relative_location_path</h2>
+<p>
+<code>public org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.relative_location_path_return <strong>relative_location_path</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.relative_location_path_return</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>RecognitionException</code>
+</p>
+<hr>
+<h2>setTreeAdaptor</h2>
+<p>
+<code>public void <strong>setTreeAdaptor</strong>(TreeAdaptor adaptor)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>adaptor</code>
+</p>
+<hr>
+<h2>special_step</h2>
+<p>
+<code>public org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.special_step_return <strong>special_step</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.special_step_return</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>RecognitionException</code>
+</p>
+<hr>
+<h2>step</h2>
+<p>
+<code>public org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.step_return <strong>step</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.step_return</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>RecognitionException</code>
+</p>
+<hr>
+<h2>synpred1</h2>
+<p>
+<code>public boolean <strong>synpred1</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<hr>
+<h2>synpred1_fragment</h2>
+<p>
+<code>public void <strong>synpred1_fragment</strong>()</code>
+</p>
+<p></p>
+<h3>Throws:</h3>
+<p>
+<code>RecognitionException</code>
+</p>
+<hr>
+<h2>synpred2</h2>
+<p>
+<code>public boolean <strong>synpred2</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<hr>
+<h2>synpred2_fragment</h2>
+<p>
+<code>public void <strong>synpred2_fragment</strong>()</code>
+</p>
+<p></p>
+<h3>Throws:</h3>
+<p>
+<code>RecognitionException</code>
+</p>
+<hr>
+<h2>synpred3</h2>
+<p>
+<code>public boolean <strong>synpred3</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<hr>
+<h2>synpred3_fragment</h2>
+<p>
+<code>public void <strong>synpred3_fragment</strong>()</code>
+</p>
+<p></p>
+<h3>Throws:</h3>
+<p>
+<code>RecognitionException</code>
+</p>
+<hr>
+<h2>synpred4</h2>
+<p>
+<code>public boolean <strong>synpred4</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<hr>
+<h2>synpred4_fragment</h2>
+<p>
+<code>public void <strong>synpred4_fragment</strong>()</code>
+</p>
+<p></p>
+<h3>Throws:</h3>
+<p>
+<code>RecognitionException</code>
+</p>
+<hr>
+<h2>synpred5</h2>
+<p>
+<code>public boolean <strong>synpred5</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<hr>
+<h2>synpred5_fragment</h2>
+<p>
+<code>public void <strong>synpred5_fragment</strong>()</code>
+</p>
+<p></p>
+<h3>Throws:</h3>
+<p>
+<code>RecognitionException</code>
+</p>
+<hr>
+<h2>unary_expr</h2>
+<p>
+<code>public org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.unary_expr_return <strong>unary_expr</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.unary_expr_return</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>RecognitionException</code>
+</p>
+<hr>
+<h2>union_expr</h2>
+<p>
+<code>public org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.union_expr_return <strong>union_expr</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.union_expr_return</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>RecognitionException</code>
+</p>
+<hr>
+<h2>variable_reference</h2>
+<p>
+<code>public org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.variable_reference_return <strong>variable_reference</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.variable_reference_return</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>RecognitionException</code>
+</p>
+<hr>
+<h2>xpath</h2>
+<p>
+<code>public org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.xpath_return <strong>xpath</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.core.internal.xpath.parser.xpathParser.xpath_return</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>RecognitionException</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.core.internal.xpath.parser</strong></font>
</p>
@@ -7791,7 +16845,7 @@ extends ParserRuleReturnScope</pre>
</td>
</tr>
<tr>
-<td><code><strong>xpathParser.xpath_return()</strong></code></td>
+<td><code><strong>xpathParser.xpath_return</strong>()</code></td>
</tr>
</table>
<br>
@@ -7809,6 +16863,54 @@ extends ParserRuleReturnScope</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>tree</h2>
+<p>
+<code>package-private java.lang.Object <strong>tree</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>xpathParser.xpath_return</h2>
+<p>
+<code>public <strong>xpathParser.xpath_return</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getTree</h2>
+<p>
+<code>public java.lang.Object <strong>getTree</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.Object</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.core.internal.xpath.parser</strong></font>
</p>
@@ -7843,7 +16945,7 @@ extends ParserRuleReturnScope</pre>
</td>
</tr>
<tr>
-<td><code><strong>xpathParser.location_path_return()</strong></code></td>
+<td><code><strong>xpathParser.location_path_return</strong>()</code></td>
</tr>
</table>
<br>
@@ -7861,6 +16963,54 @@ extends ParserRuleReturnScope</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>tree</h2>
+<p>
+<code>package-private java.lang.Object <strong>tree</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>xpathParser.location_path_return</h2>
+<p>
+<code>public <strong>xpathParser.location_path_return</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getTree</h2>
+<p>
+<code>public java.lang.Object <strong>getTree</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.Object</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.core.internal.xpath.parser</strong></font>
</p>
@@ -7895,7 +17045,7 @@ extends ParserRuleReturnScope</pre>
</td>
</tr>
<tr>
-<td><code><strong>xpathParser.absolute_location_path_return()</strong></code></td>
+<td><code><strong>xpathParser.absolute_location_path_return</strong>()</code></td>
</tr>
</table>
<br>
@@ -7913,6 +17063,54 @@ extends ParserRuleReturnScope</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>tree</h2>
+<p>
+<code>package-private java.lang.Object <strong>tree</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>xpathParser.absolute_location_path_return</h2>
+<p>
+<code>public <strong>xpathParser.absolute_location_path_return</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getTree</h2>
+<p>
+<code>public java.lang.Object <strong>getTree</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.Object</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.core.internal.xpath.parser</strong></font>
</p>
@@ -7947,7 +17145,7 @@ extends ParserRuleReturnScope</pre>
</td>
</tr>
<tr>
-<td><code><strong>xpathParser.relative_location_path_return()</strong></code></td>
+<td><code><strong>xpathParser.relative_location_path_return</strong>()</code></td>
</tr>
</table>
<br>
@@ -7965,6 +17163,54 @@ extends ParserRuleReturnScope</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>tree</h2>
+<p>
+<code>package-private java.lang.Object <strong>tree</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>xpathParser.relative_location_path_return</h2>
+<p>
+<code>public <strong>xpathParser.relative_location_path_return</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getTree</h2>
+<p>
+<code>public java.lang.Object <strong>getTree</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.Object</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.core.internal.xpath.parser</strong></font>
</p>
@@ -7999,7 +17245,7 @@ extends ParserRuleReturnScope</pre>
</td>
</tr>
<tr>
-<td><code><strong>xpathParser.i_relative_location_path_return()</strong></code></td>
+<td><code><strong>xpathParser.i_relative_location_path_return</strong>()</code></td>
</tr>
</table>
<br>
@@ -8017,6 +17263,54 @@ extends ParserRuleReturnScope</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>tree</h2>
+<p>
+<code>package-private java.lang.Object <strong>tree</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>xpathParser.i_relative_location_path_return</h2>
+<p>
+<code>public <strong>xpathParser.i_relative_location_path_return</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getTree</h2>
+<p>
+<code>public java.lang.Object <strong>getTree</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.Object</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.core.internal.xpath.parser</strong></font>
</p>
@@ -8051,7 +17345,7 @@ extends ParserRuleReturnScope</pre>
</td>
</tr>
<tr>
-<td><code><strong>xpathParser.step_return()</strong></code></td>
+<td><code><strong>xpathParser.step_return</strong>()</code></td>
</tr>
</table>
<br>
@@ -8069,6 +17363,54 @@ extends ParserRuleReturnScope</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>tree</h2>
+<p>
+<code>package-private java.lang.Object <strong>tree</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>xpathParser.step_return</h2>
+<p>
+<code>public <strong>xpathParser.step_return</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getTree</h2>
+<p>
+<code>public java.lang.Object <strong>getTree</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.Object</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.core.internal.xpath.parser</strong></font>
</p>
@@ -8103,7 +17445,7 @@ extends ParserRuleReturnScope</pre>
</td>
</tr>
<tr>
-<td><code><strong>xpathParser.special_step_return()</strong></code></td>
+<td><code><strong>xpathParser.special_step_return</strong>()</code></td>
</tr>
</table>
<br>
@@ -8121,6 +17463,54 @@ extends ParserRuleReturnScope</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>tree</h2>
+<p>
+<code>package-private java.lang.Object <strong>tree</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>xpathParser.special_step_return</h2>
+<p>
+<code>public <strong>xpathParser.special_step_return</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getTree</h2>
+<p>
+<code>public java.lang.Object <strong>getTree</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.Object</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.core.internal.xpath.parser</strong></font>
</p>
@@ -8155,7 +17545,7 @@ extends ParserRuleReturnScope</pre>
</td>
</tr>
<tr>
-<td><code><strong>xpathParser.axis_return()</strong></code></td>
+<td><code><strong>xpathParser.axis_return</strong>()</code></td>
</tr>
</table>
<br>
@@ -8173,6 +17563,54 @@ extends ParserRuleReturnScope</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>tree</h2>
+<p>
+<code>package-private java.lang.Object <strong>tree</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>xpathParser.axis_return</h2>
+<p>
+<code>public <strong>xpathParser.axis_return</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getTree</h2>
+<p>
+<code>public java.lang.Object <strong>getTree</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.Object</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.core.internal.xpath.parser</strong></font>
</p>
@@ -8207,7 +17645,7 @@ extends ParserRuleReturnScope</pre>
</td>
</tr>
<tr>
-<td><code><strong>xpathParser.predicate_return()</strong></code></td>
+<td><code><strong>xpathParser.predicate_return</strong>()</code></td>
</tr>
</table>
<br>
@@ -8225,6 +17663,54 @@ extends ParserRuleReturnScope</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>tree</h2>
+<p>
+<code>package-private java.lang.Object <strong>tree</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>xpathParser.predicate_return</h2>
+<p>
+<code>public <strong>xpathParser.predicate_return</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getTree</h2>
+<p>
+<code>public java.lang.Object <strong>getTree</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.Object</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.core.internal.xpath.parser</strong></font>
</p>
@@ -8259,7 +17745,7 @@ extends ParserRuleReturnScope</pre>
</td>
</tr>
<tr>
-<td><code><strong>xpathParser.predicate_expr_return()</strong></code></td>
+<td><code><strong>xpathParser.predicate_expr_return</strong>()</code></td>
</tr>
</table>
<br>
@@ -8277,6 +17763,54 @@ extends ParserRuleReturnScope</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>tree</h2>
+<p>
+<code>package-private java.lang.Object <strong>tree</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>xpathParser.predicate_expr_return</h2>
+<p>
+<code>public <strong>xpathParser.predicate_expr_return</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getTree</h2>
+<p>
+<code>public java.lang.Object <strong>getTree</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.Object</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.core.internal.xpath.parser</strong></font>
</p>
@@ -8311,7 +17845,7 @@ extends ParserRuleReturnScope</pre>
</td>
</tr>
<tr>
-<td><code><strong>xpathParser.abbr_step_return()</strong></code></td>
+<td><code><strong>xpathParser.abbr_step_return</strong>()</code></td>
</tr>
</table>
<br>
@@ -8329,6 +17863,54 @@ extends ParserRuleReturnScope</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>tree</h2>
+<p>
+<code>package-private java.lang.Object <strong>tree</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>xpathParser.abbr_step_return</h2>
+<p>
+<code>public <strong>xpathParser.abbr_step_return</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getTree</h2>
+<p>
+<code>public java.lang.Object <strong>getTree</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.Object</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.core.internal.xpath.parser</strong></font>
</p>
@@ -8363,7 +17945,7 @@ extends ParserRuleReturnScope</pre>
</td>
</tr>
<tr>
-<td><code><strong>xpathParser.abbr_axis_specifier_return()</strong></code></td>
+<td><code><strong>xpathParser.abbr_axis_specifier_return</strong>()</code></td>
</tr>
</table>
<br>
@@ -8381,6 +17963,54 @@ extends ParserRuleReturnScope</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>tree</h2>
+<p>
+<code>package-private java.lang.Object <strong>tree</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>xpathParser.abbr_axis_specifier_return</h2>
+<p>
+<code>public <strong>xpathParser.abbr_axis_specifier_return</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getTree</h2>
+<p>
+<code>public java.lang.Object <strong>getTree</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.Object</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.core.internal.xpath.parser</strong></font>
</p>
@@ -8415,7 +18045,7 @@ extends ParserRuleReturnScope</pre>
</td>
</tr>
<tr>
-<td><code><strong>xpathParser.expr_return()</strong></code></td>
+<td><code><strong>xpathParser.expr_return</strong>()</code></td>
</tr>
</table>
<br>
@@ -8433,6 +18063,54 @@ extends ParserRuleReturnScope</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>tree</h2>
+<p>
+<code>package-private java.lang.Object <strong>tree</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>xpathParser.expr_return</h2>
+<p>
+<code>public <strong>xpathParser.expr_return</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getTree</h2>
+<p>
+<code>public java.lang.Object <strong>getTree</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.Object</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.core.internal.xpath.parser</strong></font>
</p>
@@ -8467,7 +18145,7 @@ extends ParserRuleReturnScope</pre>
</td>
</tr>
<tr>
-<td><code><strong>xpathParser.primary_expr_return()</strong></code></td>
+<td><code><strong>xpathParser.primary_expr_return</strong>()</code></td>
</tr>
</table>
<br>
@@ -8485,6 +18163,54 @@ extends ParserRuleReturnScope</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>tree</h2>
+<p>
+<code>package-private java.lang.Object <strong>tree</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>xpathParser.primary_expr_return</h2>
+<p>
+<code>public <strong>xpathParser.primary_expr_return</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getTree</h2>
+<p>
+<code>public java.lang.Object <strong>getTree</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.Object</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.core.internal.xpath.parser</strong></font>
</p>
@@ -8519,7 +18245,7 @@ extends ParserRuleReturnScope</pre>
</td>
</tr>
<tr>
-<td><code><strong>xpathParser.literal_return()</strong></code></td>
+<td><code><strong>xpathParser.literal_return</strong>()</code></td>
</tr>
</table>
<br>
@@ -8537,6 +18263,54 @@ extends ParserRuleReturnScope</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>tree</h2>
+<p>
+<code>package-private java.lang.Object <strong>tree</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>xpathParser.literal_return</h2>
+<p>
+<code>public <strong>xpathParser.literal_return</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getTree</h2>
+<p>
+<code>public java.lang.Object <strong>getTree</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.Object</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.core.internal.xpath.parser</strong></font>
</p>
@@ -8571,7 +18345,7 @@ extends ParserRuleReturnScope</pre>
</td>
</tr>
<tr>
-<td><code><strong>xpathParser.number_return()</strong></code></td>
+<td><code><strong>xpathParser.number_return</strong>()</code></td>
</tr>
</table>
<br>
@@ -8589,6 +18363,54 @@ extends ParserRuleReturnScope</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>tree</h2>
+<p>
+<code>package-private java.lang.Object <strong>tree</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>xpathParser.number_return</h2>
+<p>
+<code>public <strong>xpathParser.number_return</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getTree</h2>
+<p>
+<code>public java.lang.Object <strong>getTree</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.Object</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.core.internal.xpath.parser</strong></font>
</p>
@@ -8623,7 +18445,7 @@ extends ParserRuleReturnScope</pre>
</td>
</tr>
<tr>
-<td><code><strong>xpathParser.variable_reference_return()</strong></code></td>
+<td><code><strong>xpathParser.variable_reference_return</strong>()</code></td>
</tr>
</table>
<br>
@@ -8641,6 +18463,54 @@ extends ParserRuleReturnScope</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>tree</h2>
+<p>
+<code>package-private java.lang.Object <strong>tree</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>xpathParser.variable_reference_return</h2>
+<p>
+<code>public <strong>xpathParser.variable_reference_return</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getTree</h2>
+<p>
+<code>public java.lang.Object <strong>getTree</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.Object</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.core.internal.xpath.parser</strong></font>
</p>
@@ -8675,7 +18545,7 @@ extends ParserRuleReturnScope</pre>
</td>
</tr>
<tr>
-<td><code><strong>xpathParser.function_call_return()</strong></code></td>
+<td><code><strong>xpathParser.function_call_return</strong>()</code></td>
</tr>
</table>
<br>
@@ -8693,6 +18563,54 @@ extends ParserRuleReturnScope</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>tree</h2>
+<p>
+<code>package-private java.lang.Object <strong>tree</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>xpathParser.function_call_return</h2>
+<p>
+<code>public <strong>xpathParser.function_call_return</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getTree</h2>
+<p>
+<code>public java.lang.Object <strong>getTree</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.Object</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.core.internal.xpath.parser</strong></font>
</p>
@@ -8727,7 +18645,7 @@ extends ParserRuleReturnScope</pre>
</td>
</tr>
<tr>
-<td><code><strong>xpathParser.arg_list_return()</strong></code></td>
+<td><code><strong>xpathParser.arg_list_return</strong>()</code></td>
</tr>
</table>
<br>
@@ -8745,6 +18663,54 @@ extends ParserRuleReturnScope</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>tree</h2>
+<p>
+<code>package-private java.lang.Object <strong>tree</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>xpathParser.arg_list_return</h2>
+<p>
+<code>public <strong>xpathParser.arg_list_return</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getTree</h2>
+<p>
+<code>public java.lang.Object <strong>getTree</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.Object</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.core.internal.xpath.parser</strong></font>
</p>
@@ -8779,7 +18745,7 @@ extends ParserRuleReturnScope</pre>
</td>
</tr>
<tr>
-<td><code><strong>xpathParser.argument_return()</strong></code></td>
+<td><code><strong>xpathParser.argument_return</strong>()</code></td>
</tr>
</table>
<br>
@@ -8797,6 +18763,54 @@ extends ParserRuleReturnScope</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>tree</h2>
+<p>
+<code>package-private java.lang.Object <strong>tree</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>xpathParser.argument_return</h2>
+<p>
+<code>public <strong>xpathParser.argument_return</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getTree</h2>
+<p>
+<code>public java.lang.Object <strong>getTree</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.Object</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.core.internal.xpath.parser</strong></font>
</p>
@@ -8831,7 +18845,7 @@ extends ParserRuleReturnScope</pre>
</td>
</tr>
<tr>
-<td><code><strong>xpathParser.union_expr_return()</strong></code></td>
+<td><code><strong>xpathParser.union_expr_return</strong>()</code></td>
</tr>
</table>
<br>
@@ -8849,6 +18863,54 @@ extends ParserRuleReturnScope</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>tree</h2>
+<p>
+<code>package-private java.lang.Object <strong>tree</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>xpathParser.union_expr_return</h2>
+<p>
+<code>public <strong>xpathParser.union_expr_return</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getTree</h2>
+<p>
+<code>public java.lang.Object <strong>getTree</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.Object</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.core.internal.xpath.parser</strong></font>
</p>
@@ -8883,7 +18945,7 @@ extends ParserRuleReturnScope</pre>
</td>
</tr>
<tr>
-<td><code><strong>xpathParser.path_expr_return()</strong></code></td>
+<td><code><strong>xpathParser.path_expr_return</strong>()</code></td>
</tr>
</table>
<br>
@@ -8901,6 +18963,54 @@ extends ParserRuleReturnScope</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>tree</h2>
+<p>
+<code>package-private java.lang.Object <strong>tree</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>xpathParser.path_expr_return</h2>
+<p>
+<code>public <strong>xpathParser.path_expr_return</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getTree</h2>
+<p>
+<code>public java.lang.Object <strong>getTree</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.Object</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.core.internal.xpath.parser</strong></font>
</p>
@@ -8935,7 +19045,7 @@ extends ParserRuleReturnScope</pre>
</td>
</tr>
<tr>
-<td><code><strong>xpathParser.filter_expr_return()</strong></code></td>
+<td><code><strong>xpathParser.filter_expr_return</strong>()</code></td>
</tr>
</table>
<br>
@@ -8953,6 +19063,54 @@ extends ParserRuleReturnScope</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>tree</h2>
+<p>
+<code>package-private java.lang.Object <strong>tree</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>xpathParser.filter_expr_return</h2>
+<p>
+<code>public <strong>xpathParser.filter_expr_return</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getTree</h2>
+<p>
+<code>public java.lang.Object <strong>getTree</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.Object</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.core.internal.xpath.parser</strong></font>
</p>
@@ -8987,7 +19145,7 @@ extends ParserRuleReturnScope</pre>
</td>
</tr>
<tr>
-<td><code><strong>xpathParser.or_expr_return()</strong></code></td>
+<td><code><strong>xpathParser.or_expr_return</strong>()</code></td>
</tr>
</table>
<br>
@@ -9005,6 +19163,54 @@ extends ParserRuleReturnScope</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>tree</h2>
+<p>
+<code>package-private java.lang.Object <strong>tree</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>xpathParser.or_expr_return</h2>
+<p>
+<code>public <strong>xpathParser.or_expr_return</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getTree</h2>
+<p>
+<code>public java.lang.Object <strong>getTree</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.Object</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.core.internal.xpath.parser</strong></font>
</p>
@@ -9039,7 +19245,7 @@ extends ParserRuleReturnScope</pre>
</td>
</tr>
<tr>
-<td><code><strong>xpathParser.and_expr_return()</strong></code></td>
+<td><code><strong>xpathParser.and_expr_return</strong>()</code></td>
</tr>
</table>
<br>
@@ -9057,6 +19263,54 @@ extends ParserRuleReturnScope</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>tree</h2>
+<p>
+<code>package-private java.lang.Object <strong>tree</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>xpathParser.and_expr_return</h2>
+<p>
+<code>public <strong>xpathParser.and_expr_return</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getTree</h2>
+<p>
+<code>public java.lang.Object <strong>getTree</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.Object</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.core.internal.xpath.parser</strong></font>
</p>
@@ -9091,7 +19345,7 @@ extends ParserRuleReturnScope</pre>
</td>
</tr>
<tr>
-<td><code><strong>xpathParser.equality_expr_return()</strong></code></td>
+<td><code><strong>xpathParser.equality_expr_return</strong>()</code></td>
</tr>
</table>
<br>
@@ -9109,6 +19363,54 @@ extends ParserRuleReturnScope</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>tree</h2>
+<p>
+<code>package-private java.lang.Object <strong>tree</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>xpathParser.equality_expr_return</h2>
+<p>
+<code>public <strong>xpathParser.equality_expr_return</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getTree</h2>
+<p>
+<code>public java.lang.Object <strong>getTree</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.Object</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.core.internal.xpath.parser</strong></font>
</p>
@@ -9143,7 +19445,7 @@ extends ParserRuleReturnScope</pre>
</td>
</tr>
<tr>
-<td><code><strong>xpathParser.relational_expr_return()</strong></code></td>
+<td><code><strong>xpathParser.relational_expr_return</strong>()</code></td>
</tr>
</table>
<br>
@@ -9161,6 +19463,54 @@ extends ParserRuleReturnScope</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>tree</h2>
+<p>
+<code>package-private java.lang.Object <strong>tree</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>xpathParser.relational_expr_return</h2>
+<p>
+<code>public <strong>xpathParser.relational_expr_return</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getTree</h2>
+<p>
+<code>public java.lang.Object <strong>getTree</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.Object</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.core.internal.xpath.parser</strong></font>
</p>
@@ -9195,7 +19545,7 @@ extends ParserRuleReturnScope</pre>
</td>
</tr>
<tr>
-<td><code><strong>xpathParser.additive_expr_return()</strong></code></td>
+<td><code><strong>xpathParser.additive_expr_return</strong>()</code></td>
</tr>
</table>
<br>
@@ -9213,6 +19563,54 @@ extends ParserRuleReturnScope</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>tree</h2>
+<p>
+<code>package-private java.lang.Object <strong>tree</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>xpathParser.additive_expr_return</h2>
+<p>
+<code>public <strong>xpathParser.additive_expr_return</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getTree</h2>
+<p>
+<code>public java.lang.Object <strong>getTree</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.Object</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.core.internal.xpath.parser</strong></font>
</p>
@@ -9247,7 +19645,7 @@ extends ParserRuleReturnScope</pre>
</td>
</tr>
<tr>
-<td><code><strong>xpathParser.mult_expr_return()</strong></code></td>
+<td><code><strong>xpathParser.mult_expr_return</strong>()</code></td>
</tr>
</table>
<br>
@@ -9265,6 +19663,54 @@ extends ParserRuleReturnScope</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>tree</h2>
+<p>
+<code>package-private java.lang.Object <strong>tree</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>xpathParser.mult_expr_return</h2>
+<p>
+<code>public <strong>xpathParser.mult_expr_return</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getTree</h2>
+<p>
+<code>public java.lang.Object <strong>getTree</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.Object</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.core.internal.xpath.parser</strong></font>
</p>
@@ -9299,7 +19745,7 @@ extends ParserRuleReturnScope</pre>
</td>
</tr>
<tr>
-<td><code><strong>xpathParser.unary_expr_return()</strong></code></td>
+<td><code><strong>xpathParser.unary_expr_return</strong>()</code></td>
</tr>
</table>
<br>
@@ -9317,6 +19763,54 @@ extends ParserRuleReturnScope</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>tree</h2>
+<p>
+<code>package-private java.lang.Object <strong>tree</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>xpathParser.unary_expr_return</h2>
+<p>
+<code>public <strong>xpathParser.unary_expr_return</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getTree</h2>
+<p>
+<code>public java.lang.Object <strong>getTree</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.Object</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.core.internal.xpath.parser</strong></font>
</p>
@@ -9351,7 +19845,7 @@ extends ParserRuleReturnScope</pre>
</td>
</tr>
<tr>
-<td><code><strong>xpathParser.xpath_return()</strong></code></td>
+<td><code><strong>xpathParser.xpath_return</strong>()</code></td>
</tr>
</table>
<br>
@@ -9369,6 +19863,54 @@ extends ParserRuleReturnScope</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>tree</h2>
+<p>
+<code>package-private java.lang.Object <strong>tree</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>xpathParser.xpath_return</h2>
+<p>
+<code>public <strong>xpathParser.xpath_return</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getTree</h2>
+<p>
+<code>public java.lang.Object <strong>getTree</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.Object</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.core.internal.xpath.parser</strong></font>
</p>
@@ -9403,7 +19945,7 @@ extends ParserRuleReturnScope</pre>
</td>
</tr>
<tr>
-<td><code><strong>xpathParser.location_path_return()</strong></code></td>
+<td><code><strong>xpathParser.location_path_return</strong>()</code></td>
</tr>
</table>
<br>
@@ -9421,6 +19963,54 @@ extends ParserRuleReturnScope</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>tree</h2>
+<p>
+<code>package-private java.lang.Object <strong>tree</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>xpathParser.location_path_return</h2>
+<p>
+<code>public <strong>xpathParser.location_path_return</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getTree</h2>
+<p>
+<code>public java.lang.Object <strong>getTree</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.Object</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.core.internal.xpath.parser</strong></font>
</p>
@@ -9455,7 +20045,7 @@ extends ParserRuleReturnScope</pre>
</td>
</tr>
<tr>
-<td><code><strong>xpathParser.absolute_location_path_return()</strong></code></td>
+<td><code><strong>xpathParser.absolute_location_path_return</strong>()</code></td>
</tr>
</table>
<br>
@@ -9473,6 +20063,54 @@ extends ParserRuleReturnScope</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>tree</h2>
+<p>
+<code>package-private java.lang.Object <strong>tree</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>xpathParser.absolute_location_path_return</h2>
+<p>
+<code>public <strong>xpathParser.absolute_location_path_return</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getTree</h2>
+<p>
+<code>public java.lang.Object <strong>getTree</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.Object</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.core.internal.xpath.parser</strong></font>
</p>
@@ -9507,7 +20145,7 @@ extends ParserRuleReturnScope</pre>
</td>
</tr>
<tr>
-<td><code><strong>xpathParser.relative_location_path_return()</strong></code></td>
+<td><code><strong>xpathParser.relative_location_path_return</strong>()</code></td>
</tr>
</table>
<br>
@@ -9525,6 +20163,54 @@ extends ParserRuleReturnScope</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>tree</h2>
+<p>
+<code>package-private java.lang.Object <strong>tree</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>xpathParser.relative_location_path_return</h2>
+<p>
+<code>public <strong>xpathParser.relative_location_path_return</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getTree</h2>
+<p>
+<code>public java.lang.Object <strong>getTree</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.Object</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.core.internal.xpath.parser</strong></font>
</p>
@@ -9559,7 +20245,7 @@ extends ParserRuleReturnScope</pre>
</td>
</tr>
<tr>
-<td><code><strong>xpathParser.i_relative_location_path_return()</strong></code></td>
+<td><code><strong>xpathParser.i_relative_location_path_return</strong>()</code></td>
</tr>
</table>
<br>
@@ -9577,6 +20263,54 @@ extends ParserRuleReturnScope</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>tree</h2>
+<p>
+<code>package-private java.lang.Object <strong>tree</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>xpathParser.i_relative_location_path_return</h2>
+<p>
+<code>public <strong>xpathParser.i_relative_location_path_return</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getTree</h2>
+<p>
+<code>public java.lang.Object <strong>getTree</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.Object</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.core.internal.xpath.parser</strong></font>
</p>
@@ -9611,7 +20345,7 @@ extends ParserRuleReturnScope</pre>
</td>
</tr>
<tr>
-<td><code><strong>xpathParser.step_return()</strong></code></td>
+<td><code><strong>xpathParser.step_return</strong>()</code></td>
</tr>
</table>
<br>
@@ -9629,6 +20363,54 @@ extends ParserRuleReturnScope</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>tree</h2>
+<p>
+<code>package-private java.lang.Object <strong>tree</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>xpathParser.step_return</h2>
+<p>
+<code>public <strong>xpathParser.step_return</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getTree</h2>
+<p>
+<code>public java.lang.Object <strong>getTree</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.Object</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.core.internal.xpath.parser</strong></font>
</p>
@@ -9663,7 +20445,7 @@ extends ParserRuleReturnScope</pre>
</td>
</tr>
<tr>
-<td><code><strong>xpathParser.special_step_return()</strong></code></td>
+<td><code><strong>xpathParser.special_step_return</strong>()</code></td>
</tr>
</table>
<br>
@@ -9681,6 +20463,54 @@ extends ParserRuleReturnScope</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>tree</h2>
+<p>
+<code>package-private java.lang.Object <strong>tree</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>xpathParser.special_step_return</h2>
+<p>
+<code>public <strong>xpathParser.special_step_return</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getTree</h2>
+<p>
+<code>public java.lang.Object <strong>getTree</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.Object</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.core.internal.xpath.parser</strong></font>
</p>
@@ -9715,7 +20545,7 @@ extends ParserRuleReturnScope</pre>
</td>
</tr>
<tr>
-<td><code><strong>xpathParser.axis_return()</strong></code></td>
+<td><code><strong>xpathParser.axis_return</strong>()</code></td>
</tr>
</table>
<br>
@@ -9733,6 +20563,54 @@ extends ParserRuleReturnScope</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>tree</h2>
+<p>
+<code>package-private java.lang.Object <strong>tree</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>xpathParser.axis_return</h2>
+<p>
+<code>public <strong>xpathParser.axis_return</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getTree</h2>
+<p>
+<code>public java.lang.Object <strong>getTree</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.Object</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.core.internal.xpath.parser</strong></font>
</p>
@@ -9767,7 +20645,7 @@ extends ParserRuleReturnScope</pre>
</td>
</tr>
<tr>
-<td><code><strong>xpathParser.predicate_return()</strong></code></td>
+<td><code><strong>xpathParser.predicate_return</strong>()</code></td>
</tr>
</table>
<br>
@@ -9785,6 +20663,54 @@ extends ParserRuleReturnScope</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>tree</h2>
+<p>
+<code>package-private java.lang.Object <strong>tree</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>xpathParser.predicate_return</h2>
+<p>
+<code>public <strong>xpathParser.predicate_return</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getTree</h2>
+<p>
+<code>public java.lang.Object <strong>getTree</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.Object</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.core.internal.xpath.parser</strong></font>
</p>
@@ -9819,7 +20745,7 @@ extends ParserRuleReturnScope</pre>
</td>
</tr>
<tr>
-<td><code><strong>xpathParser.predicate_expr_return()</strong></code></td>
+<td><code><strong>xpathParser.predicate_expr_return</strong>()</code></td>
</tr>
</table>
<br>
@@ -9837,6 +20763,54 @@ extends ParserRuleReturnScope</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>tree</h2>
+<p>
+<code>package-private java.lang.Object <strong>tree</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>xpathParser.predicate_expr_return</h2>
+<p>
+<code>public <strong>xpathParser.predicate_expr_return</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getTree</h2>
+<p>
+<code>public java.lang.Object <strong>getTree</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.Object</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.core.internal.xpath.parser</strong></font>
</p>
@@ -9871,7 +20845,7 @@ extends ParserRuleReturnScope</pre>
</td>
</tr>
<tr>
-<td><code><strong>xpathParser.abbr_step_return()</strong></code></td>
+<td><code><strong>xpathParser.abbr_step_return</strong>()</code></td>
</tr>
</table>
<br>
@@ -9889,6 +20863,54 @@ extends ParserRuleReturnScope</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>tree</h2>
+<p>
+<code>package-private java.lang.Object <strong>tree</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>xpathParser.abbr_step_return</h2>
+<p>
+<code>public <strong>xpathParser.abbr_step_return</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getTree</h2>
+<p>
+<code>public java.lang.Object <strong>getTree</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.Object</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.core.internal.xpath.parser</strong></font>
</p>
@@ -9923,7 +20945,7 @@ extends ParserRuleReturnScope</pre>
</td>
</tr>
<tr>
-<td><code><strong>xpathParser.abbr_axis_specifier_return()</strong></code></td>
+<td><code><strong>xpathParser.abbr_axis_specifier_return</strong>()</code></td>
</tr>
</table>
<br>
@@ -9941,6 +20963,54 @@ extends ParserRuleReturnScope</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>tree</h2>
+<p>
+<code>package-private java.lang.Object <strong>tree</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>xpathParser.abbr_axis_specifier_return</h2>
+<p>
+<code>public <strong>xpathParser.abbr_axis_specifier_return</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getTree</h2>
+<p>
+<code>public java.lang.Object <strong>getTree</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.Object</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.core.internal.xpath.parser</strong></font>
</p>
@@ -9975,7 +21045,7 @@ extends ParserRuleReturnScope</pre>
</td>
</tr>
<tr>
-<td><code><strong>xpathParser.expr_return()</strong></code></td>
+<td><code><strong>xpathParser.expr_return</strong>()</code></td>
</tr>
</table>
<br>
@@ -9993,6 +21063,54 @@ extends ParserRuleReturnScope</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>tree</h2>
+<p>
+<code>package-private java.lang.Object <strong>tree</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>xpathParser.expr_return</h2>
+<p>
+<code>public <strong>xpathParser.expr_return</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getTree</h2>
+<p>
+<code>public java.lang.Object <strong>getTree</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.Object</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.core.internal.xpath.parser</strong></font>
</p>
@@ -10027,7 +21145,7 @@ extends ParserRuleReturnScope</pre>
</td>
</tr>
<tr>
-<td><code><strong>xpathParser.primary_expr_return()</strong></code></td>
+<td><code><strong>xpathParser.primary_expr_return</strong>()</code></td>
</tr>
</table>
<br>
@@ -10045,6 +21163,54 @@ extends ParserRuleReturnScope</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>tree</h2>
+<p>
+<code>package-private java.lang.Object <strong>tree</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>xpathParser.primary_expr_return</h2>
+<p>
+<code>public <strong>xpathParser.primary_expr_return</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getTree</h2>
+<p>
+<code>public java.lang.Object <strong>getTree</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.Object</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.core.internal.xpath.parser</strong></font>
</p>
@@ -10079,7 +21245,7 @@ extends ParserRuleReturnScope</pre>
</td>
</tr>
<tr>
-<td><code><strong>xpathParser.literal_return()</strong></code></td>
+<td><code><strong>xpathParser.literal_return</strong>()</code></td>
</tr>
</table>
<br>
@@ -10097,6 +21263,54 @@ extends ParserRuleReturnScope</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>tree</h2>
+<p>
+<code>package-private java.lang.Object <strong>tree</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>xpathParser.literal_return</h2>
+<p>
+<code>public <strong>xpathParser.literal_return</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getTree</h2>
+<p>
+<code>public java.lang.Object <strong>getTree</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.Object</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.core.internal.xpath.parser</strong></font>
</p>
@@ -10131,7 +21345,7 @@ extends ParserRuleReturnScope</pre>
</td>
</tr>
<tr>
-<td><code><strong>xpathParser.number_return()</strong></code></td>
+<td><code><strong>xpathParser.number_return</strong>()</code></td>
</tr>
</table>
<br>
@@ -10149,6 +21363,54 @@ extends ParserRuleReturnScope</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>tree</h2>
+<p>
+<code>package-private java.lang.Object <strong>tree</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>xpathParser.number_return</h2>
+<p>
+<code>public <strong>xpathParser.number_return</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getTree</h2>
+<p>
+<code>public java.lang.Object <strong>getTree</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.Object</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.core.internal.xpath.parser</strong></font>
</p>
@@ -10183,7 +21445,7 @@ extends ParserRuleReturnScope</pre>
</td>
</tr>
<tr>
-<td><code><strong>xpathParser.variable_reference_return()</strong></code></td>
+<td><code><strong>xpathParser.variable_reference_return</strong>()</code></td>
</tr>
</table>
<br>
@@ -10201,6 +21463,54 @@ extends ParserRuleReturnScope</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>tree</h2>
+<p>
+<code>package-private java.lang.Object <strong>tree</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>xpathParser.variable_reference_return</h2>
+<p>
+<code>public <strong>xpathParser.variable_reference_return</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getTree</h2>
+<p>
+<code>public java.lang.Object <strong>getTree</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.Object</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.core.internal.xpath.parser</strong></font>
</p>
@@ -10235,7 +21545,7 @@ extends ParserRuleReturnScope</pre>
</td>
</tr>
<tr>
-<td><code><strong>xpathParser.function_call_return()</strong></code></td>
+<td><code><strong>xpathParser.function_call_return</strong>()</code></td>
</tr>
</table>
<br>
@@ -10253,6 +21563,54 @@ extends ParserRuleReturnScope</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>tree</h2>
+<p>
+<code>package-private java.lang.Object <strong>tree</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>xpathParser.function_call_return</h2>
+<p>
+<code>public <strong>xpathParser.function_call_return</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getTree</h2>
+<p>
+<code>public java.lang.Object <strong>getTree</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.Object</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.core.internal.xpath.parser</strong></font>
</p>
@@ -10287,7 +21645,7 @@ extends ParserRuleReturnScope</pre>
</td>
</tr>
<tr>
-<td><code><strong>xpathParser.arg_list_return()</strong></code></td>
+<td><code><strong>xpathParser.arg_list_return</strong>()</code></td>
</tr>
</table>
<br>
@@ -10305,6 +21663,54 @@ extends ParserRuleReturnScope</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>tree</h2>
+<p>
+<code>package-private java.lang.Object <strong>tree</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>xpathParser.arg_list_return</h2>
+<p>
+<code>public <strong>xpathParser.arg_list_return</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getTree</h2>
+<p>
+<code>public java.lang.Object <strong>getTree</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.Object</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.core.internal.xpath.parser</strong></font>
</p>
@@ -10339,7 +21745,7 @@ extends ParserRuleReturnScope</pre>
</td>
</tr>
<tr>
-<td><code><strong>xpathParser.argument_return()</strong></code></td>
+<td><code><strong>xpathParser.argument_return</strong>()</code></td>
</tr>
</table>
<br>
@@ -10357,6 +21763,54 @@ extends ParserRuleReturnScope</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>tree</h2>
+<p>
+<code>package-private java.lang.Object <strong>tree</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>xpathParser.argument_return</h2>
+<p>
+<code>public <strong>xpathParser.argument_return</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getTree</h2>
+<p>
+<code>public java.lang.Object <strong>getTree</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.Object</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.core.internal.xpath.parser</strong></font>
</p>
@@ -10391,7 +21845,7 @@ extends ParserRuleReturnScope</pre>
</td>
</tr>
<tr>
-<td><code><strong>xpathParser.union_expr_return()</strong></code></td>
+<td><code><strong>xpathParser.union_expr_return</strong>()</code></td>
</tr>
</table>
<br>
@@ -10409,6 +21863,54 @@ extends ParserRuleReturnScope</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>tree</h2>
+<p>
+<code>package-private java.lang.Object <strong>tree</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>xpathParser.union_expr_return</h2>
+<p>
+<code>public <strong>xpathParser.union_expr_return</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getTree</h2>
+<p>
+<code>public java.lang.Object <strong>getTree</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.Object</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.core.internal.xpath.parser</strong></font>
</p>
@@ -10443,7 +21945,7 @@ extends ParserRuleReturnScope</pre>
</td>
</tr>
<tr>
-<td><code><strong>xpathParser.path_expr_return()</strong></code></td>
+<td><code><strong>xpathParser.path_expr_return</strong>()</code></td>
</tr>
</table>
<br>
@@ -10461,6 +21963,54 @@ extends ParserRuleReturnScope</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>tree</h2>
+<p>
+<code>package-private java.lang.Object <strong>tree</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>xpathParser.path_expr_return</h2>
+<p>
+<code>public <strong>xpathParser.path_expr_return</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getTree</h2>
+<p>
+<code>public java.lang.Object <strong>getTree</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.Object</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.core.internal.xpath.parser</strong></font>
</p>
@@ -10495,7 +22045,7 @@ extends ParserRuleReturnScope</pre>
</td>
</tr>
<tr>
-<td><code><strong>xpathParser.filter_expr_return()</strong></code></td>
+<td><code><strong>xpathParser.filter_expr_return</strong>()</code></td>
</tr>
</table>
<br>
@@ -10513,6 +22063,54 @@ extends ParserRuleReturnScope</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>tree</h2>
+<p>
+<code>package-private java.lang.Object <strong>tree</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>xpathParser.filter_expr_return</h2>
+<p>
+<code>public <strong>xpathParser.filter_expr_return</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getTree</h2>
+<p>
+<code>public java.lang.Object <strong>getTree</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.Object</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.core.internal.xpath.parser</strong></font>
</p>
@@ -10547,7 +22145,7 @@ extends ParserRuleReturnScope</pre>
</td>
</tr>
<tr>
-<td><code><strong>xpathParser.or_expr_return()</strong></code></td>
+<td><code><strong>xpathParser.or_expr_return</strong>()</code></td>
</tr>
</table>
<br>
@@ -10565,6 +22163,54 @@ extends ParserRuleReturnScope</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>tree</h2>
+<p>
+<code>package-private java.lang.Object <strong>tree</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>xpathParser.or_expr_return</h2>
+<p>
+<code>public <strong>xpathParser.or_expr_return</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getTree</h2>
+<p>
+<code>public java.lang.Object <strong>getTree</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.Object</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.core.internal.xpath.parser</strong></font>
</p>
@@ -10599,7 +22245,7 @@ extends ParserRuleReturnScope</pre>
</td>
</tr>
<tr>
-<td><code><strong>xpathParser.and_expr_return()</strong></code></td>
+<td><code><strong>xpathParser.and_expr_return</strong>()</code></td>
</tr>
</table>
<br>
@@ -10617,6 +22263,54 @@ extends ParserRuleReturnScope</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>tree</h2>
+<p>
+<code>package-private java.lang.Object <strong>tree</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>xpathParser.and_expr_return</h2>
+<p>
+<code>public <strong>xpathParser.and_expr_return</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getTree</h2>
+<p>
+<code>public java.lang.Object <strong>getTree</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.Object</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.core.internal.xpath.parser</strong></font>
</p>
@@ -10651,7 +22345,7 @@ extends ParserRuleReturnScope</pre>
</td>
</tr>
<tr>
-<td><code><strong>xpathParser.equality_expr_return()</strong></code></td>
+<td><code><strong>xpathParser.equality_expr_return</strong>()</code></td>
</tr>
</table>
<br>
@@ -10669,6 +22363,54 @@ extends ParserRuleReturnScope</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>tree</h2>
+<p>
+<code>package-private java.lang.Object <strong>tree</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>xpathParser.equality_expr_return</h2>
+<p>
+<code>public <strong>xpathParser.equality_expr_return</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getTree</h2>
+<p>
+<code>public java.lang.Object <strong>getTree</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.Object</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.core.internal.xpath.parser</strong></font>
</p>
@@ -10703,7 +22445,7 @@ extends ParserRuleReturnScope</pre>
</td>
</tr>
<tr>
-<td><code><strong>xpathParser.relational_expr_return()</strong></code></td>
+<td><code><strong>xpathParser.relational_expr_return</strong>()</code></td>
</tr>
</table>
<br>
@@ -10721,6 +22463,54 @@ extends ParserRuleReturnScope</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>tree</h2>
+<p>
+<code>package-private java.lang.Object <strong>tree</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>xpathParser.relational_expr_return</h2>
+<p>
+<code>public <strong>xpathParser.relational_expr_return</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getTree</h2>
+<p>
+<code>public java.lang.Object <strong>getTree</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.Object</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.core.internal.xpath.parser</strong></font>
</p>
@@ -10755,7 +22545,7 @@ extends ParserRuleReturnScope</pre>
</td>
</tr>
<tr>
-<td><code><strong>xpathParser.additive_expr_return()</strong></code></td>
+<td><code><strong>xpathParser.additive_expr_return</strong>()</code></td>
</tr>
</table>
<br>
@@ -10773,6 +22563,54 @@ extends ParserRuleReturnScope</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>tree</h2>
+<p>
+<code>package-private java.lang.Object <strong>tree</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>xpathParser.additive_expr_return</h2>
+<p>
+<code>public <strong>xpathParser.additive_expr_return</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getTree</h2>
+<p>
+<code>public java.lang.Object <strong>getTree</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.Object</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.core.internal.xpath.parser</strong></font>
</p>
@@ -10807,7 +22645,7 @@ extends ParserRuleReturnScope</pre>
</td>
</tr>
<tr>
-<td><code><strong>xpathParser.mult_expr_return()</strong></code></td>
+<td><code><strong>xpathParser.mult_expr_return</strong>()</code></td>
</tr>
</table>
<br>
@@ -10825,6 +22663,54 @@ extends ParserRuleReturnScope</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>tree</h2>
+<p>
+<code>package-private java.lang.Object <strong>tree</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>xpathParser.mult_expr_return</h2>
+<p>
+<code>public <strong>xpathParser.mult_expr_return</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getTree</h2>
+<p>
+<code>public java.lang.Object <strong>getTree</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.Object</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.core.internal.xpath.parser</strong></font>
</p>
@@ -10859,7 +22745,7 @@ extends ParserRuleReturnScope</pre>
</td>
</tr>
<tr>
-<td><code><strong>xpathParser.unary_expr_return()</strong></code></td>
+<td><code><strong>xpathParser.unary_expr_return</strong>()</code></td>
</tr>
</table>
<br>
@@ -10877,6 +22763,54 @@ extends ParserRuleReturnScope</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>tree</h2>
+<p>
+<code>package-private java.lang.Object <strong>tree</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>xpathParser.unary_expr_return</h2>
+<p>
+<code>public <strong>xpathParser.unary_expr_return</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getTree</h2>
+<p>
+<code>public java.lang.Object <strong>getTree</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.Object</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.debug.internal.util</strong></font>
</p>
@@ -10896,10 +22830,10 @@ extends java.lang.Object</pre>Bundle of most images used by the XSL Debug Plugin
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>IMG_PROCESSOR_TAB</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>IMG_MAIN_TAB</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Path to the XSLT Processor Images used for launch configurations</td>
+ Path to the XSLT Launch Images used for launch configurations</td>
</tr>
<tr valign="top">
<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>IMG_OUTPUT_TAB</code>
@@ -10908,10 +22842,10 @@ extends java.lang.Object</pre>Bundle of most images used by the XSL Debug Plugin
Path to the XSLT Output Images used for launch configurations</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>IMG_MAIN_TAB</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>IMG_PROCESSOR_TAB</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Path to the XSLT Launch Images used for launch configurations</td>
+ Path to the XSLT Processor Images used for launch configurations</td>
</tr>
</table>
<br>
@@ -10922,7 +22856,7 @@ extends java.lang.Object</pre>Bundle of most images used by the XSL Debug Plugin
</td>
</tr>
<tr>
-<td><code><strong>XSLDebugPluginImages()</strong></code></td>
+<td><code><strong>XSLDebugPluginImages</strong>()</code></td>
</tr>
</table>
<br>
@@ -10934,6 +22868,60 @@ extends java.lang.Object</pre>Bundle of most images used by the XSL Debug Plugin
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>IMG_MAIN_TAB</h2>
+<p>
+<code>public static java.lang.String <strong>IMG_MAIN_TAB</strong></code>
+</p>
+<table>
+<tr>
+<td>Path to the XSLT Launch Images used for launch configurations</td>
+</tr>
+</table>
+<hr>
+<h2>IMG_OUTPUT_TAB</h2>
+<p>
+<code>public static java.lang.String <strong>IMG_OUTPUT_TAB</strong></code>
+</p>
+<table>
+<tr>
+<td>Path to the XSLT Output Images used for launch configurations</td>
+</tr>
+</table>
+<hr>
+<h2>IMG_PROCESSOR_TAB</h2>
+<p>
+<code>public static java.lang.String <strong>IMG_PROCESSOR_TAB</strong></code>
+</p>
+<table>
+<tr>
+<td>Path to the XSLT Processor Images used for launch configurations</td>
+</tr>
+</table>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>XSLDebugPluginImages</h2>
+<p>
+<code>public <strong>XSLDebugPluginImages</strong>()</code>
+</p>
+<p></p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.debug.internal.util</strong></font>
</p>
@@ -10957,7 +22945,7 @@ extends java.lang.Object</pre>Helper class to handle images provided by this plu
</td>
</tr>
<tr>
-<td><code><strong>XSLPluginImageHelper()</strong></code></td>
+<td><code><strong>XSLPluginImageHelper</strong>()</code></td>
</tr>
</table>
<br>
@@ -10968,12 +22956,6 @@ extends java.lang.Object</pre>Helper class to handle images provided by this plu
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static org.eclipse.wst.xsl.debug.internal.util.XSLPluginImageHelper</code></td><td width="" align="left"><code>getInstance()</code>
-<br>
- &nbsp;&nbsp;&nbsp;&nbsp;
- Gets the instance.</td>
-</tr>
-<tr valign="top">
<td width="20%" align="right"><code>public org.eclipse.swt.graphics.Image</code></td><td width="" align="left"><code>getImage(java.lang.String resource)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
@@ -10990,7 +22972,75 @@ extends java.lang.Object</pre>Helper class to handle images provided by this plu
attempt to find and load the image descriptor at the location specified
in resource.</td>
</tr>
+<tr valign="top">
+<td width="20%" align="right"><code>public static org.eclipse.wst.xsl.debug.internal.util.XSLPluginImageHelper</code></td><td width="" align="left"><code>getInstance()</code>
+<br>
+ &nbsp;&nbsp;&nbsp;&nbsp;
+ Gets the instance.</td>
+</tr>
+</table>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>XSLPluginImageHelper</h2>
+<p>
+<code>public <strong>XSLPluginImageHelper</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
</table>
+<h2>getImage</h2>
+<p>
+<code>public org.eclipse.swt.graphics.Image <strong>getImage</strong>(java.lang.String resource)</code>
+</p>
+<p>Retrieves the image associated with resource from the image registry.
+ If the image cannot be retrieved, attempt to find and load the image at
+ the location specified in resource.</p>
+<h3>Parameters</h3>
+<p>
+<code>resource</code> - the image to retrieve</p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.swt.graphics.Image</code> - Image the image associated with resource or null if one could not be found</p>
+<hr>
+<h2>getImageDescriptor</h2>
+<p>
+<code>public ImageDescriptor <strong>getImageDescriptor</strong>(java.lang.String resource)</code>
+</p>
+<p>Retrieves the image descriptor associated with resource from the image
+ descriptor registry. If the image descriptor cannot be retrieved,
+ attempt to find and load the image descriptor at the location specified
+ in resource.</p>
+<h3>Parameters</h3>
+<p>
+<code>resource</code> - the image descriptor to retrieve</p>
+<h3>Returns</h3>
+<p>
+<code>ImageDescriptor</code> - ImageDescriptor the image descriptor assocated with resource or the default "missing" image descriptor if one could not be found</p>
+<hr>
+<h2>getInstance</h2>
+<p>
+<code>public org.eclipse.wst.xsl.debug.internal.util.XSLPluginImageHelper <strong>getInstance</strong>()</code>
+</p>
+<p>Gets the instance.</p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.debug.internal.util.XSLPluginImageHelper</code> - Returns a XMLEditorPluginImageHelper</p>
<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.debug.ui</strong></font>
@@ -11014,7 +23064,7 @@ extends AbstractLaunchConfigurationTab</pre>An <code>AbstractLaunchConfiguration
</td>
</tr>
<tr>
-<td><code><strong>AbstractTableBlock()</strong></code></td>
+<td><code><strong>AbstractTableBlock</strong>()</code></td>
</tr>
</table>
<br>
@@ -11025,7 +23075,7 @@ extends AbstractLaunchConfigurationTab</pre>An <code>AbstractLaunchConfiguration
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected org.eclipse.swt.widgets.Table</code></td><td width="" align="left"><code>getTable()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>dispose()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@@ -11043,32 +23093,115 @@ extends AbstractLaunchConfigurationTab</pre>An <code>AbstractLaunchConfiguration
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>setSortColumn(int column)</code>
+<td width="20%" align="right"><code>protected org.eclipse.swt.widgets.Table</code></td><td width="" align="left"><code>getTable()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>saveColumnSettings()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>restoreColumnSettings()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Persist table settings into the give dialog store, prefixed with the
- given key.</td>
+ Restore table settings from the given dialog store using the given key.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>restoreColumnSettings()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>saveColumnSettings()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Restore table settings from the given dialog store using the given key.</td>
+ Persist table settings into the give dialog store, prefixed with the
+ given key.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>dispose()</code>
+<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>setSortColumn(int column)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>AbstractTableBlock</h2>
+<p>
+<code>public <strong>AbstractTableBlock</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>dispose</h2>
+<p>
+<code>public void <strong>dispose</strong>()</code>
+</p>
+<p></p>
+<hr>
+<h2>getDialogSettings</h2>
+<p>
+<code>protected IDialogSettings <strong>getDialogSettings</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>IDialogSettings</code>
+</p>
+<hr>
+<h2>getQualifier</h2>
+<p>
+<code>protected java.lang.String <strong>getQualifier</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
+<h2>getTable</h2>
+<p>
+<code>protected org.eclipse.swt.widgets.Table <strong>getTable</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.swt.widgets.Table</code>
+</p>
+<hr>
+<h2>restoreColumnSettings</h2>
+<p>
+<code>public void <strong>restoreColumnSettings</strong>()</code>
+</p>
+<p>Restore table settings from the given dialog store using the given key.</p>
+<hr>
+<h2>saveColumnSettings</h2>
+<p>
+<code>public void <strong>saveColumnSettings</strong>()</code>
+</p>
+<p>Persist table settings into the give dialog store, prefixed with the
+ given key.</p>
+<hr>
+<h2>setSortColumn</h2>
+<p>
+<code>protected void <strong>setSortColumn</strong>(int column)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>column</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.debug.ui</strong></font>
</p>
@@ -11096,6 +23229,27 @@ extends java.lang.Object</pre>Messages for the debug.ui package.<p></p>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getString</h2>
+<p>
+<code>public java.lang.String <strong>getString</strong>(java.lang.String key)</code>
+</p>
+<p>Get the message for the given key.</p>
+<h3>Parameters</h3>
+<p>
+<code>key</code> - the message key</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code> - the message</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.debug.ui</strong></font>
</p>
@@ -11117,133 +23271,133 @@ extends AbstractLaunchConfigurationTab</pre>A block that shows a text box with b
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected static int</code></td><td width="80%" align="left"><code>ERROR_DIRECTORY_NOT_SPECIFIED</code>
+<td width="20%" align="right"><code>protected java.lang.String</code></td><td width="80%" align="left"><code>defaultOutputFile</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected static int</code></td><td width="80%" align="left"><code>ERROR_DIRECTORY_DOES_NOT_EXIST</code>
+<td width="20%" align="right"><code>protected static int</code></td><td width="80%" align="left"><code>DIRECTORY_DIALOG_MESSAGE</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected static int</code></td><td width="80%" align="left"><code>GROUP_NAME</code>
+<td width="20%" align="right"><code>protected static int</code></td><td width="80%" align="left"><code>ERROR_DIRECTORY_DOES_NOT_EXIST</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected static int</code></td><td width="80%" align="left"><code>USE_DEFAULT_RADIO</code>
+<td width="20%" align="right"><code>protected static int</code></td><td width="80%" align="left"><code>ERROR_DIRECTORY_NOT_SPECIFIED</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected static int</code></td><td width="80%" align="left"><code>USE_OTHER_RADIO</code>
+<td width="20%" align="right"><code>protected org.eclipse.swt.widgets.Button</code></td><td width="80%" align="left"><code>fFileSystemButton</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected static int</code></td><td width="80%" align="left"><code>DIRECTORY_DIALOG_MESSAGE</code>
+<td width="20%" align="right"><code>protected static int</code></td><td width="80%" align="left"><code>FILE_SYSTEM_BUTTON</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected static int</code></td><td width="80%" align="left"><code>WORKSPACE_DIALOG_MESSAGE</code>
+<td width="20%" align="right"><code>protected java.lang.String</code></td><td width="80%" align="left"><code>fileLabel</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected static int</code></td><td width="80%" align="left"><code>VARIABLES_BUTTON</code>
+<td width="20%" align="right"><code>protected org.eclipse.swt.widgets.Button</code></td><td width="80%" align="left"><code>fVariablesButton</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected static int</code></td><td width="80%" align="left"><code>FILE_SYSTEM_BUTTON</code>
+<td width="20%" align="right"><code>protected org.eclipse.swt.widgets.Button</code></td><td width="80%" align="left"><code>fWorkspaceButton</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected static int</code></td><td width="80%" align="left"><code>WORKSPACE_BUTTON</code>
+<td width="20%" align="right"><code>protected static int</code></td><td width="80%" align="left"><code>GROUP_NAME</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected static int</code></td><td width="80%" align="left"><code>WORKSPACE_DIALOG_TITLE</code>
+<td width="20%" align="right"><code>protected java.lang.String</code></td><td width="80%" align="left"><code>outputFile</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected org.eclipse.swt.widgets.Button</code></td><td width="80%" align="left"><code>fWorkspaceButton</code>
+<td width="20%" align="right"><code>protected boolean</code></td><td width="80%" align="left"><code>required</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected org.eclipse.swt.widgets.Button</code></td><td width="80%" align="left"><code>fFileSystemButton</code>
+<td width="20%" align="right"><code>protected org.eclipse.swt.widgets.Text</code></td><td width="80%" align="left"><code>resourceText</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected org.eclipse.swt.widgets.Button</code></td><td width="80%" align="left"><code>fVariablesButton</code>
+<td width="20%" align="right"><code>protected boolean</code></td><td width="80%" align="left"><code>showDefault</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected org.eclipse.swt.widgets.Button</code></td><td width="80%" align="left"><code>useDefaultCheckButton</code>
+<td width="20%" align="right"><code>protected static int</code></td><td width="80%" align="left"><code>USE_DEFAULT_RADIO</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected org.eclipse.swt.widgets.Text</code></td><td width="80%" align="left"><code>resourceText</code>
+<td width="20%" align="right"><code>protected static int</code></td><td width="80%" align="left"><code>USE_OTHER_RADIO</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected org.eclipse.wst.xsl.internal.debug.ui.ResourceSelectionBlock.WidgetListener</code></td><td width="80%" align="left"><code>widgetListener</code>
+<td width="20%" align="right"><code>protected org.eclipse.swt.widgets.Button</code></td><td width="80%" align="left"><code>useDefaultCheckButton</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected boolean</code></td><td width="80%" align="left"><code>showDefault</code>
+<td width="20%" align="right"><code>protected static int</code></td><td width="80%" align="left"><code>VARIABLES_BUTTON</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected boolean</code></td><td width="80%" align="left"><code>required</code>
+<td width="20%" align="right"><code>protected org.eclipse.wst.xsl.internal.debug.ui.ResourceSelectionBlock.WidgetListener</code></td><td width="80%" align="left"><code>widgetListener</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected java.lang.String</code></td><td width="80%" align="left"><code>defaultOutputFile</code>
+<td width="20%" align="right"><code>protected static int</code></td><td width="80%" align="left"><code>WORKSPACE_BUTTON</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected java.lang.String</code></td><td width="80%" align="left"><code>outputFile</code>
+<td width="20%" align="right"><code>protected static int</code></td><td width="80%" align="left"><code>WORKSPACE_DIALOG_MESSAGE</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected java.lang.String</code></td><td width="80%" align="left"><code>fileLabel</code>
+<td width="20%" align="right"><code>protected static int</code></td><td width="80%" align="left"><code>WORKSPACE_DIALOG_TITLE</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@@ -11257,34 +23411,34 @@ extends AbstractLaunchConfigurationTab</pre>A block that shows a text box with b
</td>
</tr>
<tr>
-<td><code><strong>ResourceSelectionBlock()</strong></code></td>
+<td><code><strong>ResourceSelectionBlock</strong>()</code></td>
</tr>
<tr>
-<td><code><strong>ResourceSelectionBlock(boolean showDefault)</strong></code></td>
+<td><code><strong>ResourceSelectionBlock</strong>(boolean showDefault)</code></td>
</tr>
<tr>
-<td><code><strong>ResourceSelectionBlock(int resourceType
+<td><code><strong>ResourceSelectionBlock</strong>(int resourceType
,
- boolean showDefault)</strong></code></td>
+ boolean showDefault)</code></td>
</tr>
<tr>
-<td><code><strong>ResourceSelectionBlock(int resourceType
+<td><code><strong>ResourceSelectionBlock</strong>(int resourceType
,
boolean showDefault
,
- boolean required)</strong></code></td>
+ boolean required)</code></td>
</tr>
<tr>
-<td><code><strong>ResourceSelectionBlock(int resourceType
+<td><code><strong>ResourceSelectionBlock</strong>(int resourceType
,
boolean showDefault
,
boolean required
,
- boolean mustExist)</strong></code></td>
+ boolean mustExist)</code></td>
</tr>
<tr>
-<td><code><strong>ResourceSelectionBlock.WidgetListener()</strong></code></td>
+<td><code><strong>ResourceSelectionBlock.WidgetListener</strong>()</code></td>
</tr>
</table>
<br>
@@ -11295,82 +23449,82 @@ extends AbstractLaunchConfigurationTab</pre>A block that shows a text box with b
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>createControl(org.eclipse.swt.widgets.Composite parent)</code>
+<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>createButtons(org.eclipse.swt.widgets.Composite parent)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected org.eclipse.swt.widgets.Composite</code></td><td width="" align="left"><code>createContainer(org.eclipse.swt.widgets.Composite parent)</code>
+<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>createCheckboxAndText(org.eclipse.swt.widgets.Composite parent)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>createContents(org.eclipse.swt.widgets.Composite parent)</code>
+<td width="20%" align="right"><code>protected org.eclipse.swt.widgets.Composite</code></td><td width="" align="left"><code>createContainer(org.eclipse.swt.widgets.Composite parent)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>createCheckboxAndText(org.eclipse.swt.widgets.Composite parent)</code>
+<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>createContents(org.eclipse.swt.widgets.Composite parent)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>createButtons(org.eclipse.swt.widgets.Composite parent)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>createControl(org.eclipse.swt.widgets.Composite parent)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>updateResourceText(boolean useDefault)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>dispose()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>dispose()</code>
+<td width="20%" align="right"><code>protected java.lang.String[]</code></td><td width="" align="left"><code>getFileExtensions()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>handleExternalResourceBrowseButtonSelected()</code>
+<td width="20%" align="right"><code>protected ILaunchConfiguration</code></td><td width="" align="left"><code>getLaunchConfiguration()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected java.lang.String[]</code></td><td width="" align="left"><code>getFileExtensions()</code>
+<td width="20%" align="right"><code>protected java.lang.String</code></td><td width="" align="left"><code>getMessage(int type)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>handleWorkspaceResourceBrowseButtonSelected()</code>
+<td width="20%" align="right"><code>protected IResource</code></td><td width="" align="left"><code>getResource()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- </td>
+ Returns the selected workspace container,or <code>null</code></td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected IPath</code></td><td width="" align="left"><code>openWorkspaceResourceDialog()</code>
+<td width="20%" align="right"><code>protected ViewerFilter</code></td><td width="" align="left"><code>getResourceFilter()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected ViewerFilter</code></td><td width="" align="left"><code>getResourceFilter()</code>
+<td width="20%" align="right"><code>protected java.lang.String</code></td><td width="" align="left"><code>getText()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected IResource</code></td><td width="" align="left"><code>getResource()</code>
+<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>handleExternalResourceBrowseButtonSelected()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Returns the selected workspace container,or <code>null</code></td>
+ </td>
</tr>
<tr valign="top">
<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>handleResourceVariablesButtonSelected()</code>
@@ -11379,7 +23533,7 @@ extends AbstractLaunchConfigurationTab</pre>A block that shows a text box with b
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>setDefaultResource()</code>
+<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>handleWorkspaceResourceBrowseButtonSelected()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@@ -11391,49 +23545,450 @@ extends AbstractLaunchConfigurationTab</pre>A block that shows a text box with b
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected boolean</code></td><td width="" align="left"><code>validateResource(java.lang.String workingDirPath)</code>
+<td width="20%" align="right"><code>protected IPath</code></td><td width="" align="left"><code>openWorkspaceResourceDialog()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected java.lang.String</code></td><td width="" align="left"><code>getMessage(int type)</code>
+<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>setDefaultResource()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>textModified()</code>
+<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>setLaunchConfiguration(ILaunchConfiguration config)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected java.lang.String</code></td><td width="" align="left"><code>getText()</code>
+<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>setText(java.lang.String text)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>setText(java.lang.String text)</code>
+<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>textModified()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>setLaunchConfiguration(ILaunchConfiguration config)</code>
+<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>updateResourceText(boolean useDefault)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected ILaunchConfiguration</code></td><td width="" align="left"><code>getLaunchConfiguration()</code>
+<td width="20%" align="right"><code>protected boolean</code></td><td width="" align="left"><code>validateResource(java.lang.String workingDirPath)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>defaultOutputFile</h2>
+<p>
+<code>protected java.lang.String <strong>defaultOutputFile</strong></code>
+</p>
+<hr>
+<h2>DIRECTORY_DIALOG_MESSAGE</h2>
+<p>
+<code>protected static int <strong>DIRECTORY_DIALOG_MESSAGE</strong></code>
+</p>
+<hr>
+<h2>ERROR_DIRECTORY_DOES_NOT_EXIST</h2>
+<p>
+<code>protected static int <strong>ERROR_DIRECTORY_DOES_NOT_EXIST</strong></code>
+</p>
+<hr>
+<h2>ERROR_DIRECTORY_NOT_SPECIFIED</h2>
+<p>
+<code>protected static int <strong>ERROR_DIRECTORY_NOT_SPECIFIED</strong></code>
+</p>
+<hr>
+<h2>fFileSystemButton</h2>
+<p>
+<code>protected org.eclipse.swt.widgets.Button <strong>fFileSystemButton</strong></code>
+</p>
+<hr>
+<h2>FILE_SYSTEM_BUTTON</h2>
+<p>
+<code>protected static int <strong>FILE_SYSTEM_BUTTON</strong></code>
+</p>
+<hr>
+<h2>fileLabel</h2>
+<p>
+<code>protected java.lang.String <strong>fileLabel</strong></code>
+</p>
+<hr>
+<h2>fVariablesButton</h2>
+<p>
+<code>protected org.eclipse.swt.widgets.Button <strong>fVariablesButton</strong></code>
+</p>
+<hr>
+<h2>fWorkspaceButton</h2>
+<p>
+<code>protected org.eclipse.swt.widgets.Button <strong>fWorkspaceButton</strong></code>
+</p>
+<hr>
+<h2>GROUP_NAME</h2>
+<p>
+<code>protected static int <strong>GROUP_NAME</strong></code>
+</p>
+<hr>
+<h2>outputFile</h2>
+<p>
+<code>protected java.lang.String <strong>outputFile</strong></code>
+</p>
+<hr>
+<h2>required</h2>
+<p>
+<code>protected boolean <strong>required</strong></code>
+</p>
+<hr>
+<h2>resourceText</h2>
+<p>
+<code>protected org.eclipse.swt.widgets.Text <strong>resourceText</strong></code>
+</p>
+<hr>
+<h2>showDefault</h2>
+<p>
+<code>protected boolean <strong>showDefault</strong></code>
+</p>
+<hr>
+<h2>USE_DEFAULT_RADIO</h2>
+<p>
+<code>protected static int <strong>USE_DEFAULT_RADIO</strong></code>
+</p>
+<hr>
+<h2>USE_OTHER_RADIO</h2>
+<p>
+<code>protected static int <strong>USE_OTHER_RADIO</strong></code>
+</p>
+<hr>
+<h2>useDefaultCheckButton</h2>
+<p>
+<code>protected org.eclipse.swt.widgets.Button <strong>useDefaultCheckButton</strong></code>
+</p>
+<hr>
+<h2>VARIABLES_BUTTON</h2>
+<p>
+<code>protected static int <strong>VARIABLES_BUTTON</strong></code>
+</p>
+<hr>
+<h2>widgetListener</h2>
+<p>
+<code>protected org.eclipse.wst.xsl.internal.debug.ui.ResourceSelectionBlock.WidgetListener <strong>widgetListener</strong></code>
+</p>
+<hr>
+<h2>WORKSPACE_BUTTON</h2>
+<p>
+<code>protected static int <strong>WORKSPACE_BUTTON</strong></code>
+</p>
+<hr>
+<h2>WORKSPACE_DIALOG_MESSAGE</h2>
+<p>
+<code>protected static int <strong>WORKSPACE_DIALOG_MESSAGE</strong></code>
+</p>
+<hr>
+<h2>WORKSPACE_DIALOG_TITLE</h2>
+<p>
+<code>protected static int <strong>WORKSPACE_DIALOG_TITLE</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>ResourceSelectionBlock</h2>
+<p>
+<code>public <strong>ResourceSelectionBlock</strong>()</code>
+</p>
+<p>Same as <code>new ResourceSelectionBlock(true)</code></p>
+<hr>
+<h2>ResourceSelectionBlock</h2>
+<p>
+<code>public <strong>ResourceSelectionBlock</strong>(boolean showDefault)</code>
+</p>
+<p>Same as <code>new ResourceSelectionBlock(IResource.FOLDER,showDefault)</code></p>
+<hr>
+<h2>ResourceSelectionBlock</h2>
+<p>
+<code>public <strong>ResourceSelectionBlock</strong>(int resourceType
+ ,
+ boolean showDefault)</code>
+</p>
+<p>Same as <code>new ResourceSelectionBlock(resourceType,showDefault,true)</code></p>
+<hr>
+<h2>ResourceSelectionBlock</h2>
+<p>
+<code>public <strong>ResourceSelectionBlock</strong>(int resourceType
+ ,
+ boolean showDefault
+ ,
+ boolean required)</code>
+</p>
+<p>Same as <code>new ResourceSelectionBlock(resourceType,showDefault,required,true)</code></p>
+<hr>
+<h2>ResourceSelectionBlock</h2>
+<p>
+<code>public <strong>ResourceSelectionBlock</strong>(int resourceType
+ ,
+ boolean showDefault
+ ,
+ boolean required
+ ,
+ boolean mustExist)</code>
+</p>
+<p>Create a new instance of this.</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>createButtons</h2>
+<p>
+<code>protected void <strong>createButtons</strong>(org.eclipse.swt.widgets.Composite parent)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>parent</code>
+</p>
+<hr>
+<h2>createCheckboxAndText</h2>
+<p>
+<code>protected void <strong>createCheckboxAndText</strong>(org.eclipse.swt.widgets.Composite parent)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>parent</code>
+</p>
+<hr>
+<h2>createContainer</h2>
+<p>
+<code>protected org.eclipse.swt.widgets.Composite <strong>createContainer</strong>(org.eclipse.swt.widgets.Composite parent)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>parent</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.swt.widgets.Composite</code>
+</p>
+<hr>
+<h2>createContents</h2>
+<p>
+<code>protected void <strong>createContents</strong>(org.eclipse.swt.widgets.Composite parent)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>parent</code>
+</p>
+<hr>
+<h2>createControl</h2>
+<p>
+<code>public void <strong>createControl</strong>(org.eclipse.swt.widgets.Composite parent)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>parent</code>
+</p>
+<hr>
+<h2>dispose</h2>
+<p>
+<code>public void <strong>dispose</strong>()</code>
+</p>
+<p></p>
+<hr>
+<h2>getFileExtensions</h2>
+<p>
+<code>protected java.lang.String[] <strong>getFileExtensions</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String[]</code>
+</p>
+<hr>
+<h2>getLaunchConfiguration</h2>
+<p>
+<code>protected ILaunchConfiguration <strong>getLaunchConfiguration</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>ILaunchConfiguration</code>
+</p>
+<hr>
+<h2>getMessage</h2>
+<p>
+<code>protected java.lang.String <strong>getMessage</strong>(int type)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>type</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
+<h2>getResource</h2>
+<p>
+<code>protected IResource <strong>getResource</strong>()</code>
+</p>
+<p>Returns the selected workspace container,or <code>null</code></p>
+<h3>Returns</h3>
+<p>
+<code>IResource</code>
+</p>
+<hr>
+<h2>getResourceFilter</h2>
+<p>
+<code>protected ViewerFilter <strong>getResourceFilter</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>ViewerFilter</code>
+</p>
+<hr>
+<h2>getText</h2>
+<p>
+<code>protected java.lang.String <strong>getText</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
+<h2>handleExternalResourceBrowseButtonSelected</h2>
+<p>
+<code>protected void <strong>handleExternalResourceBrowseButtonSelected</strong>()</code>
+</p>
+<p></p>
+<hr>
+<h2>handleResourceVariablesButtonSelected</h2>
+<p>
+<code>protected void <strong>handleResourceVariablesButtonSelected</strong>()</code>
+</p>
+<p></p>
+<hr>
+<h2>handleWorkspaceResourceBrowseButtonSelected</h2>
+<p>
+<code>protected void <strong>handleWorkspaceResourceBrowseButtonSelected</strong>()</code>
+</p>
+<p></p>
+<hr>
+<h2>isValid</h2>
+<p>
+<code>public boolean <strong>isValid</strong>(ILaunchConfiguration config)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>config</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<hr>
+<h2>openWorkspaceResourceDialog</h2>
+<p>
+<code>protected IPath <strong>openWorkspaceResourceDialog</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>IPath</code>
+</p>
+<hr>
+<h2>setDefaultResource</h2>
+<p>
+<code>protected void <strong>setDefaultResource</strong>()</code>
+</p>
+<p></p>
+<hr>
+<h2>setLaunchConfiguration</h2>
+<p>
+<code>protected void <strong>setLaunchConfiguration</strong>(ILaunchConfiguration config)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>config</code>
+</p>
+<hr>
+<h2>setText</h2>
+<p>
+<code>protected void <strong>setText</strong>(java.lang.String text)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>text</code>
+</p>
+<hr>
+<h2>textModified</h2>
+<p>
+<code>protected void <strong>textModified</strong>()</code>
+</p>
+<p></p>
+<hr>
+<h2>updateResourceText</h2>
+<p>
+<code>protected void <strong>updateResourceText</strong>(boolean useDefault)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>useDefault</code>
+</p>
+<hr>
+<h2>validateResource</h2>
+<p>
+<code>protected boolean <strong>validateResource</strong>(java.lang.String workingDirPath)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>workingDirPath</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.debug.ui</strong></font>
</p>
@@ -11454,7 +24009,7 @@ extends org.eclipse.swt.events.SelectionAdapter</pre>
</td>
</tr>
<tr>
-<td><code><strong>ResourceSelectionBlock.WidgetListener()</strong></code></td>
+<td><code><strong>ResourceSelectionBlock.WidgetListener</strong>()</code></td>
</tr>
</table>
<br>
@@ -11478,6 +24033,50 @@ extends org.eclipse.swt.events.SelectionAdapter</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>ResourceSelectionBlock.WidgetListener</h2>
+<p>
+<code>package-private <strong>ResourceSelectionBlock.WidgetListener</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>modifyText</h2>
+<p>
+<code>public void <strong>modifyText</strong>(org.eclipse.swt.events.ModifyEvent e)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>e</code>
+</p>
+<hr>
+<h2>widgetSelected</h2>
+<p>
+<code>public void <strong>widgetSelected</strong>(org.eclipse.swt.events.SelectionEvent e)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>e</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.debug.ui</strong></font>
</p>
@@ -11498,7 +24097,7 @@ extends org.eclipse.swt.events.SelectionAdapter</pre>
</td>
</tr>
<tr>
-<td><code><strong>ResourceSelectionBlock.WidgetListener()</strong></code></td>
+<td><code><strong>ResourceSelectionBlock.WidgetListener</strong>()</code></td>
</tr>
</table>
<br>
@@ -11522,6 +24121,50 @@ extends org.eclipse.swt.events.SelectionAdapter</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>ResourceSelectionBlock.WidgetListener</h2>
+<p>
+<code>package-private <strong>ResourceSelectionBlock.WidgetListener</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>modifyText</h2>
+<p>
+<code>public void <strong>modifyText</strong>(org.eclipse.swt.events.ModifyEvent e)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>e</code>
+</p>
+<hr>
+<h2>widgetSelected</h2>
+<p>
+<code>public void <strong>widgetSelected</strong>(org.eclipse.swt.events.SelectionEvent e)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>e</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.debug.ui</strong></font>
</p>
@@ -11550,7 +24193,7 @@ extends java.lang.Object</pre><p>
</td>
</tr>
<tr>
-<td><code><strong>XSLConsoleLineTracker()</strong></code></td>
+<td><code><strong>XSLConsoleLineTracker</strong>()</code></td>
</tr>
</table>
<br>
@@ -11580,6 +24223,56 @@ extends java.lang.Object</pre><p>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>XSLConsoleLineTracker</h2>
+<p>
+<code>public <strong>XSLConsoleLineTracker</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>dispose</h2>
+<p>
+<code>public void <strong>dispose</strong>()</code>
+</p>
+<p></p>
+<hr>
+<h2>init</h2>
+<p>
+<code>public void <strong>init</strong>(IConsole console)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>console</code>
+</p>
+<hr>
+<h2>lineAppended</h2>
+<p>
+<code>public void <strong>lineAppended</strong>(IRegion line)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>line</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.debug.ui</strong></font>
</p>
@@ -11600,28 +24293,28 @@ extends java.lang.Object</pre>Constants for the XSL Debug UI.<p></p>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>PROCESSOR_DETAILS_DIALOG</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>FEATURES_BLOCK</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Constant used to store column setting preferences for the &lt;code&gt;InstalledProcessorsBlock&lt;/code&gt;</td>
+ Constant used to store column setting preferences for the &lt;code&gt;FeaturesBlock&lt;/code&gt;</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>MAIN_PARAMATERS_BLOCK</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>FEATURES_LAUNCH_BLOCK</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Constant used to store column setting preferences for the &lt;code&gt;ParametersBlock&lt;/code&gt;</td>
+ Constant used to store column setting preferences for the &lt;code&gt;FeaturesBlock&lt;/code&gt;</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>MAIN_TRANSFORMS_BLOCK</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>MAIN_PARAMATERS_BLOCK</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Constant used to store column setting preferences for the &lt;code&gt;TransformsBlock&lt;/code&gt;</td>
+ Constant used to store column setting preferences for the &lt;code&gt;ParametersBlock&lt;/code&gt;</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>FEATURES_BLOCK</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>MAIN_TRANSFORMS_BLOCK</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Constant used to store column setting preferences for the &lt;code&gt;FeaturesBlock&lt;/code&gt;</td>
+ Constant used to store column setting preferences for the &lt;code&gt;TransformsBlock&lt;/code&gt;</td>
</tr>
<tr valign="top">
<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>OUTPUT_BLOCK</code>
@@ -11630,10 +24323,10 @@ extends java.lang.Object</pre>Constants for the XSL Debug UI.<p></p>
Constant used to store column setting preferences for the &lt;code&gt;OutputBlock&lt;/code&gt;</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>FEATURES_LAUNCH_BLOCK</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>PROCESSOR_DETAILS_DIALOG</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Constant used to store column setting preferences for the &lt;code&gt;FeaturesBlock&lt;/code&gt;</td>
+ Constant used to store column setting preferences for the &lt;code&gt;InstalledProcessorsBlock&lt;/code&gt;</td>
</tr>
<tr valign="top">
<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>XSL_EDITOR_ID</code>
@@ -11650,7 +24343,7 @@ extends java.lang.Object</pre>Constants for the XSL Debug UI.<p></p>
</td>
</tr>
<tr>
-<td><code><strong>XSLDebugUIConstants()</strong></code></td>
+<td><code><strong>XSLDebugUIConstants</strong>()</code></td>
</tr>
</table>
<br>
@@ -11662,6 +24355,100 @@ extends java.lang.Object</pre>Constants for the XSL Debug UI.<p></p>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>FEATURES_BLOCK</h2>
+<p>
+<code>public static java.lang.String <strong>FEATURES_BLOCK</strong></code>
+</p>
+<table>
+<tr>
+<td>Constant used to store column setting preferences for the <code>FeaturesBlock</code></td>
+</tr>
+</table>
+<hr>
+<h2>FEATURES_LAUNCH_BLOCK</h2>
+<p>
+<code>public static java.lang.String <strong>FEATURES_LAUNCH_BLOCK</strong></code>
+</p>
+<table>
+<tr>
+<td>Constant used to store column setting preferences for the <code>FeaturesBlock</code></td>
+</tr>
+</table>
+<hr>
+<h2>MAIN_PARAMATERS_BLOCK</h2>
+<p>
+<code>public static java.lang.String <strong>MAIN_PARAMATERS_BLOCK</strong></code>
+</p>
+<table>
+<tr>
+<td>Constant used to store column setting preferences for the <code>ParametersBlock</code></td>
+</tr>
+</table>
+<hr>
+<h2>MAIN_TRANSFORMS_BLOCK</h2>
+<p>
+<code>public static java.lang.String <strong>MAIN_TRANSFORMS_BLOCK</strong></code>
+</p>
+<table>
+<tr>
+<td>Constant used to store column setting preferences for the <code>TransformsBlock</code></td>
+</tr>
+</table>
+<hr>
+<h2>OUTPUT_BLOCK</h2>
+<p>
+<code>public static java.lang.String <strong>OUTPUT_BLOCK</strong></code>
+</p>
+<table>
+<tr>
+<td>Constant used to store column setting preferences for the <code>OutputBlock</code></td>
+</tr>
+</table>
+<hr>
+<h2>PROCESSOR_DETAILS_DIALOG</h2>
+<p>
+<code>public static java.lang.String <strong>PROCESSOR_DETAILS_DIALOG</strong></code>
+</p>
+<table>
+<tr>
+<td>Constant used to store column setting preferences for the <code>InstalledProcessorsBlock</code></td>
+</tr>
+</table>
+<hr>
+<h2>XSL_EDITOR_ID</h2>
+<p>
+<code>public static java.lang.String <strong>XSL_EDITOR_ID</strong></code>
+</p>
+<table>
+<tr>
+<td>The id of the XSL editor</td>
+</tr>
+</table>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>XSLDebugUIConstants</h2>
+<p>
+<code>public <strong>XSLDebugUIConstants</strong>()</code>
+</p>
+<p></p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.debug.ui</strong></font>
</p>
@@ -11696,7 +24483,7 @@ extends AbstractUIPlugin</pre>The XSL Debug UI plugin.<p></p>
</td>
</tr>
<tr>
-<td><code><strong>XSLDebugUIPlugin()</strong></code></td>
+<td><code><strong>XSLDebugUIPlugin</strong>()</code></td>
</tr>
</table>
<br>
@@ -11707,36 +24494,34 @@ extends AbstractUIPlugin</pre>The XSL Debug UI plugin.<p></p>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>start(BundleContext context)</code>
+<td width="20%" align="right"><code>public static IWorkbenchPage</code></td><td width="" align="left"><code>getActivePage()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- </td>
+ Get the active page of the active workbench window.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>stop(BundleContext context)</code>
+<td width="20%" align="right"><code>public static org.eclipse.swt.widgets.Shell</code></td><td width="" align="left"><code>getActiveWorkbenchShell()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- </td>
+ Get the shell of the active workbench window.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static org.eclipse.wst.xsl.internal.debug.ui.XSLDebugUIPlugin</code></td><td width="" align="left"><code>getDefault()</code>
+<td width="20%" align="right"><code>public static IWorkbenchWindow</code></td><td width="" align="left"><code>getActiveWorkbenchWindow()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Get the singleton instance of this.</td>
+ Get the active workbench window from the workbench.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static ImageDescriptor</code></td><td width="" align="left"><code>getImageDescriptor(java.lang.String path)</code>
+<td width="20%" align="right"><code>public static org.eclipse.wst.xsl.internal.debug.ui.XSLDebugUIPlugin</code></td><td width="" align="left"><code>getDefault()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Get an ImageDescriptor from a path in this bundle.</td>
+ Get the singleton instance of this.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static void</code></td><td width="" align="left"><code>showPreferencePage(java.lang.String id
- ,
- IPreferencePage page)</code>
+<td width="20%" align="right"><code>public static ImageDescriptor</code></td><td width="" align="left"><code>getImageDescriptor(java.lang.String path)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Convenience method for opening a given preference page.</td>
+ Get an ImageDescriptor from a path in this bundle.</td>
</tr>
<tr valign="top">
<td width="20%" align="right"><code>public static org.eclipse.swt.widgets.Display</code></td><td width="" align="left"><code>getStandardDisplay()</code>
@@ -11745,31 +24530,183 @@ extends AbstractUIPlugin</pre>The XSL Debug UI plugin.<p></p>
Get the current Display if possible, or else the default Display.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static IWorkbenchWindow</code></td><td width="" align="left"><code>getActiveWorkbenchWindow()</code>
+<td width="20%" align="right"><code>public static void</code></td><td width="" align="left"><code>log(java.lang.Exception e)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Get the active workbench window from the workbench.</td>
+ Log the given exception by creating a new Status.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static org.eclipse.swt.widgets.Shell</code></td><td width="" align="left"><code>getActiveWorkbenchShell()</code>
+<td width="20%" align="right"><code>public static void</code></td><td width="" align="left"><code>showPreferencePage(java.lang.String id
+ ,
+ IPreferencePage page)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Get the shell of the active workbench window.</td>
+ Convenience method for opening a given preference page.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static IWorkbenchPage</code></td><td width="" align="left"><code>getActivePage()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>start(BundleContext context)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Get the active page of the active workbench window.</td>
+ </td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static void</code></td><td width="" align="left"><code>log(java.lang.Exception e)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>stop(BundleContext context)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Log the given exception by creating a new Status.</td>
+ </td>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>PLUGIN_ID</h2>
+<p>
+<code>public static java.lang.String <strong>PLUGIN_ID</strong></code>
+</p>
+<table>
+<tr>
+<td>The id of this.</td>
+</tr>
+</table>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>XSLDebugUIPlugin</h2>
+<p>
+<code>public <strong>XSLDebugUIPlugin</strong>()</code>
+</p>
+<p>Create a new instance of this.</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getActivePage</h2>
+<p>
+<code>public IWorkbenchPage <strong>getActivePage</strong>()</code>
+</p>
+<p>Get the active page of the active workbench window.</p>
+<h3>Returns</h3>
+<p>
+<code>IWorkbenchPage</code> - the active page</p>
+<hr>
+<h2>getActiveWorkbenchShell</h2>
+<p>
+<code>public org.eclipse.swt.widgets.Shell <strong>getActiveWorkbenchShell</strong>()</code>
+</p>
+<p>Get the shell of the active workbench window.</p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.swt.widgets.Shell</code> - the active workbench shell</p>
+<hr>
+<h2>getActiveWorkbenchWindow</h2>
+<p>
+<code>public IWorkbenchWindow <strong>getActiveWorkbenchWindow</strong>()</code>
+</p>
+<p>Get the active workbench window from the workbench.</p>
+<h3>Returns</h3>
+<p>
+<code>IWorkbenchWindow</code> - the active workbench window</p>
+<hr>
+<h2>getDefault</h2>
+<p>
+<code>public org.eclipse.wst.xsl.internal.debug.ui.XSLDebugUIPlugin <strong>getDefault</strong>()</code>
+</p>
+<p>Get the singleton instance of this.</p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.internal.debug.ui.XSLDebugUIPlugin</code> - the singleton</p>
+<hr>
+<h2>getImageDescriptor</h2>
+<p>
+<code>public ImageDescriptor <strong>getImageDescriptor</strong>(java.lang.String path)</code>
+</p>
+<p>Get an ImageDescriptor from a path in this bundle.</p>
+<h3>Parameters</h3>
+<p>
+<code>path</code> - the path to the image</p>
+<h3>Returns</h3>
+<p>
+<code>ImageDescriptor</code> - the ImageDescriptor</p>
+<hr>
+<h2>getStandardDisplay</h2>
+<p>
+<code>public org.eclipse.swt.widgets.Display <strong>getStandardDisplay</strong>()</code>
+</p>
+<p>Get the current Display if possible, or else the default Display.</p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.swt.widgets.Display</code> - the current or default Display</p>
+<hr>
+<h2>log</h2>
+<p>
+<code>public void <strong>log</strong>(java.lang.Exception e)</code>
+</p>
+<p>Log the given exception by creating a new Status.</p>
+<h3>Parameters</h3>
+<p>
+<code>e</code> - the exception to log</p>
+<hr>
+<h2>showPreferencePage</h2>
+<p>
+<code>public void <strong>showPreferencePage</strong>(java.lang.String id
+ ,
+ IPreferencePage page)</code>
+</p>
+<p>Convenience method for opening a given preference page.</p>
+<h3>Parameters</h3>
+<p>
+<code>id</code> - the id of the preference page</p>
+<p>
+<code>page</code> - the preference page to show</p>
+<hr>
+<h2>start</h2>
+<p>
+<code>public void <strong>start</strong>(BundleContext context)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>context</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>java.lang.Exception</code>
+</p>
+<hr>
+<h2>stop</h2>
+<p>
+<code>public void <strong>stop</strong>(BundleContext context)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>context</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>java.lang.Exception</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.debug.ui</strong></font>
</p>
@@ -11791,7 +24728,7 @@ extends AbstractLaunchConfigurationTab</pre>The base class for XSL launch config
</td>
</tr>
<tr>
-<td><code><strong>XSLLaunchConfigurationTab()</strong></code></td>
+<td><code><strong>XSLLaunchConfigurationTab</strong>()</code></td>
</tr>
</table>
<br>
@@ -11802,7 +24739,7 @@ extends AbstractLaunchConfigurationTab</pre>The base class for XSL launch config
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>setBlocks(ILaunchConfigurationTab[] blocks)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>activated(ILaunchConfigurationWorkingCopy workingCopy)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@@ -11814,61 +24751,195 @@ extends AbstractLaunchConfigurationTab</pre>The base class for XSL launch config
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setDefaults(ILaunchConfigurationWorkingCopy configuration)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>dispose()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>initializeFrom(ILaunchConfiguration configuration)</code>
+<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getErrorMessage()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>performApply(ILaunchConfigurationWorkingCopy configuration)</code>
+<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getMessage()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setLaunchConfigurationDialog(ILaunchConfigurationDialog dialog)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>initializeFrom(ILaunchConfiguration configuration)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>dispose()</code>
+<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>isValid(ILaunchConfiguration configuration)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>activated(ILaunchConfigurationWorkingCopy workingCopy)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>performApply(ILaunchConfigurationWorkingCopy configuration)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>isValid(ILaunchConfiguration configuration)</code>
+<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>setBlocks(ILaunchConfigurationTab[] blocks)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getErrorMessage()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setDefaults(ILaunchConfigurationWorkingCopy configuration)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getMessage()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setLaunchConfigurationDialog(ILaunchConfigurationDialog dialog)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>XSLLaunchConfigurationTab</h2>
+<p>
+<code>public <strong>XSLLaunchConfigurationTab</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>activated</h2>
+<p>
+<code>public void <strong>activated</strong>(ILaunchConfigurationWorkingCopy workingCopy)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>workingCopy</code>
+</p>
+<hr>
+<h2>createControl</h2>
+<p>
+<code>public void <strong>createControl</strong>(org.eclipse.swt.widgets.Composite parent)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>parent</code>
+</p>
+<hr>
+<h2>dispose</h2>
+<p>
+<code>public void <strong>dispose</strong>()</code>
+</p>
+<p></p>
+<hr>
+<h2>getErrorMessage</h2>
+<p>
+<code>public java.lang.String <strong>getErrorMessage</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
+<h2>getMessage</h2>
+<p>
+<code>public java.lang.String <strong>getMessage</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
+<h2>initializeFrom</h2>
+<p>
+<code>public void <strong>initializeFrom</strong>(ILaunchConfiguration configuration)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>configuration</code>
+</p>
+<hr>
+<h2>isValid</h2>
+<p>
+<code>public boolean <strong>isValid</strong>(ILaunchConfiguration configuration)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>configuration</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<hr>
+<h2>performApply</h2>
+<p>
+<code>public void <strong>performApply</strong>(ILaunchConfigurationWorkingCopy configuration)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>configuration</code>
+</p>
+<hr>
+<h2>setBlocks</h2>
+<p>
+<code>protected void <strong>setBlocks</strong>(ILaunchConfigurationTab[] blocks)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>blocks</code>
+</p>
+<hr>
+<h2>setDefaults</h2>
+<p>
+<code>public void <strong>setDefaults</strong>(ILaunchConfigurationWorkingCopy configuration)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>configuration</code>
+</p>
+<hr>
+<h2>setLaunchConfigurationDialog</h2>
+<p>
+<code>public void <strong>setLaunchConfigurationDialog</strong>(ILaunchConfigurationDialog dialog)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>dialog</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.debug.ui</strong></font>
</p>
@@ -11917,7 +24988,7 @@ extends java.lang.Object</pre><table border=1>
</td>
</tr>
<tr>
-<td><code><strong>XSLLaunchShortcut()</strong></code></td>
+<td><code><strong>XSLLaunchShortcut</strong>()</code></td>
</tr>
</table>
<br>
@@ -11928,21 +24999,70 @@ extends java.lang.Object</pre><table border=1>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>launch(ISelection selection
- ,
- java.lang.String mode)</code>
+<td width="20%" align="right"><code>protected org.eclipse.swt.widgets.Shell</code></td><td width="" align="left"><code>getShell()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected org.eclipse.swt.widgets.Shell</code></td><td width="" align="left"><code>getShell()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>launch(ISelection selection
+ ,
+ java.lang.String mode)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>XSLLaunchShortcut</h2>
+<p>
+<code>public <strong>XSLLaunchShortcut</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getShell</h2>
+<p>
+<code>protected org.eclipse.swt.widgets.Shell <strong>getShell</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.swt.widgets.Shell</code>
+</p>
+<hr>
+<h2>launch</h2>
+<p>
+<code>public void <strong>launch</strong>(ISelection selection
+ ,
+ java.lang.String mode)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>selection</code>
+</p>
+<p>
+<code>mode</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.debug.ui</strong></font>
</p>
@@ -11963,7 +25083,7 @@ extends AbstractLaunchConfigurationTabGroup</pre>The tab group for the XSL tabs.
</td>
</tr>
<tr>
-<td><code><strong>XSLTTabGroup()</strong></code></td>
+<td><code><strong>XSLTTabGroup</strong>()</code></td>
</tr>
</table>
<br>
@@ -11983,6 +25103,45 @@ extends AbstractLaunchConfigurationTabGroup</pre>The tab group for the XSL tabs.
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>XSLTTabGroup</h2>
+<p>
+<code>public <strong>XSLTTabGroup</strong>()</code>
+</p>
+<p>Create a new instance of this.</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>createTabs</h2>
+<p>
+<code>public void <strong>createTabs</strong>(ILaunchConfigurationDialog dialog
+ ,
+ java.lang.String mode)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>dialog</code>
+</p>
+<p>
+<code>mode</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.debug.ui.actions</strong></font>
</p>
@@ -12003,9 +25162,9 @@ extends SelectionListenerAction</pre>A convenient base class for add/remove para
</td>
</tr>
<tr>
-<td><code><strong>AbstractParameterAction(java.lang.String text
+<td><code><strong>AbstractParameterAction</strong>(java.lang.String text
,
- org.eclipse.wst.xsl.internal.debug.ui.tabs.main.ParameterViewer viewer)</strong></code></td>
+ org.eclipse.wst.xsl.internal.debug.ui.tabs.main.ParameterViewer viewer)</code></td>
</tr>
</table>
<br>
@@ -12016,10 +25175,16 @@ extends SelectionListenerAction</pre>A convenient base class for add/remove para
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setViewer(org.eclipse.wst.xsl.internal.debug.ui.tabs.main.ParameterViewer viewer)</code>
+<td width="20%" align="right"><code>protected int</code></td><td width="" align="left"><code>getActionType()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Set the viewer.</td>
+ </td>
+</tr>
+<tr valign="top">
+<td width="20%" align="right"><code>protected org.eclipse.swt.widgets.Shell</code></td><td width="" align="left"><code>getShell()</code>
+<br>
+ &nbsp;&nbsp;&nbsp;&nbsp;
+ </td>
</tr>
<tr valign="top">
<td width="20%" align="right"><code>protected org.eclipse.wst.xsl.internal.debug.ui.tabs.main.ParameterViewer</code></td><td width="" align="left"><code>getViewer()</code>
@@ -12040,22 +25205,22 @@ extends SelectionListenerAction</pre>A convenient base class for add/remove para
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>update()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setShell(org.eclipse.swt.widgets.Shell shell)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- </td>
+ Set the shell that will be used for opening a dialog.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected org.eclipse.swt.widgets.Shell</code></td><td width="" align="left"><code>getShell()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setViewer(org.eclipse.wst.xsl.internal.debug.ui.tabs.main.ParameterViewer viewer)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- </td>
+ Set the viewer.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setShell(org.eclipse.swt.widgets.Shell shell)</code>
+<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>update()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Set the shell that will be used for opening a dialog.</td>
+ </td>
</tr>
<tr valign="top">
<td width="20%" align="right"><code>protected boolean</code></td><td width="" align="left"><code>updateSelection(IStructuredSelection selection)</code>
@@ -12063,13 +25228,120 @@ extends SelectionListenerAction</pre>A convenient base class for add/remove para
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
-<tr valign="top">
-<td width="20%" align="right"><code>protected int</code></td><td width="" align="left"><code>getActionType()</code>
-<br>
- &nbsp;&nbsp;&nbsp;&nbsp;
- </td>
+</table>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
</tr>
</table>
+<h2>AbstractParameterAction</h2>
+<p>
+<code>protected <strong>AbstractParameterAction</strong>(java.lang.String text
+ ,
+ org.eclipse.wst.xsl.internal.debug.ui.tabs.main.ParameterViewer viewer)</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getActionType</h2>
+<p>
+<code>protected int <strong>getActionType</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>int</code>
+</p>
+<hr>
+<h2>getShell</h2>
+<p>
+<code>protected org.eclipse.swt.widgets.Shell <strong>getShell</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.swt.widgets.Shell</code>
+</p>
+<hr>
+<h2>getViewer</h2>
+<p>
+<code>protected org.eclipse.wst.xsl.internal.debug.ui.tabs.main.ParameterViewer <strong>getViewer</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.internal.debug.ui.tabs.main.ParameterViewer</code>
+</p>
+<hr>
+<h2>setButton</h2>
+<p>
+<code>public void <strong>setButton</strong>(org.eclipse.swt.widgets.Button button)</code>
+</p>
+<p>Set the button associated with the action.</p>
+<h3>Parameters</h3>
+<p>
+<code>button</code> - the button</p>
+<hr>
+<h2>setEnabled</h2>
+<p>
+<code>public void <strong>setEnabled</strong>(boolean enabled)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>enabled</code>
+</p>
+<hr>
+<h2>setShell</h2>
+<p>
+<code>public void <strong>setShell</strong>(org.eclipse.swt.widgets.Shell shell)</code>
+</p>
+<p>Set the shell that will be used for opening a dialog.</p>
+<h3>Parameters</h3>
+<p>
+<code>shell</code> - the shell to use</p>
+<hr>
+<h2>setViewer</h2>
+<p>
+<code>public void <strong>setViewer</strong>(org.eclipse.wst.xsl.internal.debug.ui.tabs.main.ParameterViewer viewer)</code>
+</p>
+<p>Set the viewer.</p>
+<h3>Parameters</h3>
+<p>
+<code>viewer</code> - the parametere viewer</p>
+<hr>
+<h2>update</h2>
+<p>
+<code>protected void <strong>update</strong>()</code>
+</p>
+<p></p>
+<hr>
+<h2>updateSelection</h2>
+<p>
+<code>protected boolean <strong>updateSelection</strong>(IStructuredSelection selection)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>selection</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.debug.ui.actions</strong></font>
@@ -12091,22 +25363,16 @@ extends SelectionListenerAction</pre>A convenient base class for actions associa
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>DEFAULT</code>
-<br>
- &nbsp;&nbsp;&nbsp;&nbsp;
- The default action type.</td>
-</tr>
-<tr valign="top">
<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>ADD</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
The action type for add actions.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>REMOVE</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>DEFAULT</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- The action type for remove actions.</td>
+ The default action type.</td>
</tr>
<tr valign="top">
<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>MOVE</code>
@@ -12114,6 +25380,12 @@ extends SelectionListenerAction</pre>A convenient base class for actions associa
&nbsp;&nbsp;&nbsp;&nbsp;
The action type for move actions.</td>
</tr>
+<tr valign="top">
+<td width="20%" align="right"><code>public static int</code></td><td width="80%" align="left"><code>REMOVE</code>
+<br>
+ &nbsp;&nbsp;&nbsp;&nbsp;
+ The action type for remove actions.</td>
+</tr>
</table>
<br>
<table width="100%" border="1">
@@ -12123,9 +25395,9 @@ extends SelectionListenerAction</pre>A convenient base class for actions associa
</td>
</tr>
<tr>
-<td><code><strong>AbstractStylesheetAction(java.lang.String text
+<td><code><strong>AbstractStylesheetAction</strong>(java.lang.String text
,
- org.eclipse.wst.xsl.internal.debug.ui.tabs.main.StylesheetViewer viewer)</strong></code></td>
+ org.eclipse.wst.xsl.internal.debug.ui.tabs.main.StylesheetViewer viewer)</code></td>
</tr>
</table>
<br>
@@ -12142,87 +25414,307 @@ extends SelectionListenerAction</pre>A convenient base class for actions associa
Add an array of LaunchTransform's to the viewer.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setViewer(org.eclipse.wst.xsl.internal.debug.ui.tabs.main.StylesheetViewer viewer)</code>
+<td width="20%" align="right"><code>protected int</code></td><td width="" align="left"><code>getActionType()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Set the viewer associated with this action.</td>
+ </td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected org.eclipse.wst.xsl.internal.debug.ui.tabs.main.StylesheetViewer</code></td><td width="" align="left"><code>getViewer()</code>
+<td width="20%" align="right"><code>protected java.util.List</code></td><td width="" align="left"><code>getEntriesAsList()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setButton(org.eclipse.swt.widgets.Button button)</code>
+<td width="20%" align="right"><code>protected java.util.List</code></td><td width="" align="left"><code>getOrderedSelection()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Set the button associated with this action.</td>
+ </td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setEnabled(boolean enabled)</code>
+<td width="20%" align="right"><code>protected org.eclipse.swt.widgets.Shell</code></td><td width="" align="left"><code>getShell()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>update()</code>
+<td width="20%" align="right"><code>protected org.eclipse.wst.xsl.internal.debug.ui.tabs.main.StylesheetViewer</code></td><td width="" align="left"><code>getViewer()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected org.eclipse.swt.widgets.Shell</code></td><td width="" align="left"><code>getShell()</code>
+<td width="20%" align="right"><code>protected boolean</code></td><td width="" align="left"><code>isIndexSelected(IStructuredSelection selection
+ ,
+ int index)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setShell(org.eclipse.swt.widgets.Shell shell)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setButton(org.eclipse.swt.widgets.Button button)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Set the shell to be used for opening a dialog.</td>
+ Set the button associated with this action.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected boolean</code></td><td width="" align="left"><code>updateSelection(IStructuredSelection selection)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setEnabled(boolean enabled)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected int</code></td><td width="" align="left"><code>getActionType()</code>
+<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>setEntries(java.util.List list)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected java.util.List</code></td><td width="" align="left"><code>getOrderedSelection()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setShell(org.eclipse.swt.widgets.Shell shell)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- </td>
+ Set the shell to be used for opening a dialog.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected java.util.List</code></td><td width="" align="left"><code>getEntriesAsList()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setViewer(org.eclipse.wst.xsl.internal.debug.ui.tabs.main.StylesheetViewer viewer)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- </td>
+ Set the viewer associated with this action.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>setEntries(java.util.List list)</code>
+<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>update()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected boolean</code></td><td width="" align="left"><code>isIndexSelected(IStructuredSelection selection
- ,
- int index)</code>
+<td width="20%" align="right"><code>protected boolean</code></td><td width="" align="left"><code>updateSelection(IStructuredSelection selection)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>ADD</h2>
+<p>
+<code>public static int <strong>ADD</strong></code>
+</p>
+<table>
+<tr>
+<td>The action type for add actions.</td>
+</tr>
+</table>
+<hr>
+<h2>DEFAULT</h2>
+<p>
+<code>public static int <strong>DEFAULT</strong></code>
+</p>
+<table>
+<tr>
+<td>The default action type.</td>
+</tr>
+</table>
+<hr>
+<h2>MOVE</h2>
+<p>
+<code>public static int <strong>MOVE</strong></code>
+</p>
+<table>
+<tr>
+<td>The action type for move actions.</td>
+</tr>
+</table>
+<hr>
+<h2>REMOVE</h2>
+<p>
+<code>public static int <strong>REMOVE</strong></code>
+</p>
+<table>
+<tr>
+<td>The action type for remove actions.</td>
+</tr>
+</table>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>AbstractStylesheetAction</h2>
+<p>
+<code>protected <strong>AbstractStylesheetAction</strong>(java.lang.String text
+ ,
+ org.eclipse.wst.xsl.internal.debug.ui.tabs.main.StylesheetViewer viewer)</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>addTransforms</h2>
+<p>
+<code>public void <strong>addTransforms</strong>(org.eclipse.wst.xsl.launching.config.LaunchTransform[] res)</code>
+</p>
+<p>Add an array of LaunchTransform's to the viewer.</p>
+<h3>Parameters</h3>
+<p>
+<code>res</code> - launch transforms to add</p>
+<hr>
+<h2>getActionType</h2>
+<p>
+<code>protected int <strong>getActionType</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>int</code>
+</p>
+<hr>
+<h2>getEntriesAsList</h2>
+<p>
+<code>protected java.util.List <strong>getEntriesAsList</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.util.List</code>
+</p>
+<hr>
+<h2>getOrderedSelection</h2>
+<p>
+<code>protected java.util.List <strong>getOrderedSelection</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.util.List</code>
+</p>
+<hr>
+<h2>getShell</h2>
+<p>
+<code>protected org.eclipse.swt.widgets.Shell <strong>getShell</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.swt.widgets.Shell</code>
+</p>
+<hr>
+<h2>getViewer</h2>
+<p>
+<code>protected org.eclipse.wst.xsl.internal.debug.ui.tabs.main.StylesheetViewer <strong>getViewer</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.internal.debug.ui.tabs.main.StylesheetViewer</code>
+</p>
+<hr>
+<h2>isIndexSelected</h2>
+<p>
+<code>protected boolean <strong>isIndexSelected</strong>(IStructuredSelection selection
+ ,
+ int index)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>selection</code>
+</p>
+<p>
+<code>index</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<hr>
+<h2>setButton</h2>
+<p>
+<code>public void <strong>setButton</strong>(org.eclipse.swt.widgets.Button button)</code>
+</p>
+<p>Set the button associated with this action.</p>
+<h3>Parameters</h3>
+<p>
+<code>button</code> - the button</p>
+<hr>
+<h2>setEnabled</h2>
+<p>
+<code>public void <strong>setEnabled</strong>(boolean enabled)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>enabled</code>
+</p>
+<hr>
+<h2>setEntries</h2>
+<p>
+<code>protected void <strong>setEntries</strong>(java.util.List list)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>list</code>
+</p>
+<hr>
+<h2>setShell</h2>
+<p>
+<code>public void <strong>setShell</strong>(org.eclipse.swt.widgets.Shell shell)</code>
+</p>
+<p>Set the shell to be used for opening a dialog.</p>
+<h3>Parameters</h3>
+<p>
+<code>shell</code> - the shell to use</p>
+<hr>
+<h2>setViewer</h2>
+<p>
+<code>public void <strong>setViewer</strong>(org.eclipse.wst.xsl.internal.debug.ui.tabs.main.StylesheetViewer viewer)</code>
+</p>
+<p>Set the viewer associated with this action.</p>
+<h3>Parameters</h3>
+<p>
+<code>viewer</code> - the viewer</p>
+<hr>
+<h2>update</h2>
+<p>
+<code>protected void <strong>update</strong>()</code>
+</p>
+<p></p>
+<hr>
+<h2>updateSelection</h2>
+<p>
+<code>protected boolean <strong>updateSelection</strong>(IStructuredSelection selection)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>selection</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.debug.ui.actions</strong></font>
</p>
@@ -12243,94 +25735,94 @@ extends NLS</pre>Messages for the debug UI actions.<p></p>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>RemoveAction_Text</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>AddExternalFileAction_Selection_3</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- A name for the remove action.</td>
+ A heading for the &lt;code&gt;AddExternalFileAction&lt;/code&gt; dialog.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>AddWorkspaceFileAction_Text</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>AddExternalFileAction_Text</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- A name for the &lt;code&gt;AddWorkspaceFileAction&lt;/code&gt; action.</td>
+ A name for the &lt;code&gt;AddExternalFileAction&lt;/code&gt; action.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>AddExternalFileAction_Text</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>AddParameterAction</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- A name for the &lt;code&gt;AddExternalFileAction&lt;/code&gt; action.</td>
+ A name for the &lt;code&gt;AddParameterAction&lt;/code&gt; action.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>MoveDownAction_Text</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>AddParameterAction_Dialog</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- A name for the &lt;code&gt;MoveDownAction&lt;/code&gt; action.</td>
+ A title for the &lt;code&gt;AddParameterAction&lt;/code&gt; dialog.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>MoveUpAction_Text</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>AddParameterAction_Dialog_Name</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- A name for the &lt;code&gt;MoveUpAction&lt;/code&gt; action.</td>
+ A label for the &lt;code&gt;AddParameterAction&lt;/code&gt; name text box.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>AddExternalFileAction_Selection_3</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>AddParameterAction_Dialog_Type</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- A heading for the &lt;code&gt;AddExternalFileAction&lt;/code&gt; dialog.</td>
+ A label for the &lt;code&gt;AddParameterAction&lt;/code&gt; type combo.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>AddWorkspaceFileAction_DialogMessage</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>AddParameterAction_Dialog_Value</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- A message for the &lt;code&gt;AddWorkspaceFileAction&lt;/code&gt; dialog.</td>
+ A label for the &lt;code&gt;AddParameterAction&lt;/code&gt; value text box.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>AddWorkspaceFileAction_DialogTitle</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>AddWorkspaceFileAction_DialogMessage</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- A title for the &lt;code&gt;AddWorkspaceFileAction&lt;/code&gt; dialog.</td>
+ A message for the &lt;code&gt;AddWorkspaceFileAction&lt;/code&gt; dialog.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>AddParameterAction</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>AddWorkspaceFileAction_DialogTitle</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- A name for the &lt;code&gt;AddParameterAction&lt;/code&gt; action.</td>
+ A title for the &lt;code&gt;AddWorkspaceFileAction&lt;/code&gt; dialog.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>RemoveParameterAction</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>AddWorkspaceFileAction_Text</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- A name for the &lt;code&gt;RemoveParameterAction&lt;/code&gt; action.</td>
+ A name for the &lt;code&gt;AddWorkspaceFileAction&lt;/code&gt; action.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>VariablesFieldButton_Text</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>MoveDownAction_Text</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- A label for the Variables button.</td>
+ A name for the &lt;code&gt;MoveDownAction&lt;/code&gt; action.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>AddParameterAction_Dialog</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>MoveUpAction_Text</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- A title for the &lt;code&gt;AddParameterAction&lt;/code&gt; dialog.</td>
+ A name for the &lt;code&gt;MoveUpAction&lt;/code&gt; action.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>AddParameterAction_Dialog_Name</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>RemoveAction_Text</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- A label for the &lt;code&gt;AddParameterAction&lt;/code&gt; name text box.</td>
+ A name for the remove action.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>AddParameterAction_Dialog_Type</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>RemoveParameterAction</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- A label for the &lt;code&gt;AddParameterAction&lt;/code&gt; type combo.</td>
+ A name for the &lt;code&gt;RemoveParameterAction&lt;/code&gt; action.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>AddParameterAction_Dialog_Value</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>VariablesFieldButton_Text</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- A label for the &lt;code&gt;AddParameterAction&lt;/code&gt; value text box.</td>
+ A label for the Variables button.</td>
</tr>
</table>
<br>
@@ -12341,7 +25833,7 @@ extends NLS</pre>Messages for the debug UI actions.<p></p>
</td>
</tr>
<tr>
-<td><code><strong>ActionMessages()</strong></code></td>
+<td><code><strong>ActionMessages</strong>()</code></td>
</tr>
</table>
<br>
@@ -12353,6 +25845,180 @@ extends NLS</pre>Messages for the debug UI actions.<p></p>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>AddExternalFileAction_Selection_3</h2>
+<p>
+<code>public static java.lang.String <strong>AddExternalFileAction_Selection_3</strong></code>
+</p>
+<table>
+<tr>
+<td>A heading for the <code>AddExternalFileAction</code> dialog.</td>
+</tr>
+</table>
+<hr>
+<h2>AddExternalFileAction_Text</h2>
+<p>
+<code>public static java.lang.String <strong>AddExternalFileAction_Text</strong></code>
+</p>
+<table>
+<tr>
+<td>A name for the <code>AddExternalFileAction</code> action.</td>
+</tr>
+</table>
+<hr>
+<h2>AddParameterAction</h2>
+<p>
+<code>public static java.lang.String <strong>AddParameterAction</strong></code>
+</p>
+<table>
+<tr>
+<td>A name for the <code>AddParameterAction</code> action.</td>
+</tr>
+</table>
+<hr>
+<h2>AddParameterAction_Dialog</h2>
+<p>
+<code>public static java.lang.String <strong>AddParameterAction_Dialog</strong></code>
+</p>
+<table>
+<tr>
+<td>A title for the <code>AddParameterAction</code> dialog.</td>
+</tr>
+</table>
+<hr>
+<h2>AddParameterAction_Dialog_Name</h2>
+<p>
+<code>public static java.lang.String <strong>AddParameterAction_Dialog_Name</strong></code>
+</p>
+<table>
+<tr>
+<td>A label for the <code>AddParameterAction</code> name text box.</td>
+</tr>
+</table>
+<hr>
+<h2>AddParameterAction_Dialog_Type</h2>
+<p>
+<code>public static java.lang.String <strong>AddParameterAction_Dialog_Type</strong></code>
+</p>
+<table>
+<tr>
+<td>A label for the <code>AddParameterAction</code> type combo.</td>
+</tr>
+</table>
+<hr>
+<h2>AddParameterAction_Dialog_Value</h2>
+<p>
+<code>public static java.lang.String <strong>AddParameterAction_Dialog_Value</strong></code>
+</p>
+<table>
+<tr>
+<td>A label for the <code>AddParameterAction</code> value text box.</td>
+</tr>
+</table>
+<hr>
+<h2>AddWorkspaceFileAction_DialogMessage</h2>
+<p>
+<code>public static java.lang.String <strong>AddWorkspaceFileAction_DialogMessage</strong></code>
+</p>
+<table>
+<tr>
+<td>A message for the <code>AddWorkspaceFileAction</code> dialog.</td>
+</tr>
+</table>
+<hr>
+<h2>AddWorkspaceFileAction_DialogTitle</h2>
+<p>
+<code>public static java.lang.String <strong>AddWorkspaceFileAction_DialogTitle</strong></code>
+</p>
+<table>
+<tr>
+<td>A title for the <code>AddWorkspaceFileAction</code> dialog.</td>
+</tr>
+</table>
+<hr>
+<h2>AddWorkspaceFileAction_Text</h2>
+<p>
+<code>public static java.lang.String <strong>AddWorkspaceFileAction_Text</strong></code>
+</p>
+<table>
+<tr>
+<td>A name for the <code>AddWorkspaceFileAction</code> action.</td>
+</tr>
+</table>
+<hr>
+<h2>MoveDownAction_Text</h2>
+<p>
+<code>public static java.lang.String <strong>MoveDownAction_Text</strong></code>
+</p>
+<table>
+<tr>
+<td>A name for the <code>MoveDownAction</code> action.</td>
+</tr>
+</table>
+<hr>
+<h2>MoveUpAction_Text</h2>
+<p>
+<code>public static java.lang.String <strong>MoveUpAction_Text</strong></code>
+</p>
+<table>
+<tr>
+<td>A name for the <code>MoveUpAction</code> action.</td>
+</tr>
+</table>
+<hr>
+<h2>RemoveAction_Text</h2>
+<p>
+<code>public static java.lang.String <strong>RemoveAction_Text</strong></code>
+</p>
+<table>
+<tr>
+<td>A name for the remove action.</td>
+</tr>
+</table>
+<hr>
+<h2>RemoveParameterAction</h2>
+<p>
+<code>public static java.lang.String <strong>RemoveParameterAction</strong></code>
+</p>
+<table>
+<tr>
+<td>A name for the <code>RemoveParameterAction</code> action.</td>
+</tr>
+</table>
+<hr>
+<h2>VariablesFieldButton_Text</h2>
+<p>
+<code>public static java.lang.String <strong>VariablesFieldButton_Text</strong></code>
+</p>
+<table>
+<tr>
+<td>A label for the Variables button.</td>
+</tr>
+</table>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>ActionMessages</h2>
+<p>
+<code>public <strong>ActionMessages</strong>()</code>
+</p>
+<p></p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.debug.ui.actions</strong></font>
</p>
@@ -12373,9 +26039,9 @@ extends org.eclipse.wst.xsl.internal.debug.ui.actions.OpenDialogAction</pre>An a
</td>
</tr>
<tr>
-<td><code><strong>AddExternalFileAction(org.eclipse.wst.xsl.internal.debug.ui.tabs.main.StylesheetViewer viewer
+<td><code><strong>AddExternalFileAction</strong>(org.eclipse.wst.xsl.internal.debug.ui.tabs.main.StylesheetViewer viewer
,
- java.lang.String dialogSettingsPrefix)</strong></code></td>
+ java.lang.String dialogSettingsPrefix)</code></td>
</tr>
</table>
<br>
@@ -12393,6 +26059,38 @@ extends org.eclipse.wst.xsl.internal.debug.ui.actions.OpenDialogAction</pre>An a
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>AddExternalFileAction</h2>
+<p>
+<code>public <strong>AddExternalFileAction</strong>(org.eclipse.wst.xsl.internal.debug.ui.tabs.main.StylesheetViewer viewer
+ ,
+ java.lang.String dialogSettingsPrefix)</code>
+</p>
+<p>Create a new instance of this.</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>run</h2>
+<p>
+<code>public void <strong>run</strong>()</code>
+</p>
+<p></p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.debug.ui.actions</strong></font>
</p>
@@ -12427,7 +26125,7 @@ extends org.eclipse.wst.xsl.internal.debug.ui.actions.AbstractParameterAction</p
</td>
</tr>
<tr>
-<td><code><strong>AddParameterAction(org.eclipse.wst.xsl.internal.debug.ui.tabs.main.ParameterViewer viewer)</strong></code></td>
+<td><code><strong>AddParameterAction</strong>(org.eclipse.wst.xsl.internal.debug.ui.tabs.main.ParameterViewer viewer)</code></td>
</tr>
</table>
<br>
@@ -12451,6 +26149,60 @@ extends org.eclipse.wst.xsl.internal.debug.ui.actions.AbstractParameterAction</p
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>types</h2>
+<p>
+<code>package-private java.lang.String[] <strong>types</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>AddParameterAction</h2>
+<p>
+<code>public <strong>AddParameterAction</strong>(org.eclipse.wst.xsl.internal.debug.ui.tabs.main.ParameterViewer viewer)</code>
+</p>
+<p>Create a new instance of this.</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>run</h2>
+<p>
+<code>public void <strong>run</strong>()</code>
+</p>
+<p></p>
+<hr>
+<h2>setEnabled</h2>
+<p>
+<code>public void <strong>setEnabled</strong>(boolean enabled)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>enabled</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.debug.ui.actions</strong></font>
</p>
@@ -12471,7 +26223,7 @@ extends org.eclipse.wst.xsl.internal.debug.ui.actions.AbstractStylesheetAction</
</td>
</tr>
<tr>
-<td><code><strong>AddWorkspaceFileAction(org.eclipse.wst.xsl.internal.debug.ui.tabs.main.StylesheetViewer viewer)</strong></code></td>
+<td><code><strong>AddWorkspaceFileAction</strong>(org.eclipse.wst.xsl.internal.debug.ui.tabs.main.StylesheetViewer viewer)</code></td>
</tr>
</table>
<br>
@@ -12482,19 +26234,59 @@ extends org.eclipse.wst.xsl.internal.debug.ui.actions.AbstractStylesheetAction</
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>run()</code>
+<td width="20%" align="right"><code>protected int</code></td><td width="" align="left"><code>getActionType()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected int</code></td><td width="" align="left"><code>getActionType()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>run()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>AddWorkspaceFileAction</h2>
+<p>
+<code>public <strong>AddWorkspaceFileAction</strong>(org.eclipse.wst.xsl.internal.debug.ui.tabs.main.StylesheetViewer viewer)</code>
+</p>
+<p>Create a new instance of this.</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getActionType</h2>
+<p>
+<code>protected int <strong>getActionType</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>int</code>
+</p>
+<hr>
+<h2>run</h2>
+<p>
+<code>public void <strong>run</strong>()</code>
+</p>
+<p></p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.debug.ui.actions</strong></font>
</p>
@@ -12515,12 +26307,6 @@ extends org.eclipse.swt.accessibility.AccessibleAdapter</pre>Used to help with a
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>getName(org.eclipse.swt.accessibility.AccessibleEvent e)</code>
-<br>
- &nbsp;&nbsp;&nbsp;&nbsp;
- </td>
-</tr>
-<tr valign="top">
<td width="20%" align="right"><code>public static void</code></td><td width="" align="left"><code>addListener(org.eclipse.swt.widgets.Control comp
,
java.lang.String name)</code>
@@ -12528,8 +26314,46 @@ extends org.eclipse.swt.accessibility.AccessibleAdapter</pre>Used to help with a
&nbsp;&nbsp;&nbsp;&nbsp;
Helper for adding an instance of this to the given control.</td>
</tr>
+<tr valign="top">
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>getName(org.eclipse.swt.accessibility.AccessibleEvent e)</code>
+<br>
+ &nbsp;&nbsp;&nbsp;&nbsp;
+ </td>
+</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>addListener</h2>
+<p>
+<code>public void <strong>addListener</strong>(org.eclipse.swt.widgets.Control comp
+ ,
+ java.lang.String name)</code>
+</p>
+<p>Helper for adding an instance of this to the given control.</p>
+<h3>Parameters</h3>
+<p>
+<code>comp</code> - the control to add this to</p>
+<p>
+<code>name</code> - the name for this</p>
+<hr>
+<h2>getName</h2>
+<p>
+<code>public void <strong>getName</strong>(org.eclipse.swt.accessibility.AccessibleEvent e)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>e</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.debug.ui.actions</strong></font>
</p>
@@ -12550,7 +26374,7 @@ extends org.eclipse.wst.xsl.internal.debug.ui.actions.AbstractStylesheetAction</
</td>
</tr>
<tr>
-<td><code><strong>MoveDownAction(org.eclipse.wst.xsl.internal.debug.ui.tabs.main.StylesheetViewer viewer)</strong></code></td>
+<td><code><strong>MoveDownAction</strong>(org.eclipse.wst.xsl.internal.debug.ui.tabs.main.StylesheetViewer viewer)</code></td>
</tr>
</table>
<br>
@@ -12561,25 +26385,79 @@ extends org.eclipse.wst.xsl.internal.debug.ui.actions.AbstractStylesheetAction</
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>run()</code>
+<td width="20%" align="right"><code>protected int</code></td><td width="" align="left"><code>getActionType()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected boolean</code></td><td width="" align="left"><code>updateSelection(IStructuredSelection selection)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>run()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected int</code></td><td width="" align="left"><code>getActionType()</code>
+<td width="20%" align="right"><code>protected boolean</code></td><td width="" align="left"><code>updateSelection(IStructuredSelection selection)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>MoveDownAction</h2>
+<p>
+<code>public <strong>MoveDownAction</strong>(org.eclipse.wst.xsl.internal.debug.ui.tabs.main.StylesheetViewer viewer)</code>
+</p>
+<p>Create a new instance of this.</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getActionType</h2>
+<p>
+<code>protected int <strong>getActionType</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>int</code>
+</p>
+<hr>
+<h2>run</h2>
+<p>
+<code>public void <strong>run</strong>()</code>
+</p>
+<p></p>
+<hr>
+<h2>updateSelection</h2>
+<p>
+<code>protected boolean <strong>updateSelection</strong>(IStructuredSelection selection)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>selection</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.debug.ui.actions</strong></font>
</p>
@@ -12600,7 +26478,7 @@ extends org.eclipse.wst.xsl.internal.debug.ui.actions.AbstractStylesheetAction</
</td>
</tr>
<tr>
-<td><code><strong>MoveUpAction(org.eclipse.wst.xsl.internal.debug.ui.tabs.main.StylesheetViewer viewer)</strong></code></td>
+<td><code><strong>MoveUpAction</strong>(org.eclipse.wst.xsl.internal.debug.ui.tabs.main.StylesheetViewer viewer)</code></td>
</tr>
</table>
<br>
@@ -12611,25 +26489,79 @@ extends org.eclipse.wst.xsl.internal.debug.ui.actions.AbstractStylesheetAction</
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>run()</code>
+<td width="20%" align="right"><code>protected int</code></td><td width="" align="left"><code>getActionType()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected boolean</code></td><td width="" align="left"><code>updateSelection(IStructuredSelection selection)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>run()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected int</code></td><td width="" align="left"><code>getActionType()</code>
+<td width="20%" align="right"><code>protected boolean</code></td><td width="" align="left"><code>updateSelection(IStructuredSelection selection)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>MoveUpAction</h2>
+<p>
+<code>public <strong>MoveUpAction</strong>(org.eclipse.wst.xsl.internal.debug.ui.tabs.main.StylesheetViewer viewer)</code>
+</p>
+<p>Create a new instance of this.</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getActionType</h2>
+<p>
+<code>protected int <strong>getActionType</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>int</code>
+</p>
+<hr>
+<h2>run</h2>
+<p>
+<code>public void <strong>run</strong>()</code>
+</p>
+<p></p>
+<hr>
+<h2>updateSelection</h2>
+<p>
+<code>protected boolean <strong>updateSelection</strong>(IStructuredSelection selection)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>selection</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.debug.ui.actions</strong></font>
</p>
@@ -12650,31 +26582,31 @@ extends Dialog</pre>A dialog with handy methods for adding simple controls to it
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected static java.lang.String</code></td><td width="80%" align="left"><code>FIELD_NAME</code>
+<td width="20%" align="right"><code>protected static int</code></td><td width="80%" align="left"><code>BROWSE</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected static int</code></td><td width="80%" align="left"><code>TEXT</code>
+<td width="20%" align="right"><code>protected static int</code></td><td width="80%" align="left"><code>COMBO</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected static int</code></td><td width="80%" align="left"><code>BROWSE</code>
+<td width="20%" align="right"><code>protected java.util.List</code></td><td width="80%" align="left"><code>controlList</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected static int</code></td><td width="80%" align="left"><code>VARIABLE</code>
+<td width="20%" align="right"><code>protected static java.lang.String</code></td><td width="80%" align="left"><code>FIELD_NAME</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected static int</code></td><td width="80%" align="left"><code>COMBO</code>
+<td width="20%" align="right"><code>protected java.util.List</code></td><td width="80%" align="left"><code>fieldList</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@@ -12686,25 +26618,25 @@ extends Dialog</pre>A dialog with handy methods for adding simple controls to it
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected java.util.List</code></td><td width="80%" align="left"><code>fieldList</code>
+<td width="20%" align="right"><code>protected static int</code></td><td width="80%" align="left"><code>TEXT</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected java.util.List</code></td><td width="80%" align="left"><code>controlList</code>
+<td width="20%" align="right"><code>protected java.util.List</code></td><td width="80%" align="left"><code>validators</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected java.util.List</code></td><td width="80%" align="left"><code>validators</code>
+<td width="20%" align="right"><code>protected java.util.Map</code></td><td width="80%" align="left"><code>valueMap</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected java.util.Map</code></td><td width="80%" align="left"><code>valueMap</code>
+<td width="20%" align="right"><code>protected static int</code></td><td width="80%" align="left"><code>VARIABLE</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@@ -12718,30 +26650,30 @@ extends Dialog</pre>A dialog with handy methods for adding simple controls to it
</td>
</tr>
<tr>
-<td><code><strong>MultipleInputDialog(org.eclipse.swt.widgets.Shell shell
+<td><code><strong>MultipleInputDialog</strong>(org.eclipse.swt.widgets.Shell shell
,
- java.lang.String title)</strong></code></td>
+ java.lang.String title)</code></td>
</tr>
<tr>
-<td><code><strong>MultipleInputDialog.FieldSummary(int type
+<td><code><strong>MultipleInputDialog.FieldSummary</strong>(int type
,
java.lang.String name
,
java.lang.String initialValue
,
- boolean allowsEmpty)</strong></code></td>
+ boolean allowsEmpty)</code></td>
</tr>
<tr>
-<td><code><strong>MultipleInputDialog.FieldSummary(int type
+<td><code><strong>MultipleInputDialog.FieldSummary</strong>(int type
,
java.lang.String name
,
java.lang.String[] items
,
- int initialIndex)</strong></code></td>
+ int initialIndex)</code></td>
</tr>
<tr>
-<td><code><strong>MultipleInputDialog.Validator()</strong></code></td>
+<td><code><strong>MultipleInputDialog.Validator</strong>()</code></td>
</tr>
</table>
<br>
@@ -12752,24 +26684,6 @@ extends Dialog</pre>A dialog with handy methods for adding simple controls to it
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>configureShell(org.eclipse.swt.widgets.Shell shell)</code>
-<br>
- &nbsp;&nbsp;&nbsp;&nbsp;
- </td>
-</tr>
-<tr valign="top">
-<td width="20%" align="right"><code>protected org.eclipse.swt.widgets.Control</code></td><td width="" align="left"><code>createButtonBar(org.eclipse.swt.widgets.Composite parent)</code>
-<br>
- &nbsp;&nbsp;&nbsp;&nbsp;
- </td>
-</tr>
-<tr valign="top">
-<td width="20%" align="right"><code>protected org.eclipse.swt.widgets.Control</code></td><td width="" align="left"><code>createDialogArea(org.eclipse.swt.widgets.Composite parent)</code>
-<br>
- &nbsp;&nbsp;&nbsp;&nbsp;
- </td>
-</tr>
-<tr valign="top">
<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>addBrowseField(java.lang.String labelText
,
java.lang.String initialValue
@@ -12780,6 +26694,16 @@ extends Dialog</pre>A dialog with handy methods for adding simple controls to it
Add a label, text box and button for browsing the for a file.</td>
</tr>
<tr valign="top">
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>addComboField(java.lang.String labelText
+ ,
+ int initialIndex
+ ,
+ java.lang.String[] items)</code>
+<br>
+ &nbsp;&nbsp;&nbsp;&nbsp;
+ Add a label and a combo.</td>
+</tr>
+<tr valign="top">
<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>addTextField(java.lang.String labelText
,
java.lang.String initialValue
@@ -12800,14 +26724,32 @@ extends Dialog</pre>A dialog with handy methods for adding simple controls to it
Add a label, a text box and a button for selecting variables.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>addComboField(java.lang.String labelText
+<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>configureShell(org.eclipse.swt.widgets.Shell shell)</code>
+<br>
+ &nbsp;&nbsp;&nbsp;&nbsp;
+ </td>
+</tr>
+<tr valign="top">
+<td width="20%" align="right"><code>protected org.eclipse.swt.widgets.Control</code></td><td width="" align="left"><code>createButtonBar(org.eclipse.swt.widgets.Composite parent)</code>
+<br>
+ &nbsp;&nbsp;&nbsp;&nbsp;
+ </td>
+</tr>
+<tr valign="top">
+<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>createComboField(java.lang.String labelText
,
- int initialIndex
+ int initialValue
,
java.lang.String[] items)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Add a label and a combo.</td>
+ </td>
+</tr>
+<tr valign="top">
+<td width="20%" align="right"><code>protected org.eclipse.swt.widgets.Control</code></td><td width="" align="left"><code>createDialogArea(org.eclipse.swt.widgets.Composite parent)</code>
+<br>
+ &nbsp;&nbsp;&nbsp;&nbsp;
+ </td>
</tr>
<tr valign="top">
<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>createTextField(java.lang.String labelText
@@ -12830,23 +26772,19 @@ extends Dialog</pre>A dialog with handy methods for adding simple controls to it
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>createComboField(java.lang.String labelText
- ,
- int initialValue
- ,
- java.lang.String[] items)</code>
+<td width="20%" align="right"><code>protected IDialogSettings</code></td><td width="" align="left"><code>getDialogBoundsSettings()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>okPressed()</code>
+<td width="20%" align="right"><code>protected int</code></td><td width="" align="left"><code>getIntValue(java.lang.String key)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public int</code></td><td width="" align="left"><code>open()</code>
+<td width="20%" align="right"><code>protected java.lang.String</code></td><td width="" align="left"><code>getStringValue(java.lang.String key)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@@ -12858,13 +26796,13 @@ extends Dialog</pre>A dialog with handy methods for adding simple controls to it
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected java.lang.String</code></td><td width="" align="left"><code>getStringValue(java.lang.String key)</code>
+<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>okPressed()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected int</code></td><td width="" align="left"><code>getIntValue(java.lang.String key)</code>
+<td width="20%" align="right"><code>public int</code></td><td width="" align="left"><code>open()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@@ -12875,13 +26813,332 @@ extends Dialog</pre>A dialog with handy methods for adding simple controls to it
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
-<tr valign="top">
-<td width="20%" align="right"><code>protected IDialogSettings</code></td><td width="" align="left"><code>getDialogBoundsSettings()</code>
-<br>
- &nbsp;&nbsp;&nbsp;&nbsp;
- </td>
+</table>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>BROWSE</h2>
+<p>
+<code>protected static int <strong>BROWSE</strong></code>
+</p>
+<hr>
+<h2>COMBO</h2>
+<p>
+<code>protected static int <strong>COMBO</strong></code>
+</p>
+<hr>
+<h2>controlList</h2>
+<p>
+<code>protected java.util.List <strong>controlList</strong></code>
+</p>
+<hr>
+<h2>FIELD_NAME</h2>
+<p>
+<code>protected static java.lang.String <strong>FIELD_NAME</strong></code>
+</p>
+<hr>
+<h2>fieldList</h2>
+<p>
+<code>protected java.util.List <strong>fieldList</strong></code>
+</p>
+<hr>
+<h2>panel</h2>
+<p>
+<code>protected org.eclipse.swt.widgets.Composite <strong>panel</strong></code>
+</p>
+<hr>
+<h2>TEXT</h2>
+<p>
+<code>protected static int <strong>TEXT</strong></code>
+</p>
+<hr>
+<h2>validators</h2>
+<p>
+<code>protected java.util.List <strong>validators</strong></code>
+</p>
+<hr>
+<h2>valueMap</h2>
+<p>
+<code>protected java.util.Map <strong>valueMap</strong></code>
+</p>
+<hr>
+<h2>VARIABLE</h2>
+<p>
+<code>protected static int <strong>VARIABLE</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
</tr>
</table>
+<h2>MultipleInputDialog</h2>
+<p>
+<code>public <strong>MultipleInputDialog</strong>(org.eclipse.swt.widgets.Shell shell
+ ,
+ java.lang.String title)</code>
+</p>
+<p>Create a new instance of this.</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>addBrowseField</h2>
+<p>
+<code>public void <strong>addBrowseField</strong>(java.lang.String labelText
+ ,
+ java.lang.String initialValue
+ ,
+ boolean allowsEmpty)</code>
+</p>
+<p>Add a label, text box and button for browsing the for a file.</p>
+<h3>Parameters</h3>
+<p>
+<code>labelText</code> - the label</p>
+<p>
+<code>initialValue</code> - the initial value</p>
+<p>
+<code>allowsEmpty</code> - true if the text box can be empty</p>
+<hr>
+<h2>addComboField</h2>
+<p>
+<code>public void <strong>addComboField</strong>(java.lang.String labelText
+ ,
+ int initialIndex
+ ,
+ java.lang.String[] items)</code>
+</p>
+<p>Add a label and a combo.</p>
+<h3>Parameters</h3>
+<p>
+<code>labelText</code> - the label</p>
+<p>
+<code>initialIndex</code> - the initial selection index</p>
+<p>
+<code>items</code> - the array of items for the combo</p>
+<hr>
+<h2>addTextField</h2>
+<p>
+<code>public void <strong>addTextField</strong>(java.lang.String labelText
+ ,
+ java.lang.String initialValue
+ ,
+ boolean allowsEmpty)</code>
+</p>
+<p>Add a label and a text box.</p>
+<h3>Parameters</h3>
+<p>
+<code>labelText</code> - the label</p>
+<p>
+<code>initialValue</code> - the initial value</p>
+<p>
+<code>allowsEmpty</code> - true if the text box can be empty</p>
+<hr>
+<h2>addVariablesField</h2>
+<p>
+<code>public void <strong>addVariablesField</strong>(java.lang.String labelText
+ ,
+ java.lang.String initialValue
+ ,
+ boolean allowsEmpty)</code>
+</p>
+<p>Add a label, a text box and a button for selecting variables.</p>
+<h3>Parameters</h3>
+<p>
+<code>labelText</code> - the label</p>
+<p>
+<code>initialValue</code> - the initial value</p>
+<p>
+<code>allowsEmpty</code> - true if the text box can be empty</p>
+<hr>
+<h2>configureShell</h2>
+<p>
+<code>protected void <strong>configureShell</strong>(org.eclipse.swt.widgets.Shell shell)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>shell</code>
+</p>
+<hr>
+<h2>createButtonBar</h2>
+<p>
+<code>protected org.eclipse.swt.widgets.Control <strong>createButtonBar</strong>(org.eclipse.swt.widgets.Composite parent)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>parent</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.swt.widgets.Control</code>
+</p>
+<hr>
+<h2>createComboField</h2>
+<p>
+<code>protected void <strong>createComboField</strong>(java.lang.String labelText
+ ,
+ int initialValue
+ ,
+ java.lang.String[] items)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>labelText</code>
+</p>
+<p>
+<code>initialValue</code>
+</p>
+<p>
+<code>items</code>
+</p>
+<hr>
+<h2>createDialogArea</h2>
+<p>
+<code>protected org.eclipse.swt.widgets.Control <strong>createDialogArea</strong>(org.eclipse.swt.widgets.Composite parent)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>parent</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.swt.widgets.Control</code>
+</p>
+<hr>
+<h2>createTextField</h2>
+<p>
+<code>protected void <strong>createTextField</strong>(java.lang.String labelText
+ ,
+ java.lang.String initialValue
+ ,
+ boolean allowEmpty)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>labelText</code>
+</p>
+<p>
+<code>initialValue</code>
+</p>
+<p>
+<code>allowEmpty</code>
+</p>
+<hr>
+<h2>createVariablesField</h2>
+<p>
+<code>protected void <strong>createVariablesField</strong>(java.lang.String labelText
+ ,
+ java.lang.String initialValue
+ ,
+ boolean allowEmpty)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>labelText</code>
+</p>
+<p>
+<code>initialValue</code>
+</p>
+<p>
+<code>allowEmpty</code>
+</p>
+<hr>
+<h2>getDialogBoundsSettings</h2>
+<p>
+<code>protected IDialogSettings <strong>getDialogBoundsSettings</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>IDialogSettings</code>
+</p>
+<hr>
+<h2>getIntValue</h2>
+<p>
+<code>protected int <strong>getIntValue</strong>(java.lang.String key)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>key</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>int</code>
+</p>
+<hr>
+<h2>getStringValue</h2>
+<p>
+<code>protected java.lang.String <strong>getStringValue</strong>(java.lang.String key)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>key</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
+<h2>getValue</h2>
+<p>
+<code>protected java.lang.Object <strong>getValue</strong>(java.lang.String key)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>key</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.Object</code>
+</p>
+<hr>
+<h2>okPressed</h2>
+<p>
+<code>protected void <strong>okPressed</strong>()</code>
+</p>
+<p></p>
+<hr>
+<h2>open</h2>
+<p>
+<code>public int <strong>open</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>int</code>
+</p>
+<hr>
+<h2>validateFields</h2>
+<p>
+<code>protected void <strong>validateFields</strong>()</code>
+</p>
+<p></p>
<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.debug.ui.actions</strong></font>
@@ -12903,37 +27160,37 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>package-private int</code></td><td width="80%" align="left"><code>initialIndex</code>
+<td width="20%" align="right"><code>package-private boolean</code></td><td width="80%" align="left"><code>allowsEmpty</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>package-private int</code></td><td width="80%" align="left"><code>type</code>
+<td width="20%" align="right"><code>package-private int</code></td><td width="80%" align="left"><code>initialIndex</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>package-private java.lang.String</code></td><td width="80%" align="left"><code>name</code>
+<td width="20%" align="right"><code>package-private java.lang.String</code></td><td width="80%" align="left"><code>initialValue</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>package-private java.lang.String</code></td><td width="80%" align="left"><code>initialValue</code>
+<td width="20%" align="right"><code>package-private java.lang.String[]</code></td><td width="80%" align="left"><code>items</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>package-private boolean</code></td><td width="80%" align="left"><code>allowsEmpty</code>
+<td width="20%" align="right"><code>package-private java.lang.String</code></td><td width="80%" align="left"><code>name</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>package-private java.lang.String[]</code></td><td width="80%" align="left"><code>items</code>
+<td width="20%" align="right"><code>package-private int</code></td><td width="80%" align="left"><code>type</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@@ -12947,22 +27204,22 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr>
-<td><code><strong>MultipleInputDialog.FieldSummary(int type
+<td><code><strong>MultipleInputDialog.FieldSummary</strong>(int type
,
java.lang.String name
,
java.lang.String initialValue
,
- boolean allowsEmpty)</strong></code></td>
+ boolean allowsEmpty)</code></td>
</tr>
<tr>
-<td><code><strong>MultipleInputDialog.FieldSummary(int type
+<td><code><strong>MultipleInputDialog.FieldSummary</strong>(int type
,
java.lang.String name
,
java.lang.String[] items
,
- int initialIndex)</strong></code></td>
+ int initialIndex)</code></td>
</tr>
</table>
<br>
@@ -12974,6 +27231,78 @@ extends java.lang.Object</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>allowsEmpty</h2>
+<p>
+<code>package-private boolean <strong>allowsEmpty</strong></code>
+</p>
+<hr>
+<h2>initialIndex</h2>
+<p>
+<code>package-private int <strong>initialIndex</strong></code>
+</p>
+<hr>
+<h2>initialValue</h2>
+<p>
+<code>package-private java.lang.String <strong>initialValue</strong></code>
+</p>
+<hr>
+<h2>items</h2>
+<p>
+<code>package-private java.lang.String[] <strong>items</strong></code>
+</p>
+<hr>
+<h2>name</h2>
+<p>
+<code>package-private java.lang.String <strong>name</strong></code>
+</p>
+<hr>
+<h2>type</h2>
+<p>
+<code>package-private int <strong>type</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>MultipleInputDialog.FieldSummary</h2>
+<p>
+<code>public <strong>MultipleInputDialog.FieldSummary</strong>(int type
+ ,
+ java.lang.String name
+ ,
+ java.lang.String initialValue
+ ,
+ boolean allowsEmpty)</code>
+</p>
+<p></p>
+<hr>
+<h2>MultipleInputDialog.FieldSummary</h2>
+<p>
+<code>public <strong>MultipleInputDialog.FieldSummary</strong>(int type
+ ,
+ java.lang.String name
+ ,
+ java.lang.String[] items
+ ,
+ int initialIndex)</code>
+</p>
+<p></p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.debug.ui.actions</strong></font>
</p>
@@ -12994,7 +27323,7 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr>
-<td><code><strong>MultipleInputDialog.Validator()</strong></code></td>
+<td><code><strong>MultipleInputDialog.Validator</strong>()</code></td>
</tr>
</table>
<br>
@@ -13012,6 +27341,40 @@ extends java.lang.Object</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>MultipleInputDialog.Validator</h2>
+<p>
+<code>protected <strong>MultipleInputDialog.Validator</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>validate</h2>
+<p>
+<code>package-private boolean <strong>validate</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.debug.ui.actions</strong></font>
</p>
@@ -13032,37 +27395,37 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>package-private int</code></td><td width="80%" align="left"><code>initialIndex</code>
+<td width="20%" align="right"><code>package-private boolean</code></td><td width="80%" align="left"><code>allowsEmpty</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>package-private int</code></td><td width="80%" align="left"><code>type</code>
+<td width="20%" align="right"><code>package-private int</code></td><td width="80%" align="left"><code>initialIndex</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>package-private java.lang.String</code></td><td width="80%" align="left"><code>name</code>
+<td width="20%" align="right"><code>package-private java.lang.String</code></td><td width="80%" align="left"><code>initialValue</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>package-private java.lang.String</code></td><td width="80%" align="left"><code>initialValue</code>
+<td width="20%" align="right"><code>package-private java.lang.String[]</code></td><td width="80%" align="left"><code>items</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>package-private boolean</code></td><td width="80%" align="left"><code>allowsEmpty</code>
+<td width="20%" align="right"><code>package-private java.lang.String</code></td><td width="80%" align="left"><code>name</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>package-private java.lang.String[]</code></td><td width="80%" align="left"><code>items</code>
+<td width="20%" align="right"><code>package-private int</code></td><td width="80%" align="left"><code>type</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@@ -13076,22 +27439,22 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr>
-<td><code><strong>MultipleInputDialog.FieldSummary(int type
+<td><code><strong>MultipleInputDialog.FieldSummary</strong>(int type
,
java.lang.String name
,
java.lang.String initialValue
,
- boolean allowsEmpty)</strong></code></td>
+ boolean allowsEmpty)</code></td>
</tr>
<tr>
-<td><code><strong>MultipleInputDialog.FieldSummary(int type
+<td><code><strong>MultipleInputDialog.FieldSummary</strong>(int type
,
java.lang.String name
,
java.lang.String[] items
,
- int initialIndex)</strong></code></td>
+ int initialIndex)</code></td>
</tr>
</table>
<br>
@@ -13103,6 +27466,78 @@ extends java.lang.Object</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>allowsEmpty</h2>
+<p>
+<code>package-private boolean <strong>allowsEmpty</strong></code>
+</p>
+<hr>
+<h2>initialIndex</h2>
+<p>
+<code>package-private int <strong>initialIndex</strong></code>
+</p>
+<hr>
+<h2>initialValue</h2>
+<p>
+<code>package-private java.lang.String <strong>initialValue</strong></code>
+</p>
+<hr>
+<h2>items</h2>
+<p>
+<code>package-private java.lang.String[] <strong>items</strong></code>
+</p>
+<hr>
+<h2>name</h2>
+<p>
+<code>package-private java.lang.String <strong>name</strong></code>
+</p>
+<hr>
+<h2>type</h2>
+<p>
+<code>package-private int <strong>type</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>MultipleInputDialog.FieldSummary</h2>
+<p>
+<code>public <strong>MultipleInputDialog.FieldSummary</strong>(int type
+ ,
+ java.lang.String name
+ ,
+ java.lang.String initialValue
+ ,
+ boolean allowsEmpty)</code>
+</p>
+<p></p>
+<hr>
+<h2>MultipleInputDialog.FieldSummary</h2>
+<p>
+<code>public <strong>MultipleInputDialog.FieldSummary</strong>(int type
+ ,
+ java.lang.String name
+ ,
+ java.lang.String[] items
+ ,
+ int initialIndex)</code>
+</p>
+<p></p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.debug.ui.actions</strong></font>
</p>
@@ -13123,7 +27558,7 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr>
-<td><code><strong>MultipleInputDialog.Validator()</strong></code></td>
+<td><code><strong>MultipleInputDialog.Validator</strong>()</code></td>
</tr>
</table>
<br>
@@ -13141,6 +27576,40 @@ extends java.lang.Object</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>MultipleInputDialog.Validator</h2>
+<p>
+<code>protected <strong>MultipleInputDialog.Validator</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>validate</h2>
+<p>
+<code>package-private boolean <strong>validate</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.debug.ui.actions</strong></font>
</p>
@@ -13175,11 +27644,11 @@ extends org.eclipse.wst.xsl.internal.debug.ui.actions.AbstractStylesheetAction</
</td>
</tr>
<tr>
-<td><code><strong>OpenDialogAction(java.lang.String label
+<td><code><strong>OpenDialogAction</strong>(java.lang.String label
,
org.eclipse.wst.xsl.internal.debug.ui.tabs.main.StylesheetViewer viewer
,
- java.lang.String dialogSettingsPrefix)</strong></code></td>
+ java.lang.String dialogSettingsPrefix)</code></td>
</tr>
</table>
<br>
@@ -13190,7 +27659,7 @@ extends org.eclipse.wst.xsl.internal.debug.ui.actions.AbstractStylesheetAction</
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected java.lang.String</code></td><td width="" align="left"><code>getDialogSettingsPrefix()</code>
+<td width="20%" align="right"><code>protected int</code></td><td width="" align="left"><code>getActionType()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@@ -13202,27 +27671,128 @@ extends org.eclipse.wst.xsl.internal.debug.ui.actions.AbstractStylesheetAction</
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>setDialogSetting(java.lang.String settingName
- ,
- java.lang.String value)</code>
+<td width="20%" align="right"><code>protected IDialogSettings</code></td><td width="" align="left"><code>getDialogSettings()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected IDialogSettings</code></td><td width="" align="left"><code>getDialogSettings()</code>
+<td width="20%" align="right"><code>protected java.lang.String</code></td><td width="" align="left"><code>getDialogSettingsPrefix()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected int</code></td><td width="" align="left"><code>getActionType()</code>
+<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>setDialogSetting(java.lang.String settingName
+ ,
+ java.lang.String value)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>LAST_PATH_SETTING</h2>
+<p>
+<code>protected static java.lang.String <strong>LAST_PATH_SETTING</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>OpenDialogAction</h2>
+<p>
+<code>public <strong>OpenDialogAction</strong>(java.lang.String label
+ ,
+ org.eclipse.wst.xsl.internal.debug.ui.tabs.main.StylesheetViewer viewer
+ ,
+ java.lang.String dialogSettingsPrefix)</code>
+</p>
+<p>Create a new instance of this</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getActionType</h2>
+<p>
+<code>protected int <strong>getActionType</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>int</code>
+</p>
+<hr>
+<h2>getDialogSetting</h2>
+<p>
+<code>protected java.lang.String <strong>getDialogSetting</strong>(java.lang.String settingName)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>settingName</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
+<h2>getDialogSettings</h2>
+<p>
+<code>protected IDialogSettings <strong>getDialogSettings</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>IDialogSettings</code>
+</p>
+<hr>
+<h2>getDialogSettingsPrefix</h2>
+<p>
+<code>protected java.lang.String <strong>getDialogSettingsPrefix</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
+<h2>setDialogSetting</h2>
+<p>
+<code>protected void <strong>setDialogSetting</strong>(java.lang.String settingName
+ ,
+ java.lang.String value)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>settingName</code>
+</p>
+<p>
+<code>value</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.debug.ui.actions</strong></font>
</p>
@@ -13243,7 +27813,7 @@ extends org.eclipse.wst.xsl.internal.debug.ui.actions.AbstractStylesheetAction</
</td>
</tr>
<tr>
-<td><code><strong>RemoveAction(org.eclipse.wst.xsl.internal.debug.ui.tabs.main.StylesheetViewer viewer)</strong></code></td>
+<td><code><strong>RemoveAction</strong>(org.eclipse.wst.xsl.internal.debug.ui.tabs.main.StylesheetViewer viewer)</code></td>
</tr>
</table>
<br>
@@ -13254,25 +27824,79 @@ extends org.eclipse.wst.xsl.internal.debug.ui.actions.AbstractStylesheetAction</
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>run()</code>
+<td width="20%" align="right"><code>protected int</code></td><td width="" align="left"><code>getActionType()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected boolean</code></td><td width="" align="left"><code>updateSelection(IStructuredSelection selection)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>run()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected int</code></td><td width="" align="left"><code>getActionType()</code>
+<td width="20%" align="right"><code>protected boolean</code></td><td width="" align="left"><code>updateSelection(IStructuredSelection selection)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>RemoveAction</h2>
+<p>
+<code>public <strong>RemoveAction</strong>(org.eclipse.wst.xsl.internal.debug.ui.tabs.main.StylesheetViewer viewer)</code>
+</p>
+<p>Create a new instance of this.</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getActionType</h2>
+<p>
+<code>protected int <strong>getActionType</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>int</code>
+</p>
+<hr>
+<h2>run</h2>
+<p>
+<code>public void <strong>run</strong>()</code>
+</p>
+<p></p>
+<hr>
+<h2>updateSelection</h2>
+<p>
+<code>protected boolean <strong>updateSelection</strong>(IStructuredSelection selection)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>selection</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.debug.ui.actions</strong></font>
</p>
@@ -13293,7 +27917,7 @@ extends org.eclipse.wst.xsl.internal.debug.ui.actions.AbstractParameterAction</p
</td>
</tr>
<tr>
-<td><code><strong>RemoveParameterAction(org.eclipse.wst.xsl.internal.debug.ui.tabs.main.ParameterViewer viewer)</strong></code></td>
+<td><code><strong>RemoveParameterAction</strong>(org.eclipse.wst.xsl.internal.debug.ui.tabs.main.ParameterViewer viewer)</code></td>
</tr>
</table>
<br>
@@ -13311,6 +27935,36 @@ extends org.eclipse.wst.xsl.internal.debug.ui.actions.AbstractParameterAction</p
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>RemoveParameterAction</h2>
+<p>
+<code>public <strong>RemoveParameterAction</strong>(org.eclipse.wst.xsl.internal.debug.ui.tabs.main.ParameterViewer viewer)</code>
+</p>
+<p>Create a new instance of this.</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>run</h2>
+<p>
+<code>public void <strong>run</strong>()</code>
+</p>
+<p></p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.debug.ui.breakpoint</strong></font>
</p>
@@ -13339,6 +27993,25 @@ extends NLS</pre>Messages for the debug UI breakpoints.<p></p>
</table>
<br>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>XSLBreakpointProvider_0</h2>
+<p>
+<code>public static java.lang.String <strong>XSLBreakpointProvider_0</strong></code>
+</p>
+<table>
+<tr>
+<td>Error message for null breakpoints.</td>
+</tr>
+</table>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.debug.ui.breakpoint</strong></font>
</p>
@@ -13359,7 +28032,7 @@ extends java.lang.Object</pre>An SSE <code>IBreakpointProvider</code> for XSL fi
</td>
</tr>
<tr>
-<td><code><strong>XSLBreakpointProvider()</strong></code></td>
+<td><code><strong>XSLBreakpointProvider</strong>()</code></td>
</tr>
</table>
<br>
@@ -13405,6 +28078,111 @@ extends java.lang.Object</pre>An SSE <code>IBreakpointProvider</code> for XSL fi
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>XSLBreakpointProvider</h2>
+<p>
+<code>public <strong>XSLBreakpointProvider</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>addBreakpoint</h2>
+<p>
+<code>public IStatus <strong>addBreakpoint</strong>(IDocument document
+ ,
+ IEditorInput input
+ ,
+ int editorLineNumber
+ ,
+ int offset)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>document</code>
+</p>
+<p>
+<code>input</code>
+</p>
+<p>
+<code>editorLineNumber</code>
+</p>
+<p>
+<code>offset</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>IStatus</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>CoreException</code>
+</p>
+<hr>
+<h2>getResource</h2>
+<p>
+<code>public IResource <strong>getResource</strong>(IEditorInput input)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>input</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>IResource</code>
+</p>
+<hr>
+<h2>setInitializationData</h2>
+<p>
+<code>public void <strong>setInitializationData</strong>(IConfigurationElement config
+ ,
+ java.lang.String propertyName
+ ,
+ java.lang.Object data)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>config</code>
+</p>
+<p>
+<code>propertyName</code>
+</p>
+<p>
+<code>data</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>CoreException</code>
+</p>
+<hr>
+<h2>setSourceEditingTextTools</h2>
+<p>
+<code>public void <strong>setSourceEditingTextTools</strong>(ISourceEditingTextTools tools)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>tools</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.debug.ui.model</strong></font>
</p>
@@ -13424,7 +28202,7 @@ extends java.lang.Object</pre>Creates a toggle breakpoint adapter<hr>
</td>
</tr>
<tr>
-<td><code><strong>XSLBreakpointAdapterFactory()</strong></code></td>
+<td><code><strong>XSLBreakpointAdapterFactory</strong>()</code></td>
</tr>
</table>
<br>
@@ -13450,6 +28228,59 @@ extends java.lang.Object</pre>Creates a toggle breakpoint adapter<hr>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>XSLBreakpointAdapterFactory</h2>
+<p>
+<code>public <strong>XSLBreakpointAdapterFactory</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getAdapter</h2>
+<p>
+<code>public java.lang.Object <strong>getAdapter</strong>(java.lang.Object adaptableObject
+ ,
+ java.lang.Class adapterType)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>adaptableObject</code>
+</p>
+<p>
+<code>adapterType</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.Object</code>
+</p>
+<hr>
+<h2>getAdapterList</h2>
+<p>
+<code>public java.lang.Class[] <strong>getAdapterList</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.Class[]</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.debug.ui.model</strong></font>
</p>
@@ -13470,7 +28301,7 @@ extends java.lang.Object</pre>An <code>IToggleBreakpointsTarget</code> for XSL b
</td>
</tr>
<tr>
-<td><code><strong>XSLLineBreakpointAdapter()</strong></code></td>
+<td><code><strong>XSLLineBreakpointAdapter</strong>()</code></td>
</tr>
</table>
<br>
@@ -13481,7 +28312,7 @@ extends java.lang.Object</pre>An <code>IToggleBreakpointsTarget</code> for XSL b
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>toggleLineBreakpoints(IWorkbenchPart part
+<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>canToggleLineBreakpoints(IWorkbenchPart part
,
ISelection selection)</code>
<br>
@@ -13489,7 +28320,7 @@ extends java.lang.Object</pre>An <code>IToggleBreakpointsTarget</code> for XSL b
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>canToggleLineBreakpoints(IWorkbenchPart part
+<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>canToggleMethodBreakpoints(IWorkbenchPart part
,
ISelection selection)</code>
<br>
@@ -13497,7 +28328,7 @@ extends java.lang.Object</pre>An <code>IToggleBreakpointsTarget</code> for XSL b
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>toggleMethodBreakpoints(IWorkbenchPart part
+<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>canToggleWatchpoints(IWorkbenchPart part
,
ISelection selection)</code>
<br>
@@ -13505,7 +28336,7 @@ extends java.lang.Object</pre>An <code>IToggleBreakpointsTarget</code> for XSL b
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>canToggleMethodBreakpoints(IWorkbenchPart part
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>toggleLineBreakpoints(IWorkbenchPart part
,
ISelection selection)</code>
<br>
@@ -13513,7 +28344,7 @@ extends java.lang.Object</pre>An <code>IToggleBreakpointsTarget</code> for XSL b
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>toggleWatchpoints(IWorkbenchPart part
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>toggleMethodBreakpoints(IWorkbenchPart part
,
ISelection selection)</code>
<br>
@@ -13521,7 +28352,7 @@ extends java.lang.Object</pre>An <code>IToggleBreakpointsTarget</code> for XSL b
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>canToggleWatchpoints(IWorkbenchPart part
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>toggleWatchpoints(IWorkbenchPart part
,
ISelection selection)</code>
<br>
@@ -13530,6 +28361,144 @@ extends java.lang.Object</pre>An <code>IToggleBreakpointsTarget</code> for XSL b
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>XSLLineBreakpointAdapter</h2>
+<p>
+<code>public <strong>XSLLineBreakpointAdapter</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>canToggleLineBreakpoints</h2>
+<p>
+<code>public boolean <strong>canToggleLineBreakpoints</strong>(IWorkbenchPart part
+ ,
+ ISelection selection)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>part</code>
+</p>
+<p>
+<code>selection</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<hr>
+<h2>canToggleMethodBreakpoints</h2>
+<p>
+<code>public boolean <strong>canToggleMethodBreakpoints</strong>(IWorkbenchPart part
+ ,
+ ISelection selection)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>part</code>
+</p>
+<p>
+<code>selection</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<hr>
+<h2>canToggleWatchpoints</h2>
+<p>
+<code>public boolean <strong>canToggleWatchpoints</strong>(IWorkbenchPart part
+ ,
+ ISelection selection)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>part</code>
+</p>
+<p>
+<code>selection</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<hr>
+<h2>toggleLineBreakpoints</h2>
+<p>
+<code>public void <strong>toggleLineBreakpoints</strong>(IWorkbenchPart part
+ ,
+ ISelection selection)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>part</code>
+</p>
+<p>
+<code>selection</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>CoreException</code>
+</p>
+<hr>
+<h2>toggleMethodBreakpoints</h2>
+<p>
+<code>public void <strong>toggleMethodBreakpoints</strong>(IWorkbenchPart part
+ ,
+ ISelection selection)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>part</code>
+</p>
+<p>
+<code>selection</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>CoreException</code>
+</p>
+<hr>
+<h2>toggleWatchpoints</h2>
+<p>
+<code>public void <strong>toggleWatchpoints</strong>(IWorkbenchPart part
+ ,
+ ISelection selection)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>part</code>
+</p>
+<p>
+<code>selection</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>CoreException</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.debug.ui.model</strong></font>
</p>
@@ -13550,7 +28519,7 @@ extends LabelProvider</pre>An <code>IDebugModelPresentation</code> for XSL debug
</td>
</tr>
<tr>
-<td><code><strong>XSLModelPresentation()</strong></code></td>
+<td><code><strong>XSLModelPresentation</strong>()</code></td>
</tr>
</table>
<br>
@@ -13561,55 +28530,176 @@ extends LabelProvider</pre>An <code>IDebugModelPresentation</code> for XSL debug
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setAttribute(java.lang.String attribute
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>computeDetail(IValue value
,
- java.lang.Object value)</code>
+ IValueDetailListener listener)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public org.eclipse.swt.graphics.Image</code></td><td width="" align="left"><code>getImage(java.lang.Object element)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>dispose()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getText(java.lang.Object element)</code>
+<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getEditorId(IEditorInput input
+ ,
+ java.lang.Object element)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>dispose()</code>
+<td width="20%" align="right"><code>public IEditorInput</code></td><td width="" align="left"><code>getEditorInput(java.lang.Object element)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>computeDetail(IValue value
- ,
- IValueDetailListener listener)</code>
+<td width="20%" align="right"><code>public org.eclipse.swt.graphics.Image</code></td><td width="" align="left"><code>getImage(java.lang.Object element)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public IEditorInput</code></td><td width="" align="left"><code>getEditorInput(java.lang.Object element)</code>
+<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getText(java.lang.Object element)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getEditorId(IEditorInput input
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setAttribute(java.lang.String attribute
,
- java.lang.Object element)</code>
+ java.lang.Object value)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>XSLModelPresentation</h2>
+<p>
+<code>public <strong>XSLModelPresentation</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>computeDetail</h2>
+<p>
+<code>public void <strong>computeDetail</strong>(IValue value
+ ,
+ IValueDetailListener listener)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>value</code>
+</p>
+<p>
+<code>listener</code>
+</p>
+<hr>
+<h2>dispose</h2>
+<p>
+<code>public void <strong>dispose</strong>()</code>
+</p>
+<p></p>
+<hr>
+<h2>getEditorId</h2>
+<p>
+<code>public java.lang.String <strong>getEditorId</strong>(IEditorInput input
+ ,
+ java.lang.Object element)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>input</code>
+</p>
+<p>
+<code>element</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
+<h2>getEditorInput</h2>
+<p>
+<code>public IEditorInput <strong>getEditorInput</strong>(java.lang.Object element)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>element</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>IEditorInput</code>
+</p>
+<hr>
+<h2>getImage</h2>
+<p>
+<code>public org.eclipse.swt.graphics.Image <strong>getImage</strong>(java.lang.Object element)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>element</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.swt.graphics.Image</code>
+</p>
+<hr>
+<h2>getText</h2>
+<p>
+<code>public java.lang.String <strong>getText</strong>(java.lang.Object element)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>element</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
+<h2>setAttribute</h2>
+<p>
+<code>public void <strong>setAttribute</strong>(java.lang.String attribute
+ ,
+ java.lang.Object value)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>attribute</code>
+</p>
+<p>
+<code>value</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.debug.ui.preferences</strong></font>
</p>
@@ -13630,13 +28720,13 @@ extends StatusDialog</pre>
</td>
</tr>
<tr>
-<td><code><strong>AddProcessorDialog(org.eclipse.wst.xsl.internal.debug.ui.preferences.InstalledProcessorsBlock block
+<td><code><strong>AddProcessorDialog</strong>(org.eclipse.wst.xsl.internal.debug.ui.preferences.InstalledProcessorsBlock block
,
org.eclipse.swt.widgets.Shell parent
,
org.eclipse.wst.xsl.launching.IProcessorType[] types
,
- org.eclipse.wst.xsl.launching.IProcessorInstall install)</strong></code></td>
+ org.eclipse.wst.xsl.launching.IProcessorInstall install)</code></td>
</tr>
</table>
<br>
@@ -13653,109 +28743,311 @@ extends StatusDialog</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>createDialogFields(org.eclipse.swt.widgets.Composite parent)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>create()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>createFieldListeners()</code>
+<td width="20%" align="right"><code>protected org.eclipse.swt.widgets.Control</code></td><td width="" align="left"><code>createDialogArea(org.eclipse.swt.widgets.Composite ancestor)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected java.lang.String</code></td><td width="" align="left"><code>getProcessorName()</code>
+<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>createDialogFields(org.eclipse.swt.widgets.Composite parent)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected org.eclipse.swt.widgets.Control</code></td><td width="" align="left"><code>createDialogArea(org.eclipse.swt.widgets.Composite ancestor)</code>
+<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>createFieldListeners()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>create()</code>
+<td width="20%" align="right"><code>protected java.io.File</code></td><td width="" align="left"><code>getAbsoluteFileOrEmpty(java.lang.String path)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected IStatus</code></td><td width="" align="left"><code>validateVersionStatus()</code>
+<td width="20%" align="right"><code>protected IDialogSettings</code></td><td width="" align="left"><code>getDialogBoundsSettings()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>updateStatusLine()</code>
+<td width="20%" align="right"><code>protected java.lang.String</code></td><td width="" align="left"><code>getDialogSettingsSectionName()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>okPressed()</code>
+<td width="20%" align="right"><code>protected java.lang.String</code></td><td width="" align="left"><code>getProcessorName()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>setFieldValuesToProcessor(org.eclipse.wst.xsl.internal.debug.ui.tabs.processor.InstallStandin processor)</code>
+<td width="20%" align="right"><code>protected IStatus</code></td><td width="" align="left"><code>getSystemLibraryStatus()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected java.io.File</code></td><td width="" align="left"><code>getAbsoluteFileOrEmpty(java.lang.String path)</code>
+<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>okPressed()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected IStatus</code></td><td width="" align="left"><code>getSystemLibraryStatus()</code>
+<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>setButtonLayoutData(org.eclipse.swt.widgets.Button button)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>setSystemLibraryStatus(IStatus status)</code>
+<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>setFieldValuesToProcessor(org.eclipse.wst.xsl.internal.debug.ui.tabs.processor.InstallStandin processor)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>setVersionStatus(IStatus status)</code>
+<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>setSystemLibraryStatus(IStatus status)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>updateButtonsEnableState(IStatus status)</code>
+<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>setVersionStatus(IStatus status)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>setButtonLayoutData(org.eclipse.swt.widgets.Button button)</code>
+<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>updateButtonsEnableState(IStatus status)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected java.lang.String</code></td><td width="" align="left"><code>getDialogSettingsSectionName()</code>
+<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>updateStatusLine()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected IDialogSettings</code></td><td width="" align="left"><code>getDialogBoundsSettings()</code>
+<td width="20%" align="right"><code>protected IStatus</code></td><td width="" align="left"><code>validateVersionStatus()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>AddProcessorDialog</h2>
+<p>
+<code>public <strong>AddProcessorDialog</strong>(org.eclipse.wst.xsl.internal.debug.ui.preferences.InstalledProcessorsBlock block
+ ,
+ org.eclipse.swt.widgets.Shell parent
+ ,
+ org.eclipse.wst.xsl.launching.IProcessorType[] types
+ ,
+ org.eclipse.wst.xsl.launching.IProcessorInstall install)</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>configureShell</h2>
+<p>
+<code>protected void <strong>configureShell</strong>(org.eclipse.swt.widgets.Shell newShell)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>newShell</code>
+</p>
+<hr>
+<h2>create</h2>
+<p>
+<code>public void <strong>create</strong>()</code>
+</p>
+<p></p>
+<hr>
+<h2>createDialogArea</h2>
+<p>
+<code>protected org.eclipse.swt.widgets.Control <strong>createDialogArea</strong>(org.eclipse.swt.widgets.Composite ancestor)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>ancestor</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.swt.widgets.Control</code>
+</p>
+<hr>
+<h2>createDialogFields</h2>
+<p>
+<code>protected void <strong>createDialogFields</strong>(org.eclipse.swt.widgets.Composite parent)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>parent</code>
+</p>
+<hr>
+<h2>createFieldListeners</h2>
+<p>
+<code>protected void <strong>createFieldListeners</strong>()</code>
+</p>
+<p></p>
+<hr>
+<h2>getAbsoluteFileOrEmpty</h2>
+<p>
+<code>protected java.io.File <strong>getAbsoluteFileOrEmpty</strong>(java.lang.String path)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>path</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>java.io.File</code>
+</p>
+<hr>
+<h2>getDialogBoundsSettings</h2>
+<p>
+<code>protected IDialogSettings <strong>getDialogBoundsSettings</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>IDialogSettings</code>
+</p>
+<hr>
+<h2>getDialogSettingsSectionName</h2>
+<p>
+<code>protected java.lang.String <strong>getDialogSettingsSectionName</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
+<h2>getProcessorName</h2>
+<p>
+<code>protected java.lang.String <strong>getProcessorName</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
+<h2>getSystemLibraryStatus</h2>
+<p>
+<code>protected IStatus <strong>getSystemLibraryStatus</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>IStatus</code>
+</p>
+<hr>
+<h2>okPressed</h2>
+<p>
+<code>protected void <strong>okPressed</strong>()</code>
+</p>
+<p></p>
+<hr>
+<h2>setButtonLayoutData</h2>
+<p>
+<code>protected void <strong>setButtonLayoutData</strong>(org.eclipse.swt.widgets.Button button)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>button</code>
+</p>
+<hr>
+<h2>setFieldValuesToProcessor</h2>
+<p>
+<code>protected void <strong>setFieldValuesToProcessor</strong>(org.eclipse.wst.xsl.internal.debug.ui.tabs.processor.InstallStandin processor)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>processor</code>
+</p>
+<hr>
+<h2>setSystemLibraryStatus</h2>
+<p>
+<code>protected void <strong>setSystemLibraryStatus</strong>(IStatus status)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>status</code>
+</p>
+<hr>
+<h2>setVersionStatus</h2>
+<p>
+<code>protected void <strong>setVersionStatus</strong>(IStatus status)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>status</code>
+</p>
+<hr>
+<h2>updateButtonsEnableState</h2>
+<p>
+<code>protected void <strong>updateButtonsEnableState</strong>(IStatus status)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>status</code>
+</p>
+<hr>
+<h2>updateStatusLine</h2>
+<p>
+<code>protected void <strong>updateStatusLine</strong>()</code>
+</p>
+<p></p>
+<hr>
+<h2>validateVersionStatus</h2>
+<p>
+<code>protected IStatus <strong>validateVersionStatus</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>IStatus</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.debug.ui.preferences</strong></font>
</p>
@@ -13776,7 +29068,7 @@ extends PreferencePage</pre>
</td>
</tr>
<tr>
-<td><code><strong>BasePreferencePage()</strong></code></td>
+<td><code><strong>BasePreferencePage</strong>()</code></td>
</tr>
</table>
<br>
@@ -13800,6 +29092,54 @@ extends PreferencePage</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>BasePreferencePage</h2>
+<p>
+<code>public <strong>BasePreferencePage</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>createContents</h2>
+<p>
+<code>protected org.eclipse.swt.widgets.Control <strong>createContents</strong>(org.eclipse.swt.widgets.Composite parent)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>parent</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.swt.widgets.Control</code>
+</p>
+<hr>
+<h2>init</h2>
+<p>
+<code>public void <strong>init</strong>(IWorkbench workbench)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>workbench</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.debug.ui.preferences</strong></font>
</p>
@@ -13820,7 +29160,7 @@ extends org.eclipse.wst.xsl.internal.debug.ui.AbstractTableBlock</pre>
</td>
</tr>
<tr>
-<td><code><strong>FeaturesBlock(DialogPage dialogPage)</strong></code></td>
+<td><code><strong>FeaturesBlock</strong>(DialogPage dialogPage)</code></td>
</tr>
</table>
<br>
@@ -13831,73 +29171,207 @@ extends org.eclipse.wst.xsl.internal.debug.ui.AbstractTableBlock</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected IDialogSettings</code></td><td width="" align="left"><code>getDialogSettings()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>createControl(org.eclipse.swt.widgets.Composite parent)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected java.lang.String</code></td><td width="" align="left"><code>getQualifier()</code>
+<td width="20%" align="right"><code>protected IDialogSettings</code></td><td width="" align="left"><code>getDialogSettings()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected org.eclipse.swt.widgets.Table</code></td><td width="" align="left"><code>getTable()</code>
+<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getName()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>createControl(org.eclipse.swt.widgets.Composite parent)</code>
+<td width="20%" align="right"><code>protected java.lang.String</code></td><td width="" align="left"><code>getQualifier()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>setInput(org.eclipse.wst.xsl.launching.IFeature[] input)</code>
+<td width="20%" align="right"><code>protected org.eclipse.swt.widgets.Table</code></td><td width="" align="left"><code>getTable()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>setFeatureValues(java.util.Map map)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>initializeFrom(ILaunchConfiguration configuration)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getName()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>performApply(ILaunchConfigurationWorkingCopy configuration)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>initializeFrom(ILaunchConfiguration configuration)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setDefaults(ILaunchConfigurationWorkingCopy configuration)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>performApply(ILaunchConfigurationWorkingCopy configuration)</code>
+<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>setErrorMessage(java.lang.String errorMessage)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setDefaults(ILaunchConfigurationWorkingCopy configuration)</code>
+<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>setFeatureValues(java.util.Map map)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>setErrorMessage(java.lang.String errorMessage)</code>
+<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>setInput(org.eclipse.wst.xsl.launching.IFeature[] input)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>FeaturesBlock</h2>
+<p>
+<code>public <strong>FeaturesBlock</strong>(DialogPage dialogPage)</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>createControl</h2>
+<p>
+<code>public void <strong>createControl</strong>(org.eclipse.swt.widgets.Composite parent)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>parent</code>
+</p>
+<hr>
+<h2>getDialogSettings</h2>
+<p>
+<code>protected IDialogSettings <strong>getDialogSettings</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>IDialogSettings</code>
+</p>
+<hr>
+<h2>getName</h2>
+<p>
+<code>public java.lang.String <strong>getName</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
+<h2>getQualifier</h2>
+<p>
+<code>protected java.lang.String <strong>getQualifier</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
+<h2>getTable</h2>
+<p>
+<code>protected org.eclipse.swt.widgets.Table <strong>getTable</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.swt.widgets.Table</code>
+</p>
+<hr>
+<h2>initializeFrom</h2>
+<p>
+<code>public void <strong>initializeFrom</strong>(ILaunchConfiguration configuration)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>configuration</code>
+</p>
+<hr>
+<h2>performApply</h2>
+<p>
+<code>public void <strong>performApply</strong>(ILaunchConfigurationWorkingCopy configuration)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>configuration</code>
+</p>
+<hr>
+<h2>setDefaults</h2>
+<p>
+<code>public void <strong>setDefaults</strong>(ILaunchConfigurationWorkingCopy configuration)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>configuration</code>
+</p>
+<hr>
+<h2>setErrorMessage</h2>
+<p>
+<code>protected void <strong>setErrorMessage</strong>(java.lang.String errorMessage)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>errorMessage</code>
+</p>
+<hr>
+<h2>setFeatureValues</h2>
+<p>
+<code>protected void <strong>setFeatureValues</strong>(java.util.Map map)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>map</code>
+</p>
+<hr>
+<h2>setInput</h2>
+<p>
+<code>protected void <strong>setInput</strong>(org.eclipse.wst.xsl.launching.IFeature[] input)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>input</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.debug.ui.preferences</strong></font>
</p>
@@ -13918,7 +29392,7 @@ extends PreferencePage</pre>
</td>
</tr>
<tr>
-<td><code><strong>FeaturesPreferencePage()</strong></code></td>
+<td><code><strong>FeaturesPreferencePage</strong>()</code></td>
</tr>
</table>
<br>
@@ -13960,6 +29434,80 @@ extends PreferencePage</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>FeaturesPreferencePage</h2>
+<p>
+<code>public <strong>FeaturesPreferencePage</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>createContents</h2>
+<p>
+<code>protected org.eclipse.swt.widgets.Control <strong>createContents</strong>(org.eclipse.swt.widgets.Composite parent)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>parent</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.swt.widgets.Control</code>
+</p>
+<hr>
+<h2>getInitialType</h2>
+<p>
+<code>package-private org.eclipse.wst.xsl.launching.IProcessorType <strong>getInitialType</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.launching.IProcessorType</code>
+</p>
+<hr>
+<h2>init</h2>
+<p>
+<code>public void <strong>init</strong>(IWorkbench workbench)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>workbench</code>
+</p>
+<hr>
+<h2>performDefaults</h2>
+<p>
+<code>protected void <strong>performDefaults</strong>()</code>
+</p>
+<p></p>
+<hr>
+<h2>performOk</h2>
+<p>
+<code>public boolean <strong>performOk</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.debug.ui.preferences</strong></font>
</p>
@@ -13980,7 +29528,7 @@ extends org.eclipse.wst.xsl.internal.debug.ui.AbstractTableBlock</pre>
</td>
</tr>
<tr>
-<td><code><strong>InstalledProcessorsBlock()</strong></code></td>
+<td><code><strong>InstalledProcessorsBlock</strong>()</code></td>
</tr>
</table>
<br>
@@ -13997,141 +29545,404 @@ extends org.eclipse.wst.xsl.internal.debug.ui.AbstractTableBlock</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>removeSelectionChangedListener(ISelectionChangedListener listener)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>createControl(org.eclipse.swt.widgets.Composite ancestor)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public ISelection</code></td><td width="" align="left"><code>getSelection()</code>
+<td width="20%" align="right"><code>protected org.eclipse.swt.widgets.Button</code></td><td width="" align="left"><code>createPushButton(org.eclipse.swt.widgets.Composite parent
+ ,
+ java.lang.String label)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setSelection(ISelection selection)</code>
+<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>fillWithWorkspaceProcessors()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>createControl(org.eclipse.swt.widgets.Composite ancestor)</code>
+<td width="20%" align="right"><code>public org.eclipse.wst.xsl.launching.IProcessorInstall</code></td><td width="" align="left"><code>getCheckedInstall()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>fillWithWorkspaceProcessors()</code>
+<td width="20%" align="right"><code>public org.eclipse.swt.widgets.Control</code></td><td width="" align="left"><code>getControl()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected org.eclipse.swt.widgets.Button</code></td><td width="" align="left"><code>createPushButton(org.eclipse.swt.widgets.Composite parent
- ,
- java.lang.String label)</code>
+<td width="20%" align="right"><code>protected IDialogSettings</code></td><td width="" align="left"><code>getDialogSettings()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public org.eclipse.swt.widgets.Control</code></td><td width="" align="left"><code>getControl()</code>
+<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getName()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>setProcessors(org.eclipse.wst.xsl.launching.IProcessorInstall[] vms)</code>
+<td width="20%" align="right"><code>public org.eclipse.wst.xsl.launching.IProcessorInstall[]</code></td><td width="" align="left"><code>getProcessors()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public org.eclipse.wst.xsl.launching.IProcessorInstall[]</code></td><td width="" align="left"><code>getProcessors()</code>
+<td width="20%" align="right"><code>protected java.lang.String</code></td><td width="" align="left"><code>getQualifier()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>processorAdded(org.eclipse.wst.xsl.launching.IProcessorInstall install)</code>
+<td width="20%" align="right"><code>public ISelection</code></td><td width="" align="left"><code>getSelection()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>isDuplicateName(java.lang.String name)</code>
+<td width="20%" align="right"><code>protected org.eclipse.swt.widgets.Table</code></td><td width="" align="left"><code>getTable()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>removeProcessors(org.eclipse.wst.xsl.launching.IProcessorInstall[] theInstalls)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>initializeFrom(ILaunchConfiguration configuration)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setCheckedInstall(org.eclipse.wst.xsl.launching.IProcessorInstall install)</code>
+<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>isDuplicateName(java.lang.String name)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public org.eclipse.wst.xsl.launching.IProcessorInstall</code></td><td width="" align="left"><code>getCheckedInstall()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>performApply(ILaunchConfigurationWorkingCopy configuration)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>setSortColumn(int column)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>processorAdded(org.eclipse.wst.xsl.launching.IProcessorInstall install)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected org.eclipse.swt.widgets.Table</code></td><td width="" align="left"><code>getTable()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>removeProcessors(org.eclipse.wst.xsl.launching.IProcessorInstall[] theInstalls)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected IDialogSettings</code></td><td width="" align="left"><code>getDialogSettings()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>removeSelectionChangedListener(ISelectionChangedListener listener)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected java.lang.String</code></td><td width="" align="left"><code>getQualifier()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setCheckedInstall(org.eclipse.wst.xsl.launching.IProcessorInstall install)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getName()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setDefaults(ILaunchConfigurationWorkingCopy configuration)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>initializeFrom(ILaunchConfiguration configuration)</code>
+<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>setProcessors(org.eclipse.wst.xsl.launching.IProcessorInstall[] vms)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>performApply(ILaunchConfigurationWorkingCopy configuration)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setSelection(ISelection selection)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setDefaults(ILaunchConfigurationWorkingCopy configuration)</code>
+<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>setSortColumn(int column)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>InstalledProcessorsBlock</h2>
+<p>
+<code>public <strong>InstalledProcessorsBlock</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>addSelectionChangedListener</h2>
+<p>
+<code>public void <strong>addSelectionChangedListener</strong>(ISelectionChangedListener listener)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>listener</code>
+</p>
+<hr>
+<h2>createControl</h2>
+<p>
+<code>public void <strong>createControl</strong>(org.eclipse.swt.widgets.Composite ancestor)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>ancestor</code>
+</p>
+<hr>
+<h2>createPushButton</h2>
+<p>
+<code>protected org.eclipse.swt.widgets.Button <strong>createPushButton</strong>(org.eclipse.swt.widgets.Composite parent
+ ,
+ java.lang.String label)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>parent</code>
+</p>
+<p>
+<code>label</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.swt.widgets.Button</code>
+</p>
+<hr>
+<h2>fillWithWorkspaceProcessors</h2>
+<p>
+<code>protected void <strong>fillWithWorkspaceProcessors</strong>()</code>
+</p>
+<p></p>
+<hr>
+<h2>getCheckedInstall</h2>
+<p>
+<code>public org.eclipse.wst.xsl.launching.IProcessorInstall <strong>getCheckedInstall</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.launching.IProcessorInstall</code>
+</p>
+<hr>
+<h2>getControl</h2>
+<p>
+<code>public org.eclipse.swt.widgets.Control <strong>getControl</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.swt.widgets.Control</code>
+</p>
+<hr>
+<h2>getDialogSettings</h2>
+<p>
+<code>protected IDialogSettings <strong>getDialogSettings</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>IDialogSettings</code>
+</p>
+<hr>
+<h2>getName</h2>
+<p>
+<code>public java.lang.String <strong>getName</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
+<h2>getProcessors</h2>
+<p>
+<code>public org.eclipse.wst.xsl.launching.IProcessorInstall[] <strong>getProcessors</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.launching.IProcessorInstall[]</code>
+</p>
+<hr>
+<h2>getQualifier</h2>
+<p>
+<code>protected java.lang.String <strong>getQualifier</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
+<h2>getSelection</h2>
+<p>
+<code>public ISelection <strong>getSelection</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>ISelection</code>
+</p>
+<hr>
+<h2>getTable</h2>
+<p>
+<code>protected org.eclipse.swt.widgets.Table <strong>getTable</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.swt.widgets.Table</code>
+</p>
+<hr>
+<h2>initializeFrom</h2>
+<p>
+<code>public void <strong>initializeFrom</strong>(ILaunchConfiguration configuration)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>configuration</code>
+</p>
+<hr>
+<h2>isDuplicateName</h2>
+<p>
+<code>public boolean <strong>isDuplicateName</strong>(java.lang.String name)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>name</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<hr>
+<h2>performApply</h2>
+<p>
+<code>public void <strong>performApply</strong>(ILaunchConfigurationWorkingCopy configuration)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>configuration</code>
+</p>
+<hr>
+<h2>processorAdded</h2>
+<p>
+<code>public void <strong>processorAdded</strong>(org.eclipse.wst.xsl.launching.IProcessorInstall install)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>install</code>
+</p>
+<hr>
+<h2>removeProcessors</h2>
+<p>
+<code>public void <strong>removeProcessors</strong>(org.eclipse.wst.xsl.launching.IProcessorInstall[] theInstalls)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>theInstalls</code>
+</p>
+<hr>
+<h2>removeSelectionChangedListener</h2>
+<p>
+<code>public void <strong>removeSelectionChangedListener</strong>(ISelectionChangedListener listener)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>listener</code>
+</p>
+<hr>
+<h2>setCheckedInstall</h2>
+<p>
+<code>public void <strong>setCheckedInstall</strong>(org.eclipse.wst.xsl.launching.IProcessorInstall install)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>install</code>
+</p>
+<hr>
+<h2>setDefaults</h2>
+<p>
+<code>public void <strong>setDefaults</strong>(ILaunchConfigurationWorkingCopy configuration)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>configuration</code>
+</p>
+<hr>
+<h2>setProcessors</h2>
+<p>
+<code>protected void <strong>setProcessors</strong>(org.eclipse.wst.xsl.launching.IProcessorInstall[] vms)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>vms</code>
+</p>
+<hr>
+<h2>setSelection</h2>
+<p>
+<code>public void <strong>setSelection</strong>(ISelection selection)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>selection</code>
+</p>
+<hr>
+<h2>setSortColumn</h2>
+<p>
+<code>protected void <strong>setSortColumn</strong>(int column)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>column</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.debug.ui.preferences</strong></font>
</p>
@@ -14159,6 +29970,29 @@ extends java.lang.Object</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getString</h2>
+<p>
+<code>public java.lang.String <strong>getString</strong>(java.lang.String key)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>key</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.debug.ui.preferences</strong></font>
</p>
@@ -14179,7 +30013,7 @@ extends org.eclipse.wst.xsl.internal.debug.ui.AbstractTableBlock</pre>
</td>
</tr>
<tr>
-<td><code><strong>OutputBlock()</strong></code></td>
+<td><code><strong>OutputBlock</strong>()</code></td>
</tr>
</table>
<br>
@@ -14190,81 +30024,226 @@ extends org.eclipse.wst.xsl.internal.debug.ui.AbstractTableBlock</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected IDialogSettings</code></td><td width="" align="left"><code>getDialogSettings()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>addSelectionChangedListener(ISelectionChangedListener listener)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected java.lang.String</code></td><td width="" align="left"><code>getQualifier()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>createControl(org.eclipse.swt.widgets.Composite parent)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected org.eclipse.swt.widgets.Table</code></td><td width="" align="left"><code>getTable()</code>
+<td width="20%" align="right"><code>protected IDialogSettings</code></td><td width="" align="left"><code>getDialogSettings()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>createControl(org.eclipse.swt.widgets.Composite parent)</code>
+<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getName()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>addSelectionChangedListener(ISelectionChangedListener listener)</code>
+<td width="20%" align="right"><code>protected java.lang.String</code></td><td width="" align="left"><code>getQualifier()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>refresh()</code>
+<td width="20%" align="right"><code>protected org.eclipse.swt.widgets.Table</code></td><td width="" align="left"><code>getTable()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setOutputPropertyValues(org.eclipse.wst.xsl.launching.IProcessorType type
- ,
- java.util.Properties properties)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>initializeFrom(ILaunchConfiguration configuration)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setInput(org.eclipse.wst.xsl.launching.IOutputProperty[] keys)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>performApply(ILaunchConfigurationWorkingCopy configuration)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getName()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>refresh()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>initializeFrom(ILaunchConfiguration configuration)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setDefaults(ILaunchConfigurationWorkingCopy configuration)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>performApply(ILaunchConfigurationWorkingCopy configuration)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setInput(org.eclipse.wst.xsl.launching.IOutputProperty[] keys)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setDefaults(ILaunchConfigurationWorkingCopy configuration)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setOutputPropertyValues(org.eclipse.wst.xsl.launching.IProcessorType type
+ ,
+ java.util.Properties properties)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>OutputBlock</h2>
+<p>
+<code>public <strong>OutputBlock</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>addSelectionChangedListener</h2>
+<p>
+<code>public void <strong>addSelectionChangedListener</strong>(ISelectionChangedListener listener)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>listener</code>
+</p>
+<hr>
+<h2>createControl</h2>
+<p>
+<code>public void <strong>createControl</strong>(org.eclipse.swt.widgets.Composite parent)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>parent</code>
+</p>
+<hr>
+<h2>getDialogSettings</h2>
+<p>
+<code>protected IDialogSettings <strong>getDialogSettings</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>IDialogSettings</code>
+</p>
+<hr>
+<h2>getName</h2>
+<p>
+<code>public java.lang.String <strong>getName</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
+<h2>getQualifier</h2>
+<p>
+<code>protected java.lang.String <strong>getQualifier</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
+<h2>getTable</h2>
+<p>
+<code>protected org.eclipse.swt.widgets.Table <strong>getTable</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.swt.widgets.Table</code>
+</p>
+<hr>
+<h2>initializeFrom</h2>
+<p>
+<code>public void <strong>initializeFrom</strong>(ILaunchConfiguration configuration)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>configuration</code>
+</p>
+<hr>
+<h2>performApply</h2>
+<p>
+<code>public void <strong>performApply</strong>(ILaunchConfigurationWorkingCopy configuration)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>configuration</code>
+</p>
+<hr>
+<h2>refresh</h2>
+<p>
+<code>public void <strong>refresh</strong>()</code>
+</p>
+<p></p>
+<hr>
+<h2>setDefaults</h2>
+<p>
+<code>public void <strong>setDefaults</strong>(ILaunchConfigurationWorkingCopy configuration)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>configuration</code>
+</p>
+<hr>
+<h2>setInput</h2>
+<p>
+<code>public void <strong>setInput</strong>(org.eclipse.wst.xsl.launching.IOutputProperty[] keys)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>keys</code>
+</p>
+<hr>
+<h2>setOutputPropertyValues</h2>
+<p>
+<code>public void <strong>setOutputPropertyValues</strong>(org.eclipse.wst.xsl.launching.IProcessorType type
+ ,
+ java.util.Properties properties)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>type</code>
+</p>
+<p>
+<code>properties</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.debug.ui.preferences</strong></font>
</p>
@@ -14285,7 +30264,7 @@ extends PreferencePage</pre>
</td>
</tr>
<tr>
-<td><code><strong>OutputPreferencePage()</strong></code></td>
+<td><code><strong>OutputPreferencePage</strong>()</code></td>
</tr>
</table>
<br>
@@ -14321,6 +30300,70 @@ extends PreferencePage</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>OutputPreferencePage</h2>
+<p>
+<code>public <strong>OutputPreferencePage</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>createContents</h2>
+<p>
+<code>protected org.eclipse.swt.widgets.Control <strong>createContents</strong>(org.eclipse.swt.widgets.Composite parent)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>parent</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.swt.widgets.Control</code>
+</p>
+<hr>
+<h2>init</h2>
+<p>
+<code>public void <strong>init</strong>(IWorkbench workbench)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>workbench</code>
+</p>
+<hr>
+<h2>performDefaults</h2>
+<p>
+<code>protected void <strong>performDefaults</strong>()</code>
+</p>
+<p></p>
+<hr>
+<h2>performOk</h2>
+<p>
+<code>public boolean <strong>performOk</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.debug.ui.preferences</strong></font>
</p>
@@ -14341,37 +30384,37 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected static java.lang.String</code></td><td width="80%" align="left"><code>LAST_PATH_SETTING</code>
+<td width="20%" align="right"><code>protected org.eclipse.wst.xsl.internal.debug.ui.preferences.AddProcessorDialog</code></td><td width="80%" align="left"><code>addDialog</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected static java.lang.String</code></td><td width="80%" align="left"><code>LAST_WORKSPACE_PATH_SETTING</code>
+<td width="20%" align="right"><code>protected static java.lang.String</code></td><td width="80%" align="left"><code>DIALOG_SETTINGS_PREFIX</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected static java.lang.String</code></td><td width="80%" align="left"><code>DIALOG_SETTINGS_PREFIX</code>
+<td width="20%" align="right"><code>protected org.eclipse.wst.xsl.internal.debug.ui.tabs.processor.InstallStandin</code></td><td width="80%" align="left"><code>install</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected org.eclipse.wst.xsl.internal.debug.ui.tabs.processor.InstallStandin</code></td><td width="80%" align="left"><code>install</code>
+<td width="20%" align="right"><code>protected org.eclipse.wst.xsl.launching.IProcessorType</code></td><td width="80%" align="left"><code>installType</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected org.eclipse.wst.xsl.launching.IProcessorType</code></td><td width="80%" align="left"><code>installType</code>
+<td width="20%" align="right"><code>protected static java.lang.String</code></td><td width="80%" align="left"><code>LAST_PATH_SETTING</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected org.eclipse.wst.xsl.internal.debug.ui.preferences.AddProcessorDialog</code></td><td width="80%" align="left"><code>addDialog</code>
+<td width="20%" align="right"><code>protected static java.lang.String</code></td><td width="80%" align="left"><code>LAST_WORKSPACE_PATH_SETTING</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@@ -14391,7 +30434,7 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr>
-<td><code><strong>ProcessorLibraryBlock(org.eclipse.wst.xsl.internal.debug.ui.preferences.AddProcessorDialog dialog)</strong></code></td>
+<td><code><strong>ProcessorLibraryBlock</strong>(org.eclipse.wst.xsl.internal.debug.ui.preferences.AddProcessorDialog dialog)</code></td>
</tr>
</table>
<br>
@@ -14424,42 +30467,42 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>initializeFrom(org.eclipse.wst.xsl.internal.debug.ui.tabs.processor.InstallStandin standin
- ,
- org.eclipse.wst.xsl.launching.IProcessorType type)</code>
+<td width="20%" align="right"><code>protected org.eclipse.wst.xsl.launching.IProcessorInstall</code></td><td width="" align="left"><code>getVMInstall()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>update()</code>
+<td width="20%" align="right"><code>protected org.eclipse.wst.xsl.launching.IProcessorType</code></td><td width="" align="left"><code>getVMInstallType()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Updates buttons and status based on current libraries</td>
+ </td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>performApply(org.eclipse.wst.xsl.internal.debug.ui.tabs.processor.InstallStandin standin)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>initializeFrom(org.eclipse.wst.xsl.internal.debug.ui.tabs.processor.InstallStandin standin
+ ,
+ org.eclipse.wst.xsl.launching.IProcessorType type)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected org.eclipse.wst.xsl.launching.IProcessorInstall</code></td><td width="" align="left"><code>getVMInstall()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>performApply(org.eclipse.wst.xsl.internal.debug.ui.tabs.processor.InstallStandin standin)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected org.eclipse.wst.xsl.launching.IProcessorType</code></td><td width="" align="left"><code>getVMInstallType()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>selectionChanged(SelectionChangedEvent event)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>widgetSelected(org.eclipse.swt.events.SelectionEvent e)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>update()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- </td>
+ Updates buttons and status based on current libraries</td>
</tr>
<tr valign="top">
<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>widgetDefaultSelected(org.eclipse.swt.events.SelectionEvent e)</code>
@@ -14468,13 +30511,210 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>selectionChanged(SelectionChangedEvent event)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>widgetSelected(org.eclipse.swt.events.SelectionEvent e)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>addDialog</h2>
+<p>
+<code>protected org.eclipse.wst.xsl.internal.debug.ui.preferences.AddProcessorDialog <strong>addDialog</strong></code>
+</p>
+<hr>
+<h2>DIALOG_SETTINGS_PREFIX</h2>
+<p>
+<code>protected static java.lang.String <strong>DIALOG_SETTINGS_PREFIX</strong></code>
+</p>
+<hr>
+<h2>install</h2>
+<p>
+<code>protected org.eclipse.wst.xsl.internal.debug.ui.tabs.processor.InstallStandin <strong>install</strong></code>
+</p>
+<hr>
+<h2>installType</h2>
+<p>
+<code>protected org.eclipse.wst.xsl.launching.IProcessorType <strong>installType</strong></code>
+</p>
+<hr>
+<h2>LAST_PATH_SETTING</h2>
+<p>
+<code>protected static java.lang.String <strong>LAST_PATH_SETTING</strong></code>
+</p>
+<hr>
+<h2>LAST_WORKSPACE_PATH_SETTING</h2>
+<p>
+<code>protected static java.lang.String <strong>LAST_WORKSPACE_PATH_SETTING</strong></code>
+</p>
+<hr>
+<h2>tableViewer</h2>
+<p>
+<code>protected TableViewer <strong>tableViewer</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>ProcessorLibraryBlock</h2>
+<p>
+<code>public <strong>ProcessorLibraryBlock</strong>(org.eclipse.wst.xsl.internal.debug.ui.preferences.AddProcessorDialog dialog)</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>createControl</h2>
+<p>
+<code>public org.eclipse.swt.widgets.Control <strong>createControl</strong>(org.eclipse.swt.widgets.Composite parent)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>parent</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.swt.widgets.Control</code>
+</p>
+<hr>
+<h2>createPushButton</h2>
+<p>
+<code>protected org.eclipse.swt.widgets.Button <strong>createPushButton</strong>(org.eclipse.swt.widgets.Composite parent
+ ,
+ java.lang.String label)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>parent</code>
+</p>
+<p>
+<code>label</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.swt.widgets.Button</code>
+</p>
+<hr>
+<h2>createVerticalSpacer</h2>
+<p>
+<code>protected void <strong>createVerticalSpacer</strong>(org.eclipse.swt.widgets.Composite comp
+ ,
+ int colSpan)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>comp</code>
+</p>
+<p>
+<code>colSpan</code>
+</p>
+<hr>
+<h2>getVMInstall</h2>
+<p>
+<code>protected org.eclipse.wst.xsl.launching.IProcessorInstall <strong>getVMInstall</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.launching.IProcessorInstall</code>
+</p>
+<hr>
+<h2>getVMInstallType</h2>
+<p>
+<code>protected org.eclipse.wst.xsl.launching.IProcessorType <strong>getVMInstallType</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.launching.IProcessorType</code>
+</p>
+<hr>
+<h2>initializeFrom</h2>
+<p>
+<code>public void <strong>initializeFrom</strong>(org.eclipse.wst.xsl.internal.debug.ui.tabs.processor.InstallStandin standin
+ ,
+ org.eclipse.wst.xsl.launching.IProcessorType type)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>standin</code>
+</p>
+<p>
+<code>type</code>
+</p>
+<hr>
+<h2>performApply</h2>
+<p>
+<code>public void <strong>performApply</strong>(org.eclipse.wst.xsl.internal.debug.ui.tabs.processor.InstallStandin standin)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>standin</code>
+</p>
+<hr>
+<h2>selectionChanged</h2>
+<p>
+<code>public void <strong>selectionChanged</strong>(SelectionChangedEvent event)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>event</code>
+</p>
+<hr>
+<h2>update</h2>
+<p>
+<code>public void <strong>update</strong>()</code>
+</p>
+<p>Updates buttons and status based on current libraries</p>
+<hr>
+<h2>widgetDefaultSelected</h2>
+<p>
+<code>public void <strong>widgetDefaultSelected</strong>(org.eclipse.swt.events.SelectionEvent e)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>e</code>
+</p>
+<hr>
+<h2>widgetSelected</h2>
+<p>
+<code>public void <strong>widgetSelected</strong>(org.eclipse.swt.events.SelectionEvent e)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>e</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.debug.ui.preferences</strong></font>
</p>
@@ -14495,7 +30735,7 @@ extends PreferencePage</pre>
</td>
</tr>
<tr>
-<td><code><strong>ProcessorsPreferencePage()</strong></code></td>
+<td><code><strong>ProcessorsPreferencePage</strong>()</code></td>
</tr>
</table>
<br>
@@ -14506,13 +30746,13 @@ extends PreferencePage</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>init(IWorkbench workbench)</code>
+<td width="20%" align="right"><code>protected org.eclipse.swt.widgets.Control</code></td><td width="" align="left"><code>createContents(org.eclipse.swt.widgets.Composite ancestor)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected org.eclipse.swt.widgets.Control</code></td><td width="" align="left"><code>createContents(org.eclipse.swt.widgets.Composite ancestor)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>init(IWorkbench workbench)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@@ -14525,6 +30765,64 @@ extends PreferencePage</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>ProcessorsPreferencePage</h2>
+<p>
+<code>public <strong>ProcessorsPreferencePage</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>createContents</h2>
+<p>
+<code>protected org.eclipse.swt.widgets.Control <strong>createContents</strong>(org.eclipse.swt.widgets.Composite ancestor)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>ancestor</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.swt.widgets.Control</code>
+</p>
+<hr>
+<h2>init</h2>
+<p>
+<code>public void <strong>init</strong>(IWorkbench workbench)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>workbench</code>
+</p>
+<hr>
+<h2>performOk</h2>
+<p>
+<code>public boolean <strong>performOk</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.debug.ui.tabs.formatter</strong></font>
</p>
@@ -14545,7 +30843,7 @@ extends org.eclipse.wst.xsl.internal.debug.ui.XSLLaunchConfigurationTab</pre>
</td>
</tr>
<tr>
-<td><code><strong>FOFormatterTab()</strong></code></td>
+<td><code><strong>FOFormatterTab</strong>()</code></td>
</tr>
</table>
<br>
@@ -14562,37 +30860,117 @@ extends org.eclipse.wst.xsl.internal.debug.ui.XSLLaunchConfigurationTab</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setDefaults(ILaunchConfigurationWorkingCopy configuration)</code>
+<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getName()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>initializeFrom(ILaunchConfiguration configuration)</code>
+<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>handleSelectionChanged()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>performApply(ILaunchConfigurationWorkingCopy configuration)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>initializeFrom(ILaunchConfiguration configuration)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getName()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>performApply(ILaunchConfigurationWorkingCopy configuration)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>handleSelectionChanged()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setDefaults(ILaunchConfigurationWorkingCopy configuration)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>FOFormatterTab</h2>
+<p>
+<code>public <strong>FOFormatterTab</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>createControl</h2>
+<p>
+<code>public void <strong>createControl</strong>(org.eclipse.swt.widgets.Composite parent)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>parent</code>
+</p>
+<hr>
+<h2>getName</h2>
+<p>
+<code>public java.lang.String <strong>getName</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
+<h2>handleSelectionChanged</h2>
+<p>
+<code>protected void <strong>handleSelectionChanged</strong>()</code>
+</p>
+<p></p>
+<hr>
+<h2>initializeFrom</h2>
+<p>
+<code>public void <strong>initializeFrom</strong>(ILaunchConfiguration configuration)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>configuration</code>
+</p>
+<hr>
+<h2>performApply</h2>
+<p>
+<code>public void <strong>performApply</strong>(ILaunchConfigurationWorkingCopy configuration)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>configuration</code>
+</p>
+<hr>
+<h2>setDefaults</h2>
+<p>
+<code>public void <strong>setDefaults</strong>(ILaunchConfigurationWorkingCopy configuration)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>configuration</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.debug.ui.tabs.formatter</strong></font>
</p>
@@ -14620,6 +30998,29 @@ extends java.lang.Object</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getString</h2>
+<p>
+<code>public java.lang.String <strong>getString</strong>(java.lang.String key)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>key</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.debug.ui.tabs.formatter</strong></font>
</p>
@@ -14640,7 +31041,7 @@ extends org.eclipse.wst.xsl.internal.debug.ui.ResourceSelectionBlock</pre>
</td>
</tr>
<tr>
-<td><code><strong>RendererConfigurationBlock()</strong></code></td>
+<td><code><strong>RendererConfigurationBlock</strong>()</code></td>
</tr>
</table>
<br>
@@ -14651,43 +31052,127 @@ extends org.eclipse.wst.xsl.internal.debug.ui.ResourceSelectionBlock</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getName()</code>
+<td width="20%" align="right"><code>protected java.lang.String</code></td><td width="" align="left"><code>getMessage(int type)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>initializeFrom(ILaunchConfiguration configuration)</code>
+<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getName()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>performApply(ILaunchConfigurationWorkingCopy configuration)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>initializeFrom(ILaunchConfiguration configuration)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setDefaults(ILaunchConfigurationWorkingCopy configuration)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>performApply(ILaunchConfigurationWorkingCopy configuration)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected java.lang.String</code></td><td width="" align="left"><code>getMessage(int type)</code>
+<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>setDefaultResource()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>setDefaultResource()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setDefaults(ILaunchConfigurationWorkingCopy configuration)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>RendererConfigurationBlock</h2>
+<p>
+<code>public <strong>RendererConfigurationBlock</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getMessage</h2>
+<p>
+<code>protected java.lang.String <strong>getMessage</strong>(int type)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>type</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
+<h2>getName</h2>
+<p>
+<code>public java.lang.String <strong>getName</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
+<h2>initializeFrom</h2>
+<p>
+<code>public void <strong>initializeFrom</strong>(ILaunchConfiguration configuration)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>configuration</code>
+</p>
+<hr>
+<h2>performApply</h2>
+<p>
+<code>public void <strong>performApply</strong>(ILaunchConfigurationWorkingCopy configuration)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>configuration</code>
+</p>
+<hr>
+<h2>setDefaultResource</h2>
+<p>
+<code>protected void <strong>setDefaultResource</strong>()</code>
+</p>
+<p></p>
+<hr>
+<h2>setDefaults</h2>
+<p>
+<code>public void <strong>setDefaults</strong>(ILaunchConfigurationWorkingCopy configuration)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>configuration</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.debug.ui.tabs.formatter</strong></font>
</p>
@@ -14708,25 +31193,25 @@ extends NLS</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>XSLFOComboBlock_XSLFOGroupTitle</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>OutputBlock_FOButton</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>XSLFOComboBlock_None</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>OutputBlock_HTMLButton</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>XSLFOComboBlock_SpecificXSLFOProcessor</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>OutputBlock_OutputFilesGroupTitle</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>XSLFOComboBlock_ManageXSLFOProcessor</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>OutputBlock_OutputTypeGroupTitle</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@@ -14738,31 +31223,31 @@ extends NLS</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>OutputBlock_FOButton</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>URIResolverBlock_Working_Directory_8</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>OutputBlock_HTMLButton</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>XSLFOComboBlock_ManageXSLFOProcessor</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>OutputBlock_OutputFilesGroupTitle</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>XSLFOComboBlock_None</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>OutputBlock_OutputTypeGroupTitle</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>XSLFOComboBlock_SpecificXSLFOProcessor</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>URIResolverBlock_Working_Directory_8</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>XSLFOComboBlock_XSLFOGroupTitle</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@@ -14776,7 +31261,7 @@ extends NLS</pre>
</td>
</tr>
<tr>
-<td><code><strong>RendererTabMessages()</strong></code></td>
+<td><code><strong>RendererTabMessages</strong>()</code></td>
</tr>
</table>
<br>
@@ -14788,6 +31273,80 @@ extends NLS</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>OutputBlock_FOButton</h2>
+<p>
+<code>public static java.lang.String <strong>OutputBlock_FOButton</strong></code>
+</p>
+<hr>
+<h2>OutputBlock_HTMLButton</h2>
+<p>
+<code>public static java.lang.String <strong>OutputBlock_HTMLButton</strong></code>
+</p>
+<hr>
+<h2>OutputBlock_OutputFilesGroupTitle</h2>
+<p>
+<code>public static java.lang.String <strong>OutputBlock_OutputFilesGroupTitle</strong></code>
+</p>
+<hr>
+<h2>OutputBlock_OutputTypeGroupTitle</h2>
+<p>
+<code>public static java.lang.String <strong>OutputBlock_OutputTypeGroupTitle</strong></code>
+</p>
+<hr>
+<h2>OutputBlock_XMLButton</h2>
+<p>
+<code>public static java.lang.String <strong>OutputBlock_XMLButton</strong></code>
+</p>
+<hr>
+<h2>URIResolverBlock_Working_Directory_8</h2>
+<p>
+<code>public static java.lang.String <strong>URIResolverBlock_Working_Directory_8</strong></code>
+</p>
+<hr>
+<h2>XSLFOComboBlock_ManageXSLFOProcessor</h2>
+<p>
+<code>public static java.lang.String <strong>XSLFOComboBlock_ManageXSLFOProcessor</strong></code>
+</p>
+<hr>
+<h2>XSLFOComboBlock_None</h2>
+<p>
+<code>public static java.lang.String <strong>XSLFOComboBlock_None</strong></code>
+</p>
+<hr>
+<h2>XSLFOComboBlock_SpecificXSLFOProcessor</h2>
+<p>
+<code>public static java.lang.String <strong>XSLFOComboBlock_SpecificXSLFOProcessor</strong></code>
+</p>
+<hr>
+<h2>XSLFOComboBlock_XSLFOGroupTitle</h2>
+<p>
+<code>public static java.lang.String <strong>XSLFOComboBlock_XSLFOGroupTitle</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>RendererTabMessages</h2>
+<p>
+<code>public <strong>RendererTabMessages</strong>()</code>
+</p>
+<p></p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.debug.ui.tabs.formatter</strong></font>
</p>
@@ -14808,7 +31367,7 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr>
-<td><code><strong>XSLFOComboBlock()</strong></code></td>
+<td><code><strong>XSLFOComboBlock</strong>()</code></td>
</tr>
</table>
<br>
@@ -14832,6 +31391,50 @@ extends java.lang.Object</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>XSLFOComboBlock</h2>
+<p>
+<code>public <strong>XSLFOComboBlock</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>createControl</h2>
+<p>
+<code>public void <strong>createControl</strong>(org.eclipse.swt.widgets.Composite ancestor)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>ancestor</code>
+</p>
+<hr>
+<h2>getControl</h2>
+<p>
+<code>public org.eclipse.swt.widgets.Control <strong>getControl</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.swt.widgets.Control</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.debug.ui.tabs.main</strong></font>
</p>
@@ -14859,6 +31462,25 @@ extends </pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>parametersChanged</h2>
+<p>
+<code>public void <strong>parametersChanged</strong>(org.eclipse.wst.xsl.internal.debug.ui.tabs.main.ParameterViewer viewer)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>viewer</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.debug.ui.tabs.main</strong></font>
</p>
@@ -14886,6 +31508,25 @@ extends </pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>entriesChanged</h2>
+<p>
+<code>public void <strong>entriesChanged</strong>(org.eclipse.wst.xsl.internal.debug.ui.tabs.main.StylesheetViewer viewer)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>viewer</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.debug.ui.tabs.main</strong></font>
</p>
@@ -14920,7 +31561,7 @@ extends org.eclipse.wst.xsl.internal.debug.ui.ResourceSelectionBlock</pre>
</td>
</tr>
<tr>
-<td><code><strong>InputFileBlock(IFile defaultFile)</strong></code></td>
+<td><code><strong>InputFileBlock</strong>(IFile defaultFile)</code></td>
</tr>
</table>
<br>
@@ -14937,25 +31578,25 @@ extends org.eclipse.wst.xsl.internal.debug.ui.ResourceSelectionBlock</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setDefaults(ILaunchConfigurationWorkingCopy configuration)</code>
+<td width="20%" align="right"><code>protected java.lang.String</code></td><td width="" align="left"><code>getMessage(int type)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>initializeFrom(ILaunchConfiguration configuration)</code>
+<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getName()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>performApply(ILaunchConfigurationWorkingCopy configuration)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>initializeFrom(ILaunchConfiguration configuration)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getName()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>performApply(ILaunchConfigurationWorkingCopy configuration)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@@ -14967,13 +31608,13 @@ extends org.eclipse.wst.xsl.internal.debug.ui.ResourceSelectionBlock</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>textModified()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setDefaults(ILaunchConfigurationWorkingCopy configuration)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected java.lang.String</code></td><td width="" align="left"><code>getMessage(int type)</code>
+<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>textModified()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@@ -14986,6 +31627,130 @@ extends org.eclipse.wst.xsl.internal.debug.ui.ResourceSelectionBlock</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>contentTypeManager</h2>
+<p>
+<code>package-private IContentTypeManager <strong>contentTypeManager</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>InputFileBlock</h2>
+<p>
+<code>public <strong>InputFileBlock</strong>(IFile defaultFile)</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getFileExtensions</h2>
+<p>
+<code>protected java.lang.String[] <strong>getFileExtensions</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String[]</code>
+</p>
+<hr>
+<h2>getMessage</h2>
+<p>
+<code>protected java.lang.String <strong>getMessage</strong>(int type)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>type</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
+<h2>getName</h2>
+<p>
+<code>public java.lang.String <strong>getName</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
+<h2>initializeFrom</h2>
+<p>
+<code>public void <strong>initializeFrom</strong>(ILaunchConfiguration configuration)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>configuration</code>
+</p>
+<hr>
+<h2>performApply</h2>
+<p>
+<code>public void <strong>performApply</strong>(ILaunchConfigurationWorkingCopy configuration)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>configuration</code>
+</p>
+<hr>
+<h2>setDefaultResource</h2>
+<p>
+<code>protected void <strong>setDefaultResource</strong>()</code>
+</p>
+<p></p>
+<hr>
+<h2>setDefaults</h2>
+<p>
+<code>public void <strong>setDefaults</strong>(ILaunchConfigurationWorkingCopy configuration)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>configuration</code>
+</p>
+<hr>
+<h2>textModified</h2>
+<p>
+<code>protected void <strong>textModified</strong>()</code>
+</p>
+<p></p>
+<hr>
+<h2>updateResourceText</h2>
+<p>
+<code>protected void <strong>updateResourceText</strong>(boolean useDefault)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>useDefault</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.debug.ui.tabs.main</strong></font>
</p>
@@ -15006,373 +31771,373 @@ extends NLS</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>XSLMainTab_LabelText</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>InputFileBlock_DEFAULT_RADIO</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>StylesheetEntryLabelProvider_Invalid_path</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>InputFileBlock_DIALOG_MESSAGE</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>XSLMainTab_Project_Group</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>InputFileBlock_DIRECTORY_DOES_NOT_EXIST</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>XSLMainTab_Browse_Projects</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>InputFileBlock_DIRECTORY_NOT_SPECIFIED</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>XSLMainTab_Project_Does_Not_Exist</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>InputFileBlock_Exception_occurred_reading_configuration</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>XSLMainTab_Project_Closed</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>InputFileBlock_Exception_occurred_saving_configuration</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>XSLMainTab_Project_Name_Invalid</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>InputFileBlock_FILE_SYSTEM_BUTTON</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>XSLMainTab_Choose_Project_Dialog_Title</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>InputFileBlock_GROUP_NAME</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>XSLMainTab_Choose_Project_Dialog_Message</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>InputFileBlock_Name</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>XSLMainTab_Transforms_Group</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>InputFileBlock_OTHER_RADIO</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>TransformsBlock_0</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>InputFileBlock_VARIABLES_BUTTON</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>TransformsBlock_Name</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>InputFileBlock_WORKSPACE_BUTTON</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>InputFileBlock_DIRECTORY_NOT_SPECIFIED</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>InputFileBlock_WORKSPACE_DIALOG_MESSAGE</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>InputFileBlock_DIRECTORY_DOES_NOT_EXIST</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>InputFileBlock_WORKSPACE_DIALOG_TITLE</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>InputFileBlock_GROUP_NAME</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>OutputFileBlock_0</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>InputFileBlock_DEFAULT_RADIO</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>OutputFileBlock_7</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>InputFileBlock_OTHER_RADIO</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>OutputFileBlock_8</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>InputFileBlock_DIALOG_MESSAGE</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>OutputFileBlock_9</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>InputFileBlock_WORKSPACE_DIALOG_MESSAGE</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>OutputFileBlock_DEFAULT_RADIO</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>InputFileBlock_VARIABLES_BUTTON</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>OutputFileBlock_DIALOG_MESSAGE</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>InputFileBlock_FILE_SYSTEM_BUTTON</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>OutputFileBlock_DIRECTORY_DOES_NOT_EXIST</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>InputFileBlock_WORKSPACE_BUTTON</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>OutputFileBlock_DIRECTORY_NOT_SPECIFIED</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>InputFileBlock_Name</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>OutputFileBlock_Exception_occurred_reading_configuration</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>InputFileBlock_Exception_occurred_reading_configuration</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>OutputFileBlock_Exception_occurred_saving_configuration</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>InputFileBlock_WORKSPACE_DIALOG_TITLE</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>OutputFileBlock_FILE_SYSTEM_BUTTON</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>XSLMainTab_TabName</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>OutputFileBlock_GROUP_NAME</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>InputFileBlock_Exception_occurred_saving_configuration</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>OutputFileBlock_Name</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>OutputTypeBlock_Group_Name</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>OutputFileBlock_OTHER_RADIO</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>OutputFileBlock_0</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>OutputFileBlock_VARIABLES_BUTTON</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>OutputFileBlock_7</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>OutputFileBlock_WORKSPACE_BUTTON</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>OutputFileBlock_8</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>OutputFileBlock_WORKSPACE_DIALOG_MESSAGE</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>OutputFileBlock_9</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>OutputFileBlock_WORKSPACE_DIALOG_TITLE</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>OutputFileBlock_DIRECTORY_NOT_SPECIFIED</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>OutputFOFileBlock_DEFAULT_RADIO</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>OutputFileBlock_DIRECTORY_DOES_NOT_EXIST</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>OutputFOFileBlock_DIALOG_MESSAGE</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>OutputFileBlock_GROUP_NAME</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>OutputFOFileBlock_DIRECTORY_DOES_NOT_EXIST</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>OutputFileBlock_DEFAULT_RADIO</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>OutputFOFileBlock_DIRECTORY_NOT_SPECIFIED</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>OutputFileBlock_OTHER_RADIO</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>OutputFOFileBlock_Exception_occurred_reading_configuration</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>OutputFileBlock_DIALOG_MESSAGE</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>OutputFOFileBlock_Exception_occurred_saving_configuration</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>OutputFileBlock_WORKSPACE_DIALOG_MESSAGE</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>OutputFOFileBlock_FILE_SYSTEM_BUTTON</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>OutputFileBlock_VARIABLES_BUTTON</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>OutputFOFileBlock_GROUP_NAME</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>OutputFileBlock_FILE_SYSTEM_BUTTON</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>OutputFOFileBlock_Name</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>OutputFileBlock_WORKSPACE_BUTTON</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>OutputFOFileBlock_OTHER_RADIO</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>OutputFileBlock_Name</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>OutputFOFileBlock_VARIABLES_BUTTON</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>OutputFileBlock_Exception_occurred_reading_configuration</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>OutputFOFileBlock_WORKSPACE_BUTTON</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>OutputFileBlock_WORKSPACE_DIALOG_TITLE</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>OutputFOFileBlock_WORKSPACE_DIALOG_MESSAGE</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>OutputFileBlock_Exception_occurred_saving_configuration</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>OutputFOFileBlock_WORKSPACE_DIALOG_TITLE</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>OutputFOFileBlock_DIRECTORY_NOT_SPECIFIED</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>OutputTypeBlock_Group_Name</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>OutputFOFileBlock_DIRECTORY_DOES_NOT_EXIST</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>StylesheetEntryLabelProvider_Invalid_path</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>OutputFOFileBlock_GROUP_NAME</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>TransformsBlock_0</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>OutputFOFileBlock_DEFAULT_RADIO</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>TransformsBlock_Name</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>OutputFOFileBlock_OTHER_RADIO</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>TransformsBlock_ParametersLabel</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>OutputFOFileBlock_DIALOG_MESSAGE</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>TransformsBlock_StylesheetsLabel</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>OutputFOFileBlock_WORKSPACE_DIALOG_MESSAGE</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>XSLMainTab_Browse_Projects</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>OutputFOFileBlock_VARIABLES_BUTTON</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>XSLMainTab_Choose_Project_Dialog_Message</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>OutputFOFileBlock_FILE_SYSTEM_BUTTON</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>XSLMainTab_Choose_Project_Dialog_Title</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>OutputFOFileBlock_WORKSPACE_BUTTON</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>XSLMainTab_LabelText</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>OutputFOFileBlock_Name</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>XSLMainTab_Project_Closed</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>OutputFOFileBlock_Exception_occurred_reading_configuration</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>XSLMainTab_Project_Does_Not_Exist</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>OutputFOFileBlock_WORKSPACE_DIALOG_TITLE</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>XSLMainTab_Project_Group</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>OutputFOFileBlock_Exception_occurred_saving_configuration</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>XSLMainTab_Project_Name_Invalid</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>TransformsBlock_ParametersLabel</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>XSLMainTab_TabName</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>TransformsBlock_StylesheetsLabel</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>XSLMainTab_Transforms_Group</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@@ -15386,7 +32151,7 @@ extends NLS</pre>
</td>
</tr>
<tr>
-<td><code><strong>MainTabMessages()</strong></code></td>
+<td><code><strong>MainTabMessages</strong>()</code></td>
</tr>
</table>
<br>
@@ -15398,6 +32163,340 @@ extends NLS</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>InputFileBlock_DEFAULT_RADIO</h2>
+<p>
+<code>public static java.lang.String <strong>InputFileBlock_DEFAULT_RADIO</strong></code>
+</p>
+<hr>
+<h2>InputFileBlock_DIALOG_MESSAGE</h2>
+<p>
+<code>public static java.lang.String <strong>InputFileBlock_DIALOG_MESSAGE</strong></code>
+</p>
+<hr>
+<h2>InputFileBlock_DIRECTORY_DOES_NOT_EXIST</h2>
+<p>
+<code>public static java.lang.String <strong>InputFileBlock_DIRECTORY_DOES_NOT_EXIST</strong></code>
+</p>
+<hr>
+<h2>InputFileBlock_DIRECTORY_NOT_SPECIFIED</h2>
+<p>
+<code>public static java.lang.String <strong>InputFileBlock_DIRECTORY_NOT_SPECIFIED</strong></code>
+</p>
+<hr>
+<h2>InputFileBlock_Exception_occurred_reading_configuration</h2>
+<p>
+<code>public static java.lang.String <strong>InputFileBlock_Exception_occurred_reading_configuration</strong></code>
+</p>
+<hr>
+<h2>InputFileBlock_Exception_occurred_saving_configuration</h2>
+<p>
+<code>public static java.lang.String <strong>InputFileBlock_Exception_occurred_saving_configuration</strong></code>
+</p>
+<hr>
+<h2>InputFileBlock_FILE_SYSTEM_BUTTON</h2>
+<p>
+<code>public static java.lang.String <strong>InputFileBlock_FILE_SYSTEM_BUTTON</strong></code>
+</p>
+<hr>
+<h2>InputFileBlock_GROUP_NAME</h2>
+<p>
+<code>public static java.lang.String <strong>InputFileBlock_GROUP_NAME</strong></code>
+</p>
+<hr>
+<h2>InputFileBlock_Name</h2>
+<p>
+<code>public static java.lang.String <strong>InputFileBlock_Name</strong></code>
+</p>
+<hr>
+<h2>InputFileBlock_OTHER_RADIO</h2>
+<p>
+<code>public static java.lang.String <strong>InputFileBlock_OTHER_RADIO</strong></code>
+</p>
+<hr>
+<h2>InputFileBlock_VARIABLES_BUTTON</h2>
+<p>
+<code>public static java.lang.String <strong>InputFileBlock_VARIABLES_BUTTON</strong></code>
+</p>
+<hr>
+<h2>InputFileBlock_WORKSPACE_BUTTON</h2>
+<p>
+<code>public static java.lang.String <strong>InputFileBlock_WORKSPACE_BUTTON</strong></code>
+</p>
+<hr>
+<h2>InputFileBlock_WORKSPACE_DIALOG_MESSAGE</h2>
+<p>
+<code>public static java.lang.String <strong>InputFileBlock_WORKSPACE_DIALOG_MESSAGE</strong></code>
+</p>
+<hr>
+<h2>InputFileBlock_WORKSPACE_DIALOG_TITLE</h2>
+<p>
+<code>public static java.lang.String <strong>InputFileBlock_WORKSPACE_DIALOG_TITLE</strong></code>
+</p>
+<hr>
+<h2>OutputFileBlock_0</h2>
+<p>
+<code>public static java.lang.String <strong>OutputFileBlock_0</strong></code>
+</p>
+<hr>
+<h2>OutputFileBlock_7</h2>
+<p>
+<code>public static java.lang.String <strong>OutputFileBlock_7</strong></code>
+</p>
+<hr>
+<h2>OutputFileBlock_8</h2>
+<p>
+<code>public static java.lang.String <strong>OutputFileBlock_8</strong></code>
+</p>
+<hr>
+<h2>OutputFileBlock_9</h2>
+<p>
+<code>public static java.lang.String <strong>OutputFileBlock_9</strong></code>
+</p>
+<hr>
+<h2>OutputFileBlock_DEFAULT_RADIO</h2>
+<p>
+<code>public static java.lang.String <strong>OutputFileBlock_DEFAULT_RADIO</strong></code>
+</p>
+<hr>
+<h2>OutputFileBlock_DIALOG_MESSAGE</h2>
+<p>
+<code>public static java.lang.String <strong>OutputFileBlock_DIALOG_MESSAGE</strong></code>
+</p>
+<hr>
+<h2>OutputFileBlock_DIRECTORY_DOES_NOT_EXIST</h2>
+<p>
+<code>public static java.lang.String <strong>OutputFileBlock_DIRECTORY_DOES_NOT_EXIST</strong></code>
+</p>
+<hr>
+<h2>OutputFileBlock_DIRECTORY_NOT_SPECIFIED</h2>
+<p>
+<code>public static java.lang.String <strong>OutputFileBlock_DIRECTORY_NOT_SPECIFIED</strong></code>
+</p>
+<hr>
+<h2>OutputFileBlock_Exception_occurred_reading_configuration</h2>
+<p>
+<code>public static java.lang.String <strong>OutputFileBlock_Exception_occurred_reading_configuration</strong></code>
+</p>
+<hr>
+<h2>OutputFileBlock_Exception_occurred_saving_configuration</h2>
+<p>
+<code>public static java.lang.String <strong>OutputFileBlock_Exception_occurred_saving_configuration</strong></code>
+</p>
+<hr>
+<h2>OutputFileBlock_FILE_SYSTEM_BUTTON</h2>
+<p>
+<code>public static java.lang.String <strong>OutputFileBlock_FILE_SYSTEM_BUTTON</strong></code>
+</p>
+<hr>
+<h2>OutputFileBlock_GROUP_NAME</h2>
+<p>
+<code>public static java.lang.String <strong>OutputFileBlock_GROUP_NAME</strong></code>
+</p>
+<hr>
+<h2>OutputFileBlock_Name</h2>
+<p>
+<code>public static java.lang.String <strong>OutputFileBlock_Name</strong></code>
+</p>
+<hr>
+<h2>OutputFileBlock_OTHER_RADIO</h2>
+<p>
+<code>public static java.lang.String <strong>OutputFileBlock_OTHER_RADIO</strong></code>
+</p>
+<hr>
+<h2>OutputFileBlock_VARIABLES_BUTTON</h2>
+<p>
+<code>public static java.lang.String <strong>OutputFileBlock_VARIABLES_BUTTON</strong></code>
+</p>
+<hr>
+<h2>OutputFileBlock_WORKSPACE_BUTTON</h2>
+<p>
+<code>public static java.lang.String <strong>OutputFileBlock_WORKSPACE_BUTTON</strong></code>
+</p>
+<hr>
+<h2>OutputFileBlock_WORKSPACE_DIALOG_MESSAGE</h2>
+<p>
+<code>public static java.lang.String <strong>OutputFileBlock_WORKSPACE_DIALOG_MESSAGE</strong></code>
+</p>
+<hr>
+<h2>OutputFileBlock_WORKSPACE_DIALOG_TITLE</h2>
+<p>
+<code>public static java.lang.String <strong>OutputFileBlock_WORKSPACE_DIALOG_TITLE</strong></code>
+</p>
+<hr>
+<h2>OutputFOFileBlock_DEFAULT_RADIO</h2>
+<p>
+<code>public static java.lang.String <strong>OutputFOFileBlock_DEFAULT_RADIO</strong></code>
+</p>
+<hr>
+<h2>OutputFOFileBlock_DIALOG_MESSAGE</h2>
+<p>
+<code>public static java.lang.String <strong>OutputFOFileBlock_DIALOG_MESSAGE</strong></code>
+</p>
+<hr>
+<h2>OutputFOFileBlock_DIRECTORY_DOES_NOT_EXIST</h2>
+<p>
+<code>public static java.lang.String <strong>OutputFOFileBlock_DIRECTORY_DOES_NOT_EXIST</strong></code>
+</p>
+<hr>
+<h2>OutputFOFileBlock_DIRECTORY_NOT_SPECIFIED</h2>
+<p>
+<code>public static java.lang.String <strong>OutputFOFileBlock_DIRECTORY_NOT_SPECIFIED</strong></code>
+</p>
+<hr>
+<h2>OutputFOFileBlock_Exception_occurred_reading_configuration</h2>
+<p>
+<code>public static java.lang.String <strong>OutputFOFileBlock_Exception_occurred_reading_configuration</strong></code>
+</p>
+<hr>
+<h2>OutputFOFileBlock_Exception_occurred_saving_configuration</h2>
+<p>
+<code>public static java.lang.String <strong>OutputFOFileBlock_Exception_occurred_saving_configuration</strong></code>
+</p>
+<hr>
+<h2>OutputFOFileBlock_FILE_SYSTEM_BUTTON</h2>
+<p>
+<code>public static java.lang.String <strong>OutputFOFileBlock_FILE_SYSTEM_BUTTON</strong></code>
+</p>
+<hr>
+<h2>OutputFOFileBlock_GROUP_NAME</h2>
+<p>
+<code>public static java.lang.String <strong>OutputFOFileBlock_GROUP_NAME</strong></code>
+</p>
+<hr>
+<h2>OutputFOFileBlock_Name</h2>
+<p>
+<code>public static java.lang.String <strong>OutputFOFileBlock_Name</strong></code>
+</p>
+<hr>
+<h2>OutputFOFileBlock_OTHER_RADIO</h2>
+<p>
+<code>public static java.lang.String <strong>OutputFOFileBlock_OTHER_RADIO</strong></code>
+</p>
+<hr>
+<h2>OutputFOFileBlock_VARIABLES_BUTTON</h2>
+<p>
+<code>public static java.lang.String <strong>OutputFOFileBlock_VARIABLES_BUTTON</strong></code>
+</p>
+<hr>
+<h2>OutputFOFileBlock_WORKSPACE_BUTTON</h2>
+<p>
+<code>public static java.lang.String <strong>OutputFOFileBlock_WORKSPACE_BUTTON</strong></code>
+</p>
+<hr>
+<h2>OutputFOFileBlock_WORKSPACE_DIALOG_MESSAGE</h2>
+<p>
+<code>public static java.lang.String <strong>OutputFOFileBlock_WORKSPACE_DIALOG_MESSAGE</strong></code>
+</p>
+<hr>
+<h2>OutputFOFileBlock_WORKSPACE_DIALOG_TITLE</h2>
+<p>
+<code>public static java.lang.String <strong>OutputFOFileBlock_WORKSPACE_DIALOG_TITLE</strong></code>
+</p>
+<hr>
+<h2>OutputTypeBlock_Group_Name</h2>
+<p>
+<code>public static java.lang.String <strong>OutputTypeBlock_Group_Name</strong></code>
+</p>
+<hr>
+<h2>StylesheetEntryLabelProvider_Invalid_path</h2>
+<p>
+<code>public static java.lang.String <strong>StylesheetEntryLabelProvider_Invalid_path</strong></code>
+</p>
+<hr>
+<h2>TransformsBlock_0</h2>
+<p>
+<code>public static java.lang.String <strong>TransformsBlock_0</strong></code>
+</p>
+<hr>
+<h2>TransformsBlock_Name</h2>
+<p>
+<code>public static java.lang.String <strong>TransformsBlock_Name</strong></code>
+</p>
+<hr>
+<h2>TransformsBlock_ParametersLabel</h2>
+<p>
+<code>public static java.lang.String <strong>TransformsBlock_ParametersLabel</strong></code>
+</p>
+<hr>
+<h2>TransformsBlock_StylesheetsLabel</h2>
+<p>
+<code>public static java.lang.String <strong>TransformsBlock_StylesheetsLabel</strong></code>
+</p>
+<hr>
+<h2>XSLMainTab_Browse_Projects</h2>
+<p>
+<code>public static java.lang.String <strong>XSLMainTab_Browse_Projects</strong></code>
+</p>
+<hr>
+<h2>XSLMainTab_Choose_Project_Dialog_Message</h2>
+<p>
+<code>public static java.lang.String <strong>XSLMainTab_Choose_Project_Dialog_Message</strong></code>
+</p>
+<hr>
+<h2>XSLMainTab_Choose_Project_Dialog_Title</h2>
+<p>
+<code>public static java.lang.String <strong>XSLMainTab_Choose_Project_Dialog_Title</strong></code>
+</p>
+<hr>
+<h2>XSLMainTab_LabelText</h2>
+<p>
+<code>public static java.lang.String <strong>XSLMainTab_LabelText</strong></code>
+</p>
+<hr>
+<h2>XSLMainTab_Project_Closed</h2>
+<p>
+<code>public static java.lang.String <strong>XSLMainTab_Project_Closed</strong></code>
+</p>
+<hr>
+<h2>XSLMainTab_Project_Does_Not_Exist</h2>
+<p>
+<code>public static java.lang.String <strong>XSLMainTab_Project_Does_Not_Exist</strong></code>
+</p>
+<hr>
+<h2>XSLMainTab_Project_Group</h2>
+<p>
+<code>public static java.lang.String <strong>XSLMainTab_Project_Group</strong></code>
+</p>
+<hr>
+<h2>XSLMainTab_Project_Name_Invalid</h2>
+<p>
+<code>public static java.lang.String <strong>XSLMainTab_Project_Name_Invalid</strong></code>
+</p>
+<hr>
+<h2>XSLMainTab_TabName</h2>
+<p>
+<code>public static java.lang.String <strong>XSLMainTab_TabName</strong></code>
+</p>
+<hr>
+<h2>XSLMainTab_Transforms_Group</h2>
+<p>
+<code>public static java.lang.String <strong>XSLMainTab_Transforms_Group</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>MainTabMessages</h2>
+<p>
+<code>public <strong>MainTabMessages</strong>()</code>
+</p>
+<p></p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.debug.ui.tabs.main</strong></font>
</p>
@@ -15425,6 +32524,29 @@ extends java.lang.Object</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getString</h2>
+<p>
+<code>public java.lang.String <strong>getString</strong>(java.lang.String key)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>key</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.debug.ui.tabs.main</strong></font>
</p>
@@ -15445,7 +32567,7 @@ extends TableViewer</pre>
</td>
</tr>
<tr>
-<td><code><strong>ParameterViewer(org.eclipse.swt.widgets.Table table)</strong></code></td>
+<td><code><strong>ParameterViewer</strong>(org.eclipse.swt.widgets.Table table)</code></td>
</tr>
</table>
<br>
@@ -15456,21 +32578,19 @@ extends TableViewer</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public org.eclipse.swt.widgets.Shell</code></td><td width="" align="left"><code>getShell()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>addParameter(org.eclipse.wst.xsl.launching.config.LaunchAttribute parameter)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>isEnabled()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>addParametersChangedListener(org.eclipse.wst.xsl.internal.debug.ui.tabs.main.IParametersChangedListener listener)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>updateSelection(int actionType
- ,
- IStructuredSelection selection)</code>
+<td width="20%" align="right"><code>public org.eclipse.wst.xsl.launching.config.LaunchAttribute[]</code></td><td width="" align="left"><code>getParameters()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@@ -15482,37 +32602,162 @@ extends TableViewer</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>addParameter(org.eclipse.wst.xsl.launching.config.LaunchAttribute parameter)</code>
+<td width="20%" align="right"><code>public org.eclipse.swt.widgets.Shell</code></td><td width="" align="left"><code>getShell()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>removeEntries(org.eclipse.wst.xsl.launching.config.LaunchAttribute[] entries)</code>
+<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>isEnabled()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public org.eclipse.wst.xsl.launching.config.LaunchAttribute[]</code></td><td width="" align="left"><code>getParameters()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>removeEntries(org.eclipse.wst.xsl.launching.config.LaunchAttribute[] entries)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>addParametersChangedListener(org.eclipse.wst.xsl.internal.debug.ui.tabs.main.IParametersChangedListener listener)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>removeParametersChangedListener(org.eclipse.wst.xsl.internal.debug.ui.tabs.main.IParametersChangedListener listener)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>removeParametersChangedListener(org.eclipse.wst.xsl.internal.debug.ui.tabs.main.IParametersChangedListener listener)</code>
+<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>updateSelection(int actionType
+ ,
+ IStructuredSelection selection)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>ParameterViewer</h2>
+<p>
+<code>public <strong>ParameterViewer</strong>(org.eclipse.swt.widgets.Table table)</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>addParameter</h2>
+<p>
+<code>public void <strong>addParameter</strong>(org.eclipse.wst.xsl.launching.config.LaunchAttribute parameter)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>parameter</code>
+</p>
+<hr>
+<h2>addParametersChangedListener</h2>
+<p>
+<code>public void <strong>addParametersChangedListener</strong>(org.eclipse.wst.xsl.internal.debug.ui.tabs.main.IParametersChangedListener listener)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>listener</code>
+</p>
+<hr>
+<h2>getParameters</h2>
+<p>
+<code>public org.eclipse.wst.xsl.launching.config.LaunchAttribute[] <strong>getParameters</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.launching.config.LaunchAttribute[]</code>
+</p>
+<hr>
+<h2>getSelectedEntries</h2>
+<p>
+<code>public IStructuredSelection <strong>getSelectedEntries</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>IStructuredSelection</code>
+</p>
+<hr>
+<h2>getShell</h2>
+<p>
+<code>public org.eclipse.swt.widgets.Shell <strong>getShell</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.swt.widgets.Shell</code>
+</p>
+<hr>
+<h2>isEnabled</h2>
+<p>
+<code>public boolean <strong>isEnabled</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<hr>
+<h2>removeEntries</h2>
+<p>
+<code>public void <strong>removeEntries</strong>(org.eclipse.wst.xsl.launching.config.LaunchAttribute[] entries)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>entries</code>
+</p>
+<hr>
+<h2>removeParametersChangedListener</h2>
+<p>
+<code>public void <strong>removeParametersChangedListener</strong>(org.eclipse.wst.xsl.internal.debug.ui.tabs.main.IParametersChangedListener listener)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>listener</code>
+</p>
+<hr>
+<h2>updateSelection</h2>
+<p>
+<code>public boolean <strong>updateSelection</strong>(int actionType
+ ,
+ IStructuredSelection selection)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>actionType</code>
+</p>
+<p>
+<code>selection</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.debug.ui.tabs.main</strong></font>
</p>
@@ -15533,7 +32778,7 @@ extends org.eclipse.wst.xsl.internal.debug.ui.AbstractTableBlock</pre>
</td>
</tr>
<tr>
-<td><code><strong>ParametersBlock(org.eclipse.wst.xsl.internal.debug.ui.tabs.main.TransformsBlock transformsBlock)</strong></code></td>
+<td><code><strong>ParametersBlock</strong>(org.eclipse.wst.xsl.internal.debug.ui.tabs.main.TransformsBlock transformsBlock)</code></td>
</tr>
</table>
<br>
@@ -15544,87 +32789,242 @@ extends org.eclipse.wst.xsl.internal.debug.ui.AbstractTableBlock</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>setTransform(org.eclipse.wst.xsl.launching.config.LaunchTransform transform)</code>
+<td width="20%" align="right"><code>protected org.eclipse.swt.widgets.Button</code></td><td width="" align="left"><code>createButton(org.eclipse.swt.widgets.Composite pathButtonComp
+ ,
+ org.eclipse.wst.xsl.internal.debug.ui.actions.AbstractParameterAction action)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>updateEnabled()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>createControl(org.eclipse.swt.widgets.Composite parent)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>createControl(org.eclipse.swt.widgets.Composite parent)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>dispose()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected org.eclipse.swt.widgets.Button</code></td><td width="" align="left"><code>createButton(org.eclipse.swt.widgets.Composite pathButtonComp
- ,
- org.eclipse.wst.xsl.internal.debug.ui.actions.AbstractParameterAction action)</code>
+<td width="20%" align="right"><code>protected IDialogSettings</code></td><td width="" align="left"><code>getDialogSettings()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>setSortColumn(int column)</code>
+<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getName()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected org.eclipse.swt.widgets.Table</code></td><td width="" align="left"><code>getTable()</code>
+<td width="20%" align="right"><code>protected java.lang.String</code></td><td width="" align="left"><code>getQualifier()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected IDialogSettings</code></td><td width="" align="left"><code>getDialogSettings()</code>
+<td width="20%" align="right"><code>protected org.eclipse.swt.widgets.Table</code></td><td width="" align="left"><code>getTable()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected java.lang.String</code></td><td width="" align="left"><code>getQualifier()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>initializeFrom(ILaunchConfiguration configuration)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getName()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>performApply(ILaunchConfigurationWorkingCopy configuration)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>initializeFrom(ILaunchConfiguration configuration)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setDefaults(ILaunchConfigurationWorkingCopy configuration)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>performApply(ILaunchConfigurationWorkingCopy configuration)</code>
+<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>setSortColumn(int column)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setDefaults(ILaunchConfigurationWorkingCopy configuration)</code>
+<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>setTransform(org.eclipse.wst.xsl.launching.config.LaunchTransform transform)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>dispose()</code>
+<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>updateEnabled()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>ParametersBlock</h2>
+<p>
+<code>public <strong>ParametersBlock</strong>(org.eclipse.wst.xsl.internal.debug.ui.tabs.main.TransformsBlock transformsBlock)</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>createButton</h2>
+<p>
+<code>protected org.eclipse.swt.widgets.Button <strong>createButton</strong>(org.eclipse.swt.widgets.Composite pathButtonComp
+ ,
+ org.eclipse.wst.xsl.internal.debug.ui.actions.AbstractParameterAction action)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>pathButtonComp</code>
+</p>
+<p>
+<code>action</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.swt.widgets.Button</code>
+</p>
+<hr>
+<h2>createControl</h2>
+<p>
+<code>public void <strong>createControl</strong>(org.eclipse.swt.widgets.Composite parent)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>parent</code>
+</p>
+<hr>
+<h2>dispose</h2>
+<p>
+<code>public void <strong>dispose</strong>()</code>
+</p>
+<p></p>
+<hr>
+<h2>getDialogSettings</h2>
+<p>
+<code>protected IDialogSettings <strong>getDialogSettings</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>IDialogSettings</code>
+</p>
+<hr>
+<h2>getName</h2>
+<p>
+<code>public java.lang.String <strong>getName</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
+<h2>getQualifier</h2>
+<p>
+<code>protected java.lang.String <strong>getQualifier</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
+<h2>getTable</h2>
+<p>
+<code>protected org.eclipse.swt.widgets.Table <strong>getTable</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.swt.widgets.Table</code>
+</p>
+<hr>
+<h2>initializeFrom</h2>
+<p>
+<code>public void <strong>initializeFrom</strong>(ILaunchConfiguration configuration)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>configuration</code>
+</p>
+<hr>
+<h2>performApply</h2>
+<p>
+<code>public void <strong>performApply</strong>(ILaunchConfigurationWorkingCopy configuration)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>configuration</code>
+</p>
+<hr>
+<h2>setDefaults</h2>
+<p>
+<code>public void <strong>setDefaults</strong>(ILaunchConfigurationWorkingCopy configuration)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>configuration</code>
+</p>
+<hr>
+<h2>setSortColumn</h2>
+<p>
+<code>protected void <strong>setSortColumn</strong>(int column)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>column</code>
+</p>
+<hr>
+<h2>setTransform</h2>
+<p>
+<code>protected void <strong>setTransform</strong>(org.eclipse.wst.xsl.launching.config.LaunchTransform transform)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>transform</code>
+</p>
+<hr>
+<h2>updateEnabled</h2>
+<p>
+<code>protected void <strong>updateEnabled</strong>()</code>
+</p>
+<p></p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.debug.ui.tabs.main</strong></font>
</p>
@@ -15645,7 +33045,7 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr>
-<td><code><strong>ParametersContentProvider()</strong></code></td>
+<td><code><strong>ParametersContentProvider</strong>()</code></td>
</tr>
</table>
<br>
@@ -15656,23 +33056,19 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.lang.Object[]</code></td><td width="" align="left"><code>getElements(java.lang.Object inputElement)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>addParameter(org.eclipse.wst.xsl.launching.config.LaunchAttribute parameter)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>inputChanged(Viewer viewer
- ,
- java.lang.Object oldInput
- ,
- java.lang.Object newInput)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>dispose()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>dispose()</code>
+<td width="20%" align="right"><code>public java.lang.Object[]</code></td><td width="" align="left"><code>getElements(java.lang.Object inputElement)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@@ -15684,19 +33080,117 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>removeParameters(org.eclipse.wst.xsl.launching.config.LaunchAttribute[] entries)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>inputChanged(Viewer viewer
+ ,
+ java.lang.Object oldInput
+ ,
+ java.lang.Object newInput)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>addParameter(org.eclipse.wst.xsl.launching.config.LaunchAttribute parameter)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>removeParameters(org.eclipse.wst.xsl.launching.config.LaunchAttribute[] entries)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>ParametersContentProvider</h2>
+<p>
+<code>public <strong>ParametersContentProvider</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>addParameter</h2>
+<p>
+<code>public void <strong>addParameter</strong>(org.eclipse.wst.xsl.launching.config.LaunchAttribute parameter)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>parameter</code>
+</p>
+<hr>
+<h2>dispose</h2>
+<p>
+<code>public void <strong>dispose</strong>()</code>
+</p>
+<p></p>
+<hr>
+<h2>getElements</h2>
+<p>
+<code>public java.lang.Object[] <strong>getElements</strong>(java.lang.Object inputElement)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>inputElement</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.Object[]</code>
+</p>
+<hr>
+<h2>getParameters</h2>
+<p>
+<code>public org.eclipse.wst.xsl.launching.config.LaunchAttribute[] <strong>getParameters</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.launching.config.LaunchAttribute[]</code>
+</p>
+<hr>
+<h2>inputChanged</h2>
+<p>
+<code>public void <strong>inputChanged</strong>(Viewer viewer
+ ,
+ java.lang.Object oldInput
+ ,
+ java.lang.Object newInput)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>viewer</code>
+</p>
+<p>
+<code>oldInput</code>
+</p>
+<p>
+<code>newInput</code>
+</p>
+<hr>
+<h2>removeParameters</h2>
+<p>
+<code>public void <strong>removeParameters</strong>(org.eclipse.wst.xsl.launching.config.LaunchAttribute[] entries)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>entries</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.debug.ui.tabs.main</strong></font>
</p>
@@ -15717,7 +33211,7 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr>
-<td><code><strong>ParametersLabelProvider()</strong></code></td>
+<td><code><strong>ParametersLabelProvider</strong>()</code></td>
</tr>
</table>
<br>
@@ -15728,29 +33222,29 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getColumnText(java.lang.Object element
- ,
- int columnIndex)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>addListener(ILabelProviderListener listener)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public org.eclipse.swt.graphics.Image</code></td><td width="" align="left"><code>getColumnImage(java.lang.Object element
- ,
- int columnIndex)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>dispose()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>addListener(ILabelProviderListener listener)</code>
+<td width="20%" align="right"><code>public org.eclipse.swt.graphics.Image</code></td><td width="" align="left"><code>getColumnImage(java.lang.Object element
+ ,
+ int columnIndex)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>dispose()</code>
+<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getColumnText(java.lang.Object element
+ ,
+ int columnIndex)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@@ -15771,6 +33265,113 @@ extends java.lang.Object</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>ParametersLabelProvider</h2>
+<p>
+<code>public <strong>ParametersLabelProvider</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>addListener</h2>
+<p>
+<code>public void <strong>addListener</strong>(ILabelProviderListener listener)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>listener</code>
+</p>
+<hr>
+<h2>dispose</h2>
+<p>
+<code>public void <strong>dispose</strong>()</code>
+</p>
+<p></p>
+<hr>
+<h2>getColumnImage</h2>
+<p>
+<code>public org.eclipse.swt.graphics.Image <strong>getColumnImage</strong>(java.lang.Object element
+ ,
+ int columnIndex)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>element</code>
+</p>
+<p>
+<code>columnIndex</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.swt.graphics.Image</code>
+</p>
+<hr>
+<h2>getColumnText</h2>
+<p>
+<code>public java.lang.String <strong>getColumnText</strong>(java.lang.Object element
+ ,
+ int columnIndex)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>element</code>
+</p>
+<p>
+<code>columnIndex</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
+<h2>isLabelProperty</h2>
+<p>
+<code>public boolean <strong>isLabelProperty</strong>(java.lang.Object element
+ ,
+ java.lang.String property)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>element</code>
+</p>
+<p>
+<code>property</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<hr>
+<h2>removeListener</h2>
+<p>
+<code>public void <strong>removeListener</strong>(ILabelProviderListener listener)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>listener</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.debug.ui.tabs.main</strong></font>
</p>
@@ -15791,7 +33392,7 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr>
-<td><code><strong>StylesheetContentProvider()</strong></code></td>
+<td><code><strong>StylesheetContentProvider</strong>()</code></td>
</tr>
</table>
<br>
@@ -15802,49 +33403,148 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.lang.Object[]</code></td><td width="" align="left"><code>getElements(java.lang.Object inputElement)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>addEntries(org.eclipse.wst.xsl.launching.config.LaunchTransform[] res
+ ,
+ java.lang.Object beforeElement)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>inputChanged(Viewer viewer
- ,
- java.lang.Object oldInput
- ,
- java.lang.Object newInput)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>dispose()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>dispose()</code>
+<td width="20%" align="right"><code>public java.lang.Object[]</code></td><td width="" align="left"><code>getElements(java.lang.Object inputElement)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setEntries(org.eclipse.wst.xsl.launching.config.LaunchTransform[] transforms)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>inputChanged(Viewer viewer
+ ,
+ java.lang.Object oldInput
+ ,
+ java.lang.Object newInput)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>addEntries(org.eclipse.wst.xsl.launching.config.LaunchTransform[] res
- ,
- java.lang.Object beforeElement)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>removeEntries(org.eclipse.wst.xsl.launching.config.LaunchTransform[] res)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>removeEntries(org.eclipse.wst.xsl.launching.config.LaunchTransform[] res)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setEntries(org.eclipse.wst.xsl.launching.config.LaunchTransform[] transforms)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>StylesheetContentProvider</h2>
+<p>
+<code>public <strong>StylesheetContentProvider</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>addEntries</h2>
+<p>
+<code>public void <strong>addEntries</strong>(org.eclipse.wst.xsl.launching.config.LaunchTransform[] res
+ ,
+ java.lang.Object beforeElement)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>res</code>
+</p>
+<p>
+<code>beforeElement</code>
+</p>
+<hr>
+<h2>dispose</h2>
+<p>
+<code>public void <strong>dispose</strong>()</code>
+</p>
+<p></p>
+<hr>
+<h2>getElements</h2>
+<p>
+<code>public java.lang.Object[] <strong>getElements</strong>(java.lang.Object inputElement)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>inputElement</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.Object[]</code>
+</p>
+<hr>
+<h2>inputChanged</h2>
+<p>
+<code>public void <strong>inputChanged</strong>(Viewer viewer
+ ,
+ java.lang.Object oldInput
+ ,
+ java.lang.Object newInput)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>viewer</code>
+</p>
+<p>
+<code>oldInput</code>
+</p>
+<p>
+<code>newInput</code>
+</p>
+<hr>
+<h2>removeEntries</h2>
+<p>
+<code>public void <strong>removeEntries</strong>(org.eclipse.wst.xsl.launching.config.LaunchTransform[] res)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>res</code>
+</p>
+<hr>
+<h2>setEntries</h2>
+<p>
+<code>public void <strong>setEntries</strong>(org.eclipse.wst.xsl.launching.config.LaunchTransform[] transforms)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>transforms</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.debug.ui.tabs.main</strong></font>
</p>
@@ -15865,7 +33565,7 @@ extends LabelProvider</pre>
</td>
</tr>
<tr>
-<td><code><strong>StylesheetLabelProvider()</strong></code></td>
+<td><code><strong>StylesheetLabelProvider</strong>()</code></td>
</tr>
</table>
<br>
@@ -15889,6 +33589,58 @@ extends LabelProvider</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>StylesheetLabelProvider</h2>
+<p>
+<code>public <strong>StylesheetLabelProvider</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getImage</h2>
+<p>
+<code>public org.eclipse.swt.graphics.Image <strong>getImage</strong>(java.lang.Object element)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>element</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.swt.graphics.Image</code>
+</p>
+<hr>
+<h2>getText</h2>
+<p>
+<code>public java.lang.String <strong>getText</strong>(java.lang.Object element)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>element</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.debug.ui.tabs.main</strong></font>
</p>
@@ -15909,7 +33661,7 @@ extends TableViewer</pre>
</td>
</tr>
<tr>
-<td><code><strong>StylesheetViewer(org.eclipse.swt.widgets.Composite parent)</strong></code></td>
+<td><code><strong>StylesheetViewer</strong>(org.eclipse.swt.widgets.Composite parent)</code></td>
</tr>
</table>
<br>
@@ -15920,69 +33672,202 @@ extends TableViewer</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setEntries(org.eclipse.wst.xsl.launching.config.LaunchTransform[] transforms)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>addEntriesChangedListener(org.eclipse.wst.xsl.internal.debug.ui.tabs.main.IStylesheetEntriesChangedListener listener)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public org.eclipse.wst.xsl.launching.config.LaunchTransform[]</code></td><td width="" align="left"><code>getEntries()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>addTransforms(org.eclipse.wst.xsl.launching.config.LaunchTransform[] res)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public org.eclipse.swt.widgets.Shell</code></td><td width="" align="left"><code>getShell()</code>
+<td width="20%" align="right"><code>public org.eclipse.wst.xsl.launching.config.LaunchTransform[]</code></td><td width="" align="left"><code>getEntries()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>isEnabled()</code>
+<td width="20%" align="right"><code>public IStructuredSelection</code></td><td width="" align="left"><code>getSelectedEntries()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>updateSelection(int actionType
- ,
- IStructuredSelection selection)</code>
+<td width="20%" align="right"><code>public org.eclipse.swt.widgets.Shell</code></td><td width="" align="left"><code>getShell()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public IStructuredSelection</code></td><td width="" align="left"><code>getSelectedEntries()</code>
+<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>isEnabled()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>addTransforms(org.eclipse.wst.xsl.launching.config.LaunchTransform[] res)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>removeEntries(org.eclipse.wst.xsl.launching.config.LaunchTransform[] entries)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>removeEntries(org.eclipse.wst.xsl.launching.config.LaunchTransform[] entries)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>removeEntriesChangedListener(org.eclipse.wst.xsl.internal.debug.ui.tabs.main.IStylesheetEntriesChangedListener listener)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>addEntriesChangedListener(org.eclipse.wst.xsl.internal.debug.ui.tabs.main.IStylesheetEntriesChangedListener listener)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setEntries(org.eclipse.wst.xsl.launching.config.LaunchTransform[] transforms)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>removeEntriesChangedListener(org.eclipse.wst.xsl.internal.debug.ui.tabs.main.IStylesheetEntriesChangedListener listener)</code>
+<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>updateSelection(int actionType
+ ,
+ IStructuredSelection selection)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>StylesheetViewer</h2>
+<p>
+<code>public <strong>StylesheetViewer</strong>(org.eclipse.swt.widgets.Composite parent)</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>addEntriesChangedListener</h2>
+<p>
+<code>public void <strong>addEntriesChangedListener</strong>(org.eclipse.wst.xsl.internal.debug.ui.tabs.main.IStylesheetEntriesChangedListener listener)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>listener</code>
+</p>
+<hr>
+<h2>addTransforms</h2>
+<p>
+<code>public void <strong>addTransforms</strong>(org.eclipse.wst.xsl.launching.config.LaunchTransform[] res)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>res</code>
+</p>
+<hr>
+<h2>getEntries</h2>
+<p>
+<code>public org.eclipse.wst.xsl.launching.config.LaunchTransform[] <strong>getEntries</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.launching.config.LaunchTransform[]</code>
+</p>
+<hr>
+<h2>getSelectedEntries</h2>
+<p>
+<code>public IStructuredSelection <strong>getSelectedEntries</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>IStructuredSelection</code>
+</p>
+<hr>
+<h2>getShell</h2>
+<p>
+<code>public org.eclipse.swt.widgets.Shell <strong>getShell</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.swt.widgets.Shell</code>
+</p>
+<hr>
+<h2>isEnabled</h2>
+<p>
+<code>public boolean <strong>isEnabled</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<hr>
+<h2>removeEntries</h2>
+<p>
+<code>public void <strong>removeEntries</strong>(org.eclipse.wst.xsl.launching.config.LaunchTransform[] entries)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>entries</code>
+</p>
+<hr>
+<h2>removeEntriesChangedListener</h2>
+<p>
+<code>public void <strong>removeEntriesChangedListener</strong>(org.eclipse.wst.xsl.internal.debug.ui.tabs.main.IStylesheetEntriesChangedListener listener)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>listener</code>
+</p>
+<hr>
+<h2>setEntries</h2>
+<p>
+<code>public void <strong>setEntries</strong>(org.eclipse.wst.xsl.launching.config.LaunchTransform[] transforms)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>transforms</code>
+</p>
+<hr>
+<h2>updateSelection</h2>
+<p>
+<code>public boolean <strong>updateSelection</strong>(int actionType
+ ,
+ IStructuredSelection selection)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>actionType</code>
+</p>
+<p>
+<code>selection</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.debug.ui.tabs.main</strong></font>
</p>
@@ -16017,7 +33902,7 @@ extends org.eclipse.wst.xsl.internal.debug.ui.AbstractTableBlock</pre>
</td>
</tr>
<tr>
-<td><code><strong>TransformsBlock()</strong></code></td>
+<td><code><strong>TransformsBlock</strong>()</code></td>
</tr>
</table>
<br>
@@ -16028,103 +33913,310 @@ extends org.eclipse.wst.xsl.internal.debug.ui.AbstractTableBlock</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>createControl(org.eclipse.swt.widgets.Composite parent)</code>
+<td width="20%" align="right"><code>protected org.eclipse.swt.widgets.Button</code></td><td width="" align="left"><code>createArrowButton(org.eclipse.swt.widgets.Composite pathButtonComp
+ ,
+ org.eclipse.wst.xsl.internal.debug.ui.actions.AbstractStylesheetAction action
+ ,
+ int updown)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public Viewer</code></td><td width="" align="left"><code>getStylesheetViewer()</code>
+<td width="20%" align="right"><code>protected org.eclipse.swt.widgets.Button</code></td><td width="" align="left"><code>createButton(org.eclipse.swt.widgets.Composite pathButtonComp
+ ,
+ org.eclipse.wst.xsl.internal.debug.ui.actions.AbstractStylesheetAction action)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected org.eclipse.swt.widgets.Button</code></td><td width="" align="left"><code>createArrowButton(org.eclipse.swt.widgets.Composite pathButtonComp
- ,
- org.eclipse.wst.xsl.internal.debug.ui.actions.AbstractStylesheetAction action
- ,
- int updown)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>createControl(org.eclipse.swt.widgets.Composite parent)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected org.eclipse.swt.widgets.Button</code></td><td width="" align="left"><code>createButton(org.eclipse.swt.widgets.Composite pathButtonComp
- ,
- org.eclipse.wst.xsl.internal.debug.ui.actions.AbstractStylesheetAction action)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>dispose()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getName()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>entriesChanged(org.eclipse.wst.xsl.internal.debug.ui.tabs.main.StylesheetViewer viewer)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setPipeline(org.eclipse.wst.xsl.launching.config.LaunchPipeline pipeline)</code>
+<td width="20%" align="right"><code>protected IDialogSettings</code></td><td width="" align="left"><code>getDialogSettings()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>initializeFrom(ILaunchConfiguration configuration)</code>
+<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getName()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>performApply(ILaunchConfigurationWorkingCopy configuration)</code>
+<td width="20%" align="right"><code>protected java.lang.String</code></td><td width="" align="left"><code>getQualifier()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setDefaults(ILaunchConfigurationWorkingCopy configuration)</code>
+<td width="20%" align="right"><code>public Viewer</code></td><td width="" align="left"><code>getStylesheetViewer()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>entriesChanged(org.eclipse.wst.xsl.internal.debug.ui.tabs.main.StylesheetViewer viewer)</code>
+<td width="20%" align="right"><code>protected org.eclipse.swt.widgets.Table</code></td><td width="" align="left"><code>getTable()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>setSortColumn(int column)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>initializeFrom(ILaunchConfiguration configuration)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected org.eclipse.swt.widgets.Table</code></td><td width="" align="left"><code>getTable()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>performApply(ILaunchConfigurationWorkingCopy configuration)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected IDialogSettings</code></td><td width="" align="left"><code>getDialogSettings()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setDefaults(ILaunchConfigurationWorkingCopy configuration)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected java.lang.String</code></td><td width="" align="left"><code>getQualifier()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setPipeline(org.eclipse.wst.xsl.launching.config.LaunchPipeline pipeline)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>dispose()</code>
+<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>setSortColumn(int column)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>DIALOG_SETTINGS_PREFIX</h2>
+<p>
+<code>protected static java.lang.String <strong>DIALOG_SETTINGS_PREFIX</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>TransformsBlock</h2>
+<p>
+<code>public <strong>TransformsBlock</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>createArrowButton</h2>
+<p>
+<code>protected org.eclipse.swt.widgets.Button <strong>createArrowButton</strong>(org.eclipse.swt.widgets.Composite pathButtonComp
+ ,
+ org.eclipse.wst.xsl.internal.debug.ui.actions.AbstractStylesheetAction action
+ ,
+ int updown)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>pathButtonComp</code>
+</p>
+<p>
+<code>action</code>
+</p>
+<p>
+<code>updown</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.swt.widgets.Button</code>
+</p>
+<hr>
+<h2>createButton</h2>
+<p>
+<code>protected org.eclipse.swt.widgets.Button <strong>createButton</strong>(org.eclipse.swt.widgets.Composite pathButtonComp
+ ,
+ org.eclipse.wst.xsl.internal.debug.ui.actions.AbstractStylesheetAction action)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>pathButtonComp</code>
+</p>
+<p>
+<code>action</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.swt.widgets.Button</code>
+</p>
+<hr>
+<h2>createControl</h2>
+<p>
+<code>public void <strong>createControl</strong>(org.eclipse.swt.widgets.Composite parent)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>parent</code>
+</p>
+<hr>
+<h2>dispose</h2>
+<p>
+<code>public void <strong>dispose</strong>()</code>
+</p>
+<p></p>
+<hr>
+<h2>entriesChanged</h2>
+<p>
+<code>public void <strong>entriesChanged</strong>(org.eclipse.wst.xsl.internal.debug.ui.tabs.main.StylesheetViewer viewer)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>viewer</code>
+</p>
+<hr>
+<h2>getDialogSettings</h2>
+<p>
+<code>protected IDialogSettings <strong>getDialogSettings</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>IDialogSettings</code>
+</p>
+<hr>
+<h2>getName</h2>
+<p>
+<code>public java.lang.String <strong>getName</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
+<h2>getQualifier</h2>
+<p>
+<code>protected java.lang.String <strong>getQualifier</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
+<h2>getStylesheetViewer</h2>
+<p>
+<code>public Viewer <strong>getStylesheetViewer</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>Viewer</code>
+</p>
+<hr>
+<h2>getTable</h2>
+<p>
+<code>protected org.eclipse.swt.widgets.Table <strong>getTable</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.swt.widgets.Table</code>
+</p>
+<hr>
+<h2>initializeFrom</h2>
+<p>
+<code>public void <strong>initializeFrom</strong>(ILaunchConfiguration configuration)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>configuration</code>
+</p>
+<hr>
+<h2>performApply</h2>
+<p>
+<code>public void <strong>performApply</strong>(ILaunchConfigurationWorkingCopy configuration)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>configuration</code>
+</p>
+<hr>
+<h2>setDefaults</h2>
+<p>
+<code>public void <strong>setDefaults</strong>(ILaunchConfigurationWorkingCopy configuration)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>configuration</code>
+</p>
+<hr>
+<h2>setPipeline</h2>
+<p>
+<code>public void <strong>setPipeline</strong>(org.eclipse.wst.xsl.launching.config.LaunchPipeline pipeline)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>pipeline</code>
+</p>
+<hr>
+<h2>setSortColumn</h2>
+<p>
+<code>protected void <strong>setSortColumn</strong>(int column)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>column</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.debug.ui.tabs.main</strong></font>
</p>
@@ -16159,7 +34251,7 @@ extends org.eclipse.wst.xsl.internal.debug.ui.XSLLaunchConfigurationTab</pre>
</td>
</tr>
<tr>
-<td><code><strong>XSLMainTab()</strong></code></td>
+<td><code><strong>XSLMainTab</strong>()</code></td>
</tr>
</table>
<br>
@@ -16176,37 +34268,135 @@ extends org.eclipse.wst.xsl.internal.debug.ui.XSLLaunchConfigurationTab</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setDefaults(ILaunchConfigurationWorkingCopy configuration)</code>
+<td width="20%" align="right"><code>public org.eclipse.swt.graphics.Image</code></td><td width="" align="left"><code>getImage()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>initializeFrom(ILaunchConfiguration configuration)</code>
+<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getName()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>performApply(ILaunchConfigurationWorkingCopy configuration)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>initializeFrom(ILaunchConfiguration configuration)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getName()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>performApply(ILaunchConfigurationWorkingCopy configuration)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public org.eclipse.swt.graphics.Image</code></td><td width="" align="left"><code>getImage()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setDefaults(ILaunchConfigurationWorkingCopy configuration)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>pipeline</h2>
+<p>
+<code>public org.eclipse.wst.xsl.launching.config.LaunchPipeline <strong>pipeline</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>XSLMainTab</h2>
+<p>
+<code>public <strong>XSLMainTab</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>createControl</h2>
+<p>
+<code>public void <strong>createControl</strong>(org.eclipse.swt.widgets.Composite parent)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>parent</code>
+</p>
+<hr>
+<h2>getImage</h2>
+<p>
+<code>public org.eclipse.swt.graphics.Image <strong>getImage</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.swt.graphics.Image</code>
+</p>
+<hr>
+<h2>getName</h2>
+<p>
+<code>public java.lang.String <strong>getName</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
+<h2>initializeFrom</h2>
+<p>
+<code>public void <strong>initializeFrom</strong>(ILaunchConfiguration configuration)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>configuration</code>
+</p>
+<hr>
+<h2>performApply</h2>
+<p>
+<code>public void <strong>performApply</strong>(ILaunchConfigurationWorkingCopy configuration)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>configuration</code>
+</p>
+<hr>
+<h2>setDefaults</h2>
+<p>
+<code>public void <strong>setDefaults</strong>(ILaunchConfigurationWorkingCopy configuration)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>configuration</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.debug.ui.tabs.output</strong></font>
</p>
@@ -16295,6 +34485,70 @@ extends NLS</pre>
</table>
<br>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>OutputPropertiesBlock_0</h2>
+<p>
+<code>public static java.lang.String <strong>OutputPropertiesBlock_0</strong></code>
+</p>
+<hr>
+<h2>OutputPropertiesBlock_1</h2>
+<p>
+<code>public static java.lang.String <strong>OutputPropertiesBlock_1</strong></code>
+</p>
+<hr>
+<h2>OutputPropertiesBlock_13</h2>
+<p>
+<code>public static java.lang.String <strong>OutputPropertiesBlock_13</strong></code>
+</p>
+<hr>
+<h2>OutputPropertiesBlock_3</h2>
+<p>
+<code>public static java.lang.String <strong>OutputPropertiesBlock_3</strong></code>
+</p>
+<hr>
+<h2>OutputPropertiesBlock_4</h2>
+<p>
+<code>public static java.lang.String <strong>OutputPropertiesBlock_4</strong></code>
+</p>
+<hr>
+<h2>OutputPropertiesBlock_5</h2>
+<p>
+<code>public static java.lang.String <strong>OutputPropertiesBlock_5</strong></code>
+</p>
+<hr>
+<h2>OutputPropertiesBlock_7</h2>
+<p>
+<code>public static java.lang.String <strong>OutputPropertiesBlock_7</strong></code>
+</p>
+<hr>
+<h2>OutputPropertiesBlock_8</h2>
+<p>
+<code>public static java.lang.String <strong>OutputPropertiesBlock_8</strong></code>
+</p>
+<hr>
+<h2>OutputPropertiesBlock_9</h2>
+<p>
+<code>public static java.lang.String <strong>OutputPropertiesBlock_9</strong></code>
+</p>
+<hr>
+<h2>OutputTab_0</h2>
+<p>
+<code>public static java.lang.String <strong>OutputTab_0</strong></code>
+</p>
+<hr>
+<h2>OutputTab_1</h2>
+<p>
+<code>public static java.lang.String <strong>OutputTab_1</strong></code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.debug.ui.tabs.output</strong></font>
</p>
@@ -16321,25 +34575,25 @@ extends org.eclipse.wst.xsl.internal.debug.ui.ResourceSelectionBlock</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>OUTPUT_METHOD_XML</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>OUTPUT_METHOD_HTML</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>OUTPUT_METHOD_XHTML</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>OUTPUT_METHOD_TEXT</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>OUTPUT_METHOD_HTML</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>OUTPUT_METHOD_XHTML</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>OUTPUT_METHOD_TEXT</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>OUTPUT_METHOD_XML</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@@ -16359,7 +34613,7 @@ extends org.eclipse.wst.xsl.internal.debug.ui.ResourceSelectionBlock</pre>
</td>
</tr>
<tr>
-<td><code><strong>OutputFileBlock()</strong></code></td>
+<td><code><strong>OutputFileBlock</strong>()</code></td>
</tr>
</table>
<br>
@@ -16370,43 +34624,43 @@ extends org.eclipse.wst.xsl.internal.debug.ui.ResourceSelectionBlock</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected java.lang.String</code></td><td width="" align="left"><code>getMessage(int type)</code>
+<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>createButtons(org.eclipse.swt.widgets.Composite parent)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>setDefaultResource()</code>
+<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>createContents(org.eclipse.swt.widgets.Composite parent)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>createContents(org.eclipse.swt.widgets.Composite parent)</code>
+<td width="20%" align="right"><code>protected java.lang.String</code></td><td width="" align="left"><code>getMessage(int type)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>createButtons(org.eclipse.swt.widgets.Composite parent)</code>
+<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getName()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getName()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>initializeFrom(ILaunchConfiguration configuration)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>initializeFrom(ILaunchConfiguration configuration)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>performApply(ILaunchConfigurationWorkingCopy configuration)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>performApply(ILaunchConfigurationWorkingCopy configuration)</code>
+<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>setDefaultResource()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@@ -16419,6 +34673,149 @@ extends org.eclipse.wst.xsl.internal.debug.ui.ResourceSelectionBlock</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>OUTPUT_METHOD_DEFAULT</h2>
+<p>
+<code>public static java.lang.String <strong>OUTPUT_METHOD_DEFAULT</strong></code>
+</p>
+<hr>
+<h2>OUTPUT_METHOD_HTML</h2>
+<p>
+<code>public static java.lang.String <strong>OUTPUT_METHOD_HTML</strong></code>
+</p>
+<hr>
+<h2>OUTPUT_METHOD_TEXT</h2>
+<p>
+<code>public static java.lang.String <strong>OUTPUT_METHOD_TEXT</strong></code>
+</p>
+<hr>
+<h2>OUTPUT_METHOD_XHTML</h2>
+<p>
+<code>public static java.lang.String <strong>OUTPUT_METHOD_XHTML</strong></code>
+</p>
+<hr>
+<h2>OUTPUT_METHOD_XML</h2>
+<p>
+<code>public static java.lang.String <strong>OUTPUT_METHOD_XML</strong></code>
+</p>
+<hr>
+<h2>OUTPUT_METHODS</h2>
+<p>
+<code>public static java.lang.String[] <strong>OUTPUT_METHODS</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>OutputFileBlock</h2>
+<p>
+<code>public <strong>OutputFileBlock</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>createButtons</h2>
+<p>
+<code>protected void <strong>createButtons</strong>(org.eclipse.swt.widgets.Composite parent)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>parent</code>
+</p>
+<hr>
+<h2>createContents</h2>
+<p>
+<code>protected void <strong>createContents</strong>(org.eclipse.swt.widgets.Composite parent)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>parent</code>
+</p>
+<hr>
+<h2>getMessage</h2>
+<p>
+<code>protected java.lang.String <strong>getMessage</strong>(int type)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>type</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
+<h2>getName</h2>
+<p>
+<code>public java.lang.String <strong>getName</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
+<h2>initializeFrom</h2>
+<p>
+<code>public void <strong>initializeFrom</strong>(ILaunchConfiguration configuration)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>configuration</code>
+</p>
+<hr>
+<h2>performApply</h2>
+<p>
+<code>public void <strong>performApply</strong>(ILaunchConfigurationWorkingCopy configuration)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>configuration</code>
+</p>
+<hr>
+<h2>setDefaultResource</h2>
+<p>
+<code>protected void <strong>setDefaultResource</strong>()</code>
+</p>
+<p></p>
+<hr>
+<h2>setDefaults</h2>
+<p>
+<code>public void <strong>setDefaults</strong>(ILaunchConfigurationWorkingCopy configuration)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>configuration</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.debug.ui.tabs.output</strong></font>
</p>
@@ -16439,7 +34836,7 @@ extends org.eclipse.wst.xsl.internal.debug.ui.AbstractTableBlock</pre>
</td>
</tr>
<tr>
-<td><code><strong>OutputPropertiesBlock(org.eclipse.wst.xsl.internal.debug.ui.tabs.main.XSLMainTab main)</strong></code></td>
+<td><code><strong>OutputPropertiesBlock</strong>(org.eclipse.wst.xsl.internal.debug.ui.tabs.main.XSLMainTab main)</code></td>
</tr>
</table>
<br>
@@ -16450,31 +34847,31 @@ extends org.eclipse.wst.xsl.internal.debug.ui.AbstractTableBlock</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected IDialogSettings</code></td><td width="" align="left"><code>getDialogSettings()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>createControl(org.eclipse.swt.widgets.Composite parent)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected java.lang.String</code></td><td width="" align="left"><code>getQualifier()</code>
+<td width="20%" align="right"><code>protected IDialogSettings</code></td><td width="" align="left"><code>getDialogSettings()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected org.eclipse.swt.widgets.Table</code></td><td width="" align="left"><code>getTable()</code>
+<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getName()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>createControl(org.eclipse.swt.widgets.Composite parent)</code>
+<td width="20%" align="right"><code>protected java.lang.String</code></td><td width="" align="left"><code>getQualifier()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getName()</code>
+<td width="20%" align="right"><code>protected org.eclipse.swt.widgets.Table</code></td><td width="" align="left"><code>getTable()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@@ -16499,6 +34896,110 @@ extends org.eclipse.wst.xsl.internal.debug.ui.AbstractTableBlock</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>OutputPropertiesBlock</h2>
+<p>
+<code>public <strong>OutputPropertiesBlock</strong>(org.eclipse.wst.xsl.internal.debug.ui.tabs.main.XSLMainTab main)</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>createControl</h2>
+<p>
+<code>public void <strong>createControl</strong>(org.eclipse.swt.widgets.Composite parent)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>parent</code>
+</p>
+<hr>
+<h2>getDialogSettings</h2>
+<p>
+<code>protected IDialogSettings <strong>getDialogSettings</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>IDialogSettings</code>
+</p>
+<hr>
+<h2>getName</h2>
+<p>
+<code>public java.lang.String <strong>getName</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
+<h2>getQualifier</h2>
+<p>
+<code>protected java.lang.String <strong>getQualifier</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
+<h2>getTable</h2>
+<p>
+<code>protected org.eclipse.swt.widgets.Table <strong>getTable</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.swt.widgets.Table</code>
+</p>
+<hr>
+<h2>initializeFrom</h2>
+<p>
+<code>public void <strong>initializeFrom</strong>(ILaunchConfiguration configuration)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>configuration</code>
+</p>
+<hr>
+<h2>performApply</h2>
+<p>
+<code>public void <strong>performApply</strong>(ILaunchConfigurationWorkingCopy configuration)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>configuration</code>
+</p>
+<hr>
+<h2>setDefaults</h2>
+<p>
+<code>public void <strong>setDefaults</strong>(ILaunchConfigurationWorkingCopy configuration)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>configuration</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.debug.ui.tabs.output</strong></font>
</p>
@@ -16519,7 +35020,7 @@ extends org.eclipse.wst.xsl.internal.debug.ui.XSLLaunchConfigurationTab</pre>
</td>
</tr>
<tr>
-<td><code><strong>OutputTab(org.eclipse.wst.xsl.internal.debug.ui.tabs.main.XSLMainTab main)</strong></code></td>
+<td><code><strong>OutputTab</strong>(org.eclipse.wst.xsl.internal.debug.ui.tabs.main.XSLMainTab main)</code></td>
</tr>
</table>
<br>
@@ -16536,19 +35037,73 @@ extends org.eclipse.wst.xsl.internal.debug.ui.XSLLaunchConfigurationTab</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getName()</code>
+<td width="20%" align="right"><code>public org.eclipse.swt.graphics.Image</code></td><td width="" align="left"><code>getImage()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public org.eclipse.swt.graphics.Image</code></td><td width="" align="left"><code>getImage()</code>
+<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getName()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>OutputTab</h2>
+<p>
+<code>public <strong>OutputTab</strong>(org.eclipse.wst.xsl.internal.debug.ui.tabs.main.XSLMainTab main)</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>createControl</h2>
+<p>
+<code>public void <strong>createControl</strong>(org.eclipse.swt.widgets.Composite parent)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>parent</code>
+</p>
+<hr>
+<h2>getImage</h2>
+<p>
+<code>public org.eclipse.swt.graphics.Image <strong>getImage</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.swt.graphics.Image</code>
+</p>
+<hr>
+<h2>getName</h2>
+<p>
+<code>public java.lang.String <strong>getName</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.debug.ui.tabs.processor</strong></font>
</p>
@@ -16569,7 +35124,7 @@ extends org.eclipse.wst.xsl.internal.debug.ui.AbstractTableBlock</pre>
</td>
</tr>
<tr>
-<td><code><strong>FeaturesBlock()</strong></code></td>
+<td><code><strong>FeaturesBlock</strong>()</code></td>
</tr>
</table>
<br>
@@ -16580,61 +35135,175 @@ extends org.eclipse.wst.xsl.internal.debug.ui.AbstractTableBlock</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected IDialogSettings</code></td><td width="" align="left"><code>getDialogSettings()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>createControl(org.eclipse.swt.widgets.Composite parent)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected java.lang.String</code></td><td width="" align="left"><code>getQualifier()</code>
+<td width="20%" align="right"><code>protected IDialogSettings</code></td><td width="" align="left"><code>getDialogSettings()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected org.eclipse.swt.widgets.Table</code></td><td width="" align="left"><code>getTable()</code>
+<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getName()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>createControl(org.eclipse.swt.widgets.Composite parent)</code>
+<td width="20%" align="right"><code>protected java.lang.String</code></td><td width="" align="left"><code>getQualifier()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>setProcessorType(org.eclipse.wst.xsl.launching.IProcessorType processorType)</code>
+<td width="20%" align="right"><code>protected org.eclipse.swt.widgets.Table</code></td><td width="" align="left"><code>getTable()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getName()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>initializeFrom(ILaunchConfiguration configuration)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setDefaults(ILaunchConfigurationWorkingCopy configuration)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>performApply(ILaunchConfigurationWorkingCopy configuration)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>initializeFrom(ILaunchConfiguration configuration)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setDefaults(ILaunchConfigurationWorkingCopy configuration)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>performApply(ILaunchConfigurationWorkingCopy configuration)</code>
+<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>setProcessorType(org.eclipse.wst.xsl.launching.IProcessorType processorType)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>FeaturesBlock</h2>
+<p>
+<code>public <strong>FeaturesBlock</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>createControl</h2>
+<p>
+<code>public void <strong>createControl</strong>(org.eclipse.swt.widgets.Composite parent)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>parent</code>
+</p>
+<hr>
+<h2>getDialogSettings</h2>
+<p>
+<code>protected IDialogSettings <strong>getDialogSettings</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>IDialogSettings</code>
+</p>
+<hr>
+<h2>getName</h2>
+<p>
+<code>public java.lang.String <strong>getName</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
+<h2>getQualifier</h2>
+<p>
+<code>protected java.lang.String <strong>getQualifier</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
+<h2>getTable</h2>
+<p>
+<code>protected org.eclipse.swt.widgets.Table <strong>getTable</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.swt.widgets.Table</code>
+</p>
+<hr>
+<h2>initializeFrom</h2>
+<p>
+<code>public void <strong>initializeFrom</strong>(ILaunchConfiguration configuration)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>configuration</code>
+</p>
+<hr>
+<h2>performApply</h2>
+<p>
+<code>public void <strong>performApply</strong>(ILaunchConfigurationWorkingCopy configuration)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>configuration</code>
+</p>
+<hr>
+<h2>setDefaults</h2>
+<p>
+<code>public void <strong>setDefaults</strong>(ILaunchConfigurationWorkingCopy configuration)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>configuration</code>
+</p>
+<hr>
+<h2>setProcessorType</h2>
+<p>
+<code>protected void <strong>setProcessorType</strong>(org.eclipse.wst.xsl.launching.IProcessorType processorType)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>processorType</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.debug.ui.tabs.processor</strong></font>
</p>
@@ -16655,10 +35324,10 @@ extends org.eclipse.wst.xsl.launching.ProcessorInstall</pre>
</td>
</tr>
<tr>
-<td><code><strong>InstallStandin(org.eclipse.wst.xsl.launching.IProcessorInstall install)</strong></code></td>
+<td><code><strong>InstallStandin</strong>(org.eclipse.wst.xsl.launching.IProcessorInstall install)</code></td>
</tr>
<tr>
-<td><code><strong>InstallStandin(java.lang.String id
+<td><code><strong>InstallStandin</strong>(java.lang.String id
,
java.lang.String name
,
@@ -16666,7 +35335,7 @@ extends org.eclipse.wst.xsl.launching.ProcessorInstall</pre>
,
java.lang.String debuggerId
,
- org.eclipse.wst.xsl.launching.IProcessorJar[] jars)</strong></code></td>
+ org.eclipse.wst.xsl.launching.IProcessorJar[] jars)</code></td>
</tr>
</table>
<br>
@@ -16678,6 +35347,35 @@ extends org.eclipse.wst.xsl.launching.ProcessorInstall</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>InstallStandin</h2>
+<p>
+<code>public <strong>InstallStandin</strong>(org.eclipse.wst.xsl.launching.IProcessorInstall install)</code>
+</p>
+<p></p>
+<hr>
+<h2>InstallStandin</h2>
+<p>
+<code>public <strong>InstallStandin</strong>(java.lang.String id
+ ,
+ java.lang.String name
+ ,
+ java.lang.String typeId
+ ,
+ java.lang.String debuggerId
+ ,
+ org.eclipse.wst.xsl.launching.IProcessorJar[] jars)</code>
+</p>
+<p></p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.debug.ui.tabs.processor</strong></font>
</p>
@@ -16698,7 +35396,7 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr>
-<td><code><strong>JarContentProvider()</strong></code></td>
+<td><code><strong>JarContentProvider</strong>()</code></td>
</tr>
</table>
<br>
@@ -16709,13 +35407,13 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.lang.Object[]</code></td><td width="" align="left"><code>getElements(java.lang.Object inputElement)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>dispose()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>dispose()</code>
+<td width="20%" align="right"><code>public java.lang.Object[]</code></td><td width="" align="left"><code>getElements(java.lang.Object inputElement)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@@ -16732,6 +35430,70 @@ extends java.lang.Object</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>JarContentProvider</h2>
+<p>
+<code>public <strong>JarContentProvider</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>dispose</h2>
+<p>
+<code>public void <strong>dispose</strong>()</code>
+</p>
+<p></p>
+<hr>
+<h2>getElements</h2>
+<p>
+<code>public java.lang.Object[] <strong>getElements</strong>(java.lang.Object inputElement)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>inputElement</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.Object[]</code>
+</p>
+<hr>
+<h2>inputChanged</h2>
+<p>
+<code>public void <strong>inputChanged</strong>(Viewer viewer
+ ,
+ java.lang.Object oldInput
+ ,
+ java.lang.Object newInput)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>viewer</code>
+</p>
+<p>
+<code>oldInput</code>
+</p>
+<p>
+<code>newInput</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.debug.ui.tabs.processor</strong></font>
</p>
@@ -16752,7 +35514,7 @@ extends LabelProvider</pre>
</td>
</tr>
<tr>
-<td><code><strong>JarLabelProvider()</strong></code></td>
+<td><code><strong>JarLabelProvider</strong>()</code></td>
</tr>
</table>
<br>
@@ -16770,6 +35532,44 @@ extends LabelProvider</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>JarLabelProvider</h2>
+<p>
+<code>public <strong>JarLabelProvider</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getText</h2>
+<p>
+<code>public java.lang.String <strong>getText</strong>(java.lang.Object element)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>element</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.debug.ui.tabs.processor</strong></font>
</p>
@@ -16797,6 +35597,29 @@ extends java.lang.Object</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getString</h2>
+<p>
+<code>public java.lang.String <strong>getString</strong>(java.lang.String key)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>key</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.debug.ui.tabs.processor</strong></font>
</p>
@@ -16817,7 +35640,7 @@ extends AbstractLaunchConfigurationTab</pre>
</td>
</tr>
<tr>
-<td><code><strong>ProcessorBlock(org.eclipse.wst.xsl.internal.debug.ui.tabs.processor.FeaturesBlock featuresBlock)</strong></code></td>
+<td><code><strong>ProcessorBlock</strong>(org.eclipse.wst.xsl.internal.debug.ui.tabs.processor.FeaturesBlock featuresBlock)</code></td>
</tr>
</table>
<br>
@@ -16859,6 +35682,80 @@ extends AbstractLaunchConfigurationTab</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>ProcessorBlock</h2>
+<p>
+<code>public <strong>ProcessorBlock</strong>(org.eclipse.wst.xsl.internal.debug.ui.tabs.processor.FeaturesBlock featuresBlock)</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>createControl</h2>
+<p>
+<code>public void <strong>createControl</strong>(org.eclipse.swt.widgets.Composite parent)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>parent</code>
+</p>
+<hr>
+<h2>getName</h2>
+<p>
+<code>public java.lang.String <strong>getName</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
+<h2>initializeFrom</h2>
+<p>
+<code>public void <strong>initializeFrom</strong>(ILaunchConfiguration configuration)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>configuration</code>
+</p>
+<hr>
+<h2>performApply</h2>
+<p>
+<code>public void <strong>performApply</strong>(ILaunchConfigurationWorkingCopy configuration)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>configuration</code>
+</p>
+<hr>
+<h2>setDefaults</h2>
+<p>
+<code>public void <strong>setDefaults</strong>(ILaunchConfigurationWorkingCopy configuration)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>configuration</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.debug.ui.tabs.processor</strong></font>
</p>
@@ -16879,7 +35776,7 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr>
-<td><code><strong>ProcessorDescriptor()</strong></code></td>
+<td><code><strong>ProcessorDescriptor</strong>()</code></td>
</tr>
</table>
<br>
@@ -16897,6 +35794,40 @@ extends java.lang.Object</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>ProcessorDescriptor</h2>
+<p>
+<code>public <strong>ProcessorDescriptor</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getDescription</h2>
+<p>
+<code>public java.lang.String <strong>getDescription</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.debug.ui.tabs.processor</strong></font>
</p>
@@ -16917,9 +35848,9 @@ extends Dialog</pre>
</td>
</tr>
<tr>
-<td><code><strong>ProcessorDetailsDialog(org.eclipse.swt.widgets.Shell shell
+<td><code><strong>ProcessorDetailsDialog</strong>(org.eclipse.swt.widgets.Shell shell
,
- org.eclipse.wst.xsl.launching.IProcessorInstall install)</strong></code></td>
+ org.eclipse.wst.xsl.launching.IProcessorInstall install)</code></td>
</tr>
</table>
<br>
@@ -16936,16 +35867,16 @@ extends Dialog</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected org.eclipse.swt.widgets.Control</code></td><td width="" align="left"><code>createDialogArea(org.eclipse.swt.widgets.Composite ancestor)</code>
+<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>createButtonsForButtonBar(org.eclipse.swt.widgets.Composite parent)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected java.lang.String</code></td><td width="" align="left"><code>getDialogSettingsSectionName()</code>
+<td width="20%" align="right"><code>protected org.eclipse.swt.widgets.Control</code></td><td width="" align="left"><code>createDialogArea(org.eclipse.swt.widgets.Composite ancestor)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Returns the name of the section that this dialog stores its settings in</td>
+ </td>
</tr>
<tr valign="top">
<td width="20%" align="right"><code>protected IDialogSettings</code></td><td width="" align="left"><code>getDialogBoundsSettings()</code>
@@ -16954,12 +35885,91 @@ extends Dialog</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>createButtonsForButtonBar(org.eclipse.swt.widgets.Composite parent)</code>
+<td width="20%" align="right"><code>protected java.lang.String</code></td><td width="" align="left"><code>getDialogSettingsSectionName()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- </td>
+ Returns the name of the section that this dialog stores its settings in</td>
+</tr>
+</table>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>ProcessorDetailsDialog</h2>
+<p>
+<code>public <strong>ProcessorDetailsDialog</strong>(org.eclipse.swt.widgets.Shell shell
+ ,
+ org.eclipse.wst.xsl.launching.IProcessorInstall install)</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
</tr>
</table>
+<h2>configureShell</h2>
+<p>
+<code>protected void <strong>configureShell</strong>(org.eclipse.swt.widgets.Shell newShell)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>newShell</code>
+</p>
+<hr>
+<h2>createButtonsForButtonBar</h2>
+<p>
+<code>protected void <strong>createButtonsForButtonBar</strong>(org.eclipse.swt.widgets.Composite parent)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>parent</code>
+</p>
+<hr>
+<h2>createDialogArea</h2>
+<p>
+<code>protected org.eclipse.swt.widgets.Control <strong>createDialogArea</strong>(org.eclipse.swt.widgets.Composite ancestor)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>ancestor</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.swt.widgets.Control</code>
+</p>
+<hr>
+<h2>getDialogBoundsSettings</h2>
+<p>
+<code>protected IDialogSettings <strong>getDialogBoundsSettings</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>IDialogSettings</code>
+</p>
+<hr>
+<h2>getDialogSettingsSectionName</h2>
+<p>
+<code>protected java.lang.String <strong>getDialogSettingsSectionName</strong>()</code>
+</p>
+<p>Returns the name of the section that this dialog stores its settings in</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code> - String</p>
<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.debug.ui.tabs.processor</strong></font>
@@ -16981,61 +35991,67 @@ extends NLS</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ProcessorBlock_0</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>AddProcessorDialog_1</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ProcessorBlock_1</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>AddProcessorDialog_7</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ProcessorBlock_2</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>AddProcessorDialog_Add_Title</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ProcessorBlock_4</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>AddProcessorDialog_duplicateName</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ProcessorBlock_6</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>AddProcessorDialog_Edit_Title</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ProcessorBlock_7</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>AddProcessorDialog_enterName</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ProcessorsComboBlock</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>AddProcessorDialog_features</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ProcessorsComboBlock_0</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>AddProcessorDialog_jars</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ProcessorsComboBlock_1</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>AddProcessorDialog_Processor_name_must_be_a_valid_file_name</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>SpecificProcessor</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>AddProcessorDialog_processorName</code>
+<br>
+ &nbsp;&nbsp;&nbsp;&nbsp;
+ </td>
+</tr>
+<tr valign="top">
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>AddProcessorDialog_processorType</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@@ -17101,85 +36117,85 @@ extends NLS</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ProcessorDetailsDialog_Title</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ProcessorBlock_0</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ProcessorDetailsDialog_installName</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ProcessorBlock_1</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ProcessorDetailsDialog_installType</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ProcessorBlock_2</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ProcessorDetailsDialog_installClasspath</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ProcessorBlock_4</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>AddProcessorDialog_1</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ProcessorBlock_6</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>AddProcessorDialog_7</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ProcessorBlock_7</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>AddProcessorDialog_Edit_Title</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ProcessorDetailsDialog_installClasspath</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>AddProcessorDialog_Add_Title</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ProcessorDetailsDialog_installName</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>AddProcessorDialog_jars</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ProcessorDetailsDialog_installType</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>AddProcessorDialog_features</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ProcessorDetailsDialog_Title</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>AddProcessorDialog_processorName</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ProcessorLibraryBlock_6</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>AddProcessorDialog_processorType</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ProcessorLibraryBlock_AddButton</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ProcessorLibraryBlock_6</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ProcessorLibraryBlock_AddWorkspaceButton</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ProcessorLibraryBlock_AddButton</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ProcessorLibraryBlock_FileDialog_Title</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@@ -17191,211 +36207,205 @@ extends NLS</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ProcessorLibraryBlock_AddWorkspaceButton</code>
-<br>
- &nbsp;&nbsp;&nbsp;&nbsp;
- </td>
-</tr>
-<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>AddProcessorDialog_enterName</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ProcessorLibraryBlock_WorkspaceFileDialog_Message</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>AddProcessorDialog_duplicateName</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ProcessorLibraryBlock_WorkspaceFileDialog_Title</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>AddProcessorDialog_Processor_name_must_be_a_valid_file_name</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ProcessorsComboBlock</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ProcessorLibraryBlock_FileDialog_Title</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ProcessorsComboBlock_0</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ProcessorLibraryBlock_WorkspaceFileDialog_Title</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ProcessorsComboBlock_1</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ProcessorLibraryBlock_WorkspaceFileDialog_Message</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ProcessorsUpdater</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ProcessorsUpdater</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>SpecificProcessor</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>WorkingDirectoryBlock_1</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>URIResolverBlock_3</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>WorkingDirectoryBlock_2</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>URIResolverBlock_5</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>WorkingDirectoryBlock_3</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>URIResolverBlock_6</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>WorkingDirectoryBlock_DIRECTORY_NOT_SPECIFIED</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>URIResolverBlock_8</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>WorkingDirectoryBlock_DIRECTORY_DOES_NOT_EXIST</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>URIResolverBlock_DEFAULT_RADIO</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>WorkingDirectoryBlock_DEFAULT_RADIO</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>URIResolverBlock_DIALOG_MESSAGE</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>WorkingDirectoryBlock_OTHER_RADIO</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>URIResolverBlock_DIRECTORY_DOES_NOT_EXIST</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>WorkingDirectoryBlock_DIALOG_MESSAGE</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>URIResolverBlock_DIRECTORY_NOT_SPECIFIED</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>WorkingDirectoryBlock_WORKSPACE_DIALOG_MESSAGE</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>URIResolverBlock_FILE_SYSTEM_BUTTON</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>WorkingDirectoryBlock_VARIABLES_BUTTON</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>URIResolverBlock_OTHER_RADIO</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>WorkingDirectoryBlock_FILE_SYSTEM_BUTTON</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>URIResolverBlock_VARIABLES_BUTTON</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>WorkingDirectoryBlock_WORKSPACE_BUTTON</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>URIResolverBlock_WORKSPACE_BUTTON</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>WorkingDirectoryBlock_WORKSPACE_DIALOG_TITLE</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>URIResolverBlock_WORKSPACE_DIALOG_MESSAGE</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>URIResolverBlock_3</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>URIResolverBlock_WORKSPACE_DIALOG_TITLE</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>URIResolverBlock_5</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>WorkingDirectoryBlock_1</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>URIResolverBlock_6</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>WorkingDirectoryBlock_2</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>URIResolverBlock_8</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>WorkingDirectoryBlock_3</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>URIResolverBlock_DIRECTORY_NOT_SPECIFIED</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>WorkingDirectoryBlock_DEFAULT_RADIO</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>URIResolverBlock_DIRECTORY_DOES_NOT_EXIST</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>WorkingDirectoryBlock_DIALOG_MESSAGE</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>URIResolverBlock_DEFAULT_RADIO</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>WorkingDirectoryBlock_DIRECTORY_DOES_NOT_EXIST</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>URIResolverBlock_OTHER_RADIO</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>WorkingDirectoryBlock_DIRECTORY_NOT_SPECIFIED</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>URIResolverBlock_DIALOG_MESSAGE</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>WorkingDirectoryBlock_FILE_SYSTEM_BUTTON</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>URIResolverBlock_WORKSPACE_DIALOG_MESSAGE</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>WorkingDirectoryBlock_OTHER_RADIO</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>URIResolverBlock_VARIABLES_BUTTON</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>WorkingDirectoryBlock_VARIABLES_BUTTON</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>URIResolverBlock_FILE_SYSTEM_BUTTON</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>WorkingDirectoryBlock_WORKSPACE_BUTTON</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>URIResolverBlock_WORKSPACE_BUTTON</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>WorkingDirectoryBlock_WORKSPACE_DIALOG_MESSAGE</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>URIResolverBlock_WORKSPACE_DIALOG_TITLE</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>WorkingDirectoryBlock_WORKSPACE_DIALOG_TITLE</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@@ -17409,7 +36419,7 @@ extends NLS</pre>
</td>
</tr>
<tr>
-<td><code><strong>ProcessorMessages()</strong></code></td>
+<td><code><strong>ProcessorMessages</strong>()</code></td>
</tr>
</table>
<br>
@@ -17421,6 +36431,380 @@ extends NLS</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>AddProcessorDialog_1</h2>
+<p>
+<code>public static java.lang.String <strong>AddProcessorDialog_1</strong></code>
+</p>
+<hr>
+<h2>AddProcessorDialog_7</h2>
+<p>
+<code>public static java.lang.String <strong>AddProcessorDialog_7</strong></code>
+</p>
+<hr>
+<h2>AddProcessorDialog_Add_Title</h2>
+<p>
+<code>public static java.lang.String <strong>AddProcessorDialog_Add_Title</strong></code>
+</p>
+<hr>
+<h2>AddProcessorDialog_duplicateName</h2>
+<p>
+<code>public static java.lang.String <strong>AddProcessorDialog_duplicateName</strong></code>
+</p>
+<hr>
+<h2>AddProcessorDialog_Edit_Title</h2>
+<p>
+<code>public static java.lang.String <strong>AddProcessorDialog_Edit_Title</strong></code>
+</p>
+<hr>
+<h2>AddProcessorDialog_enterName</h2>
+<p>
+<code>public static java.lang.String <strong>AddProcessorDialog_enterName</strong></code>
+</p>
+<hr>
+<h2>AddProcessorDialog_features</h2>
+<p>
+<code>public static java.lang.String <strong>AddProcessorDialog_features</strong></code>
+</p>
+<hr>
+<h2>AddProcessorDialog_jars</h2>
+<p>
+<code>public static java.lang.String <strong>AddProcessorDialog_jars</strong></code>
+</p>
+<hr>
+<h2>AddProcessorDialog_Processor_name_must_be_a_valid_file_name</h2>
+<p>
+<code>public static java.lang.String <strong>AddProcessorDialog_Processor_name_must_be_a_valid_file_name</strong></code>
+</p>
+<hr>
+<h2>AddProcessorDialog_processorName</h2>
+<p>
+<code>public static java.lang.String <strong>AddProcessorDialog_processorName</strong></code>
+</p>
+<hr>
+<h2>AddProcessorDialog_processorType</h2>
+<p>
+<code>public static java.lang.String <strong>AddProcessorDialog_processorType</strong></code>
+</p>
+<hr>
+<h2>InputFileBlock_WORKSPACE_DIALOG_TITLE</h2>
+<p>
+<code>public static java.lang.String <strong>InputFileBlock_WORKSPACE_DIALOG_TITLE</strong></code>
+</p>
+<hr>
+<h2>InstalledProcessorsBlock_0</h2>
+<p>
+<code>public static java.lang.String <strong>InstalledProcessorsBlock_0</strong></code>
+</p>
+<hr>
+<h2>InstalledProcessorsBlock_1</h2>
+<p>
+<code>public static java.lang.String <strong>InstalledProcessorsBlock_1</strong></code>
+</p>
+<hr>
+<h2>InstalledProcessorsBlock_2</h2>
+<p>
+<code>public static java.lang.String <strong>InstalledProcessorsBlock_2</strong></code>
+</p>
+<hr>
+<h2>InstalledProcessorsBlock_3</h2>
+<p>
+<code>public static java.lang.String <strong>InstalledProcessorsBlock_3</strong></code>
+</p>
+<hr>
+<h2>InstalledProcessorsBlock_4</h2>
+<p>
+<code>public static java.lang.String <strong>InstalledProcessorsBlock_4</strong></code>
+</p>
+<hr>
+<h2>InstalledProcessorsBlock_5</h2>
+<p>
+<code>public static java.lang.String <strong>InstalledProcessorsBlock_5</strong></code>
+</p>
+<hr>
+<h2>InstalledProcessorsBlock_6</h2>
+<p>
+<code>public static java.lang.String <strong>InstalledProcessorsBlock_6</strong></code>
+</p>
+<hr>
+<h2>InstalledProcessorsBlock_7</h2>
+<p>
+<code>public static java.lang.String <strong>InstalledProcessorsBlock_7</strong></code>
+</p>
+<hr>
+<h2>InstalledProcessorsBlock_8</h2>
+<p>
+<code>public static java.lang.String <strong>InstalledProcessorsBlock_8</strong></code>
+</p>
+<hr>
+<h2>ProcessorBlock_0</h2>
+<p>
+<code>public static java.lang.String <strong>ProcessorBlock_0</strong></code>
+</p>
+<hr>
+<h2>ProcessorBlock_1</h2>
+<p>
+<code>public static java.lang.String <strong>ProcessorBlock_1</strong></code>
+</p>
+<hr>
+<h2>ProcessorBlock_2</h2>
+<p>
+<code>public static java.lang.String <strong>ProcessorBlock_2</strong></code>
+</p>
+<hr>
+<h2>ProcessorBlock_4</h2>
+<p>
+<code>public static java.lang.String <strong>ProcessorBlock_4</strong></code>
+</p>
+<hr>
+<h2>ProcessorBlock_6</h2>
+<p>
+<code>public static java.lang.String <strong>ProcessorBlock_6</strong></code>
+</p>
+<hr>
+<h2>ProcessorBlock_7</h2>
+<p>
+<code>public static java.lang.String <strong>ProcessorBlock_7</strong></code>
+</p>
+<hr>
+<h2>ProcessorDetailsDialog_installClasspath</h2>
+<p>
+<code>public static java.lang.String <strong>ProcessorDetailsDialog_installClasspath</strong></code>
+</p>
+<hr>
+<h2>ProcessorDetailsDialog_installName</h2>
+<p>
+<code>public static java.lang.String <strong>ProcessorDetailsDialog_installName</strong></code>
+</p>
+<hr>
+<h2>ProcessorDetailsDialog_installType</h2>
+<p>
+<code>public static java.lang.String <strong>ProcessorDetailsDialog_installType</strong></code>
+</p>
+<hr>
+<h2>ProcessorDetailsDialog_Title</h2>
+<p>
+<code>public static java.lang.String <strong>ProcessorDetailsDialog_Title</strong></code>
+</p>
+<hr>
+<h2>ProcessorLibraryBlock_6</h2>
+<p>
+<code>public static java.lang.String <strong>ProcessorLibraryBlock_6</strong></code>
+</p>
+<hr>
+<h2>ProcessorLibraryBlock_AddButton</h2>
+<p>
+<code>public static java.lang.String <strong>ProcessorLibraryBlock_AddButton</strong></code>
+</p>
+<hr>
+<h2>ProcessorLibraryBlock_AddWorkspaceButton</h2>
+<p>
+<code>public static java.lang.String <strong>ProcessorLibraryBlock_AddWorkspaceButton</strong></code>
+</p>
+<hr>
+<h2>ProcessorLibraryBlock_FileDialog_Title</h2>
+<p>
+<code>public static java.lang.String <strong>ProcessorLibraryBlock_FileDialog_Title</strong></code>
+</p>
+<hr>
+<h2>ProcessorLibraryBlock_RemoveButton</h2>
+<p>
+<code>public static java.lang.String <strong>ProcessorLibraryBlock_RemoveButton</strong></code>
+</p>
+<hr>
+<h2>ProcessorLibraryBlock_WorkspaceFileDialog_Message</h2>
+<p>
+<code>public static java.lang.String <strong>ProcessorLibraryBlock_WorkspaceFileDialog_Message</strong></code>
+</p>
+<hr>
+<h2>ProcessorLibraryBlock_WorkspaceFileDialog_Title</h2>
+<p>
+<code>public static java.lang.String <strong>ProcessorLibraryBlock_WorkspaceFileDialog_Title</strong></code>
+</p>
+<hr>
+<h2>ProcessorsComboBlock</h2>
+<p>
+<code>public static java.lang.String <strong>ProcessorsComboBlock</strong></code>
+</p>
+<hr>
+<h2>ProcessorsComboBlock_0</h2>
+<p>
+<code>public static java.lang.String <strong>ProcessorsComboBlock_0</strong></code>
+</p>
+<hr>
+<h2>ProcessorsComboBlock_1</h2>
+<p>
+<code>public static java.lang.String <strong>ProcessorsComboBlock_1</strong></code>
+</p>
+<hr>
+<h2>ProcessorsUpdater</h2>
+<p>
+<code>public static java.lang.String <strong>ProcessorsUpdater</strong></code>
+</p>
+<hr>
+<h2>SpecificProcessor</h2>
+<p>
+<code>public static java.lang.String <strong>SpecificProcessor</strong></code>
+</p>
+<hr>
+<h2>URIResolverBlock_3</h2>
+<p>
+<code>public static java.lang.String <strong>URIResolverBlock_3</strong></code>
+</p>
+<hr>
+<h2>URIResolverBlock_5</h2>
+<p>
+<code>public static java.lang.String <strong>URIResolverBlock_5</strong></code>
+</p>
+<hr>
+<h2>URIResolverBlock_6</h2>
+<p>
+<code>public static java.lang.String <strong>URIResolverBlock_6</strong></code>
+</p>
+<hr>
+<h2>URIResolverBlock_8</h2>
+<p>
+<code>public static java.lang.String <strong>URIResolverBlock_8</strong></code>
+</p>
+<hr>
+<h2>URIResolverBlock_DEFAULT_RADIO</h2>
+<p>
+<code>public static java.lang.String <strong>URIResolverBlock_DEFAULT_RADIO</strong></code>
+</p>
+<hr>
+<h2>URIResolverBlock_DIALOG_MESSAGE</h2>
+<p>
+<code>public static java.lang.String <strong>URIResolverBlock_DIALOG_MESSAGE</strong></code>
+</p>
+<hr>
+<h2>URIResolverBlock_DIRECTORY_DOES_NOT_EXIST</h2>
+<p>
+<code>public static java.lang.String <strong>URIResolverBlock_DIRECTORY_DOES_NOT_EXIST</strong></code>
+</p>
+<hr>
+<h2>URIResolverBlock_DIRECTORY_NOT_SPECIFIED</h2>
+<p>
+<code>public static java.lang.String <strong>URIResolverBlock_DIRECTORY_NOT_SPECIFIED</strong></code>
+</p>
+<hr>
+<h2>URIResolverBlock_FILE_SYSTEM_BUTTON</h2>
+<p>
+<code>public static java.lang.String <strong>URIResolverBlock_FILE_SYSTEM_BUTTON</strong></code>
+</p>
+<hr>
+<h2>URIResolverBlock_OTHER_RADIO</h2>
+<p>
+<code>public static java.lang.String <strong>URIResolverBlock_OTHER_RADIO</strong></code>
+</p>
+<hr>
+<h2>URIResolverBlock_VARIABLES_BUTTON</h2>
+<p>
+<code>public static java.lang.String <strong>URIResolverBlock_VARIABLES_BUTTON</strong></code>
+</p>
+<hr>
+<h2>URIResolverBlock_WORKSPACE_BUTTON</h2>
+<p>
+<code>public static java.lang.String <strong>URIResolverBlock_WORKSPACE_BUTTON</strong></code>
+</p>
+<hr>
+<h2>URIResolverBlock_WORKSPACE_DIALOG_MESSAGE</h2>
+<p>
+<code>public static java.lang.String <strong>URIResolverBlock_WORKSPACE_DIALOG_MESSAGE</strong></code>
+</p>
+<hr>
+<h2>URIResolverBlock_WORKSPACE_DIALOG_TITLE</h2>
+<p>
+<code>public static java.lang.String <strong>URIResolverBlock_WORKSPACE_DIALOG_TITLE</strong></code>
+</p>
+<hr>
+<h2>WorkingDirectoryBlock_1</h2>
+<p>
+<code>public static java.lang.String <strong>WorkingDirectoryBlock_1</strong></code>
+</p>
+<hr>
+<h2>WorkingDirectoryBlock_2</h2>
+<p>
+<code>public static java.lang.String <strong>WorkingDirectoryBlock_2</strong></code>
+</p>
+<hr>
+<h2>WorkingDirectoryBlock_3</h2>
+<p>
+<code>public static java.lang.String <strong>WorkingDirectoryBlock_3</strong></code>
+</p>
+<hr>
+<h2>WorkingDirectoryBlock_DEFAULT_RADIO</h2>
+<p>
+<code>public static java.lang.String <strong>WorkingDirectoryBlock_DEFAULT_RADIO</strong></code>
+</p>
+<hr>
+<h2>WorkingDirectoryBlock_DIALOG_MESSAGE</h2>
+<p>
+<code>public static java.lang.String <strong>WorkingDirectoryBlock_DIALOG_MESSAGE</strong></code>
+</p>
+<hr>
+<h2>WorkingDirectoryBlock_DIRECTORY_DOES_NOT_EXIST</h2>
+<p>
+<code>public static java.lang.String <strong>WorkingDirectoryBlock_DIRECTORY_DOES_NOT_EXIST</strong></code>
+</p>
+<hr>
+<h2>WorkingDirectoryBlock_DIRECTORY_NOT_SPECIFIED</h2>
+<p>
+<code>public static java.lang.String <strong>WorkingDirectoryBlock_DIRECTORY_NOT_SPECIFIED</strong></code>
+</p>
+<hr>
+<h2>WorkingDirectoryBlock_FILE_SYSTEM_BUTTON</h2>
+<p>
+<code>public static java.lang.String <strong>WorkingDirectoryBlock_FILE_SYSTEM_BUTTON</strong></code>
+</p>
+<hr>
+<h2>WorkingDirectoryBlock_OTHER_RADIO</h2>
+<p>
+<code>public static java.lang.String <strong>WorkingDirectoryBlock_OTHER_RADIO</strong></code>
+</p>
+<hr>
+<h2>WorkingDirectoryBlock_VARIABLES_BUTTON</h2>
+<p>
+<code>public static java.lang.String <strong>WorkingDirectoryBlock_VARIABLES_BUTTON</strong></code>
+</p>
+<hr>
+<h2>WorkingDirectoryBlock_WORKSPACE_BUTTON</h2>
+<p>
+<code>public static java.lang.String <strong>WorkingDirectoryBlock_WORKSPACE_BUTTON</strong></code>
+</p>
+<hr>
+<h2>WorkingDirectoryBlock_WORKSPACE_DIALOG_MESSAGE</h2>
+<p>
+<code>public static java.lang.String <strong>WorkingDirectoryBlock_WORKSPACE_DIALOG_MESSAGE</strong></code>
+</p>
+<hr>
+<h2>WorkingDirectoryBlock_WORKSPACE_DIALOG_TITLE</h2>
+<p>
+<code>public static java.lang.String <strong>WorkingDirectoryBlock_WORKSPACE_DIALOG_TITLE</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>ProcessorMessages</h2>
+<p>
+<code>public <strong>ProcessorMessages</strong>()</code>
+</p>
+<p></p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.debug.ui.tabs.processor</strong></font>
</p>
@@ -17441,7 +36825,7 @@ extends org.eclipse.wst.xsl.internal.debug.ui.XSLLaunchConfigurationTab</pre>
</td>
</tr>
<tr>
-<td><code><strong>XSLProcessorTab()</strong></code></td>
+<td><code><strong>XSLProcessorTab</strong>()</code></td>
</tr>
</table>
<br>
@@ -17458,31 +36842,101 @@ extends org.eclipse.wst.xsl.internal.debug.ui.XSLLaunchConfigurationTab</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>performApply(ILaunchConfigurationWorkingCopy configuration)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>dispose()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getName()</code>
+<td width="20%" align="right"><code>public org.eclipse.swt.graphics.Image</code></td><td width="" align="left"><code>getImage()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public org.eclipse.swt.graphics.Image</code></td><td width="" align="left"><code>getImage()</code>
+<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getName()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>dispose()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>performApply(ILaunchConfigurationWorkingCopy configuration)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>XSLProcessorTab</h2>
+<p>
+<code>public <strong>XSLProcessorTab</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>createControl</h2>
+<p>
+<code>public void <strong>createControl</strong>(org.eclipse.swt.widgets.Composite parent)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>parent</code>
+</p>
+<hr>
+<h2>dispose</h2>
+<p>
+<code>public void <strong>dispose</strong>()</code>
+</p>
+<p></p>
+<hr>
+<h2>getImage</h2>
+<p>
+<code>public org.eclipse.swt.graphics.Image <strong>getImage</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.swt.graphics.Image</code>
+</p>
+<hr>
+<h2>getName</h2>
+<p>
+<code>public java.lang.String <strong>getName</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
+<h2>performApply</h2>
+<p>
+<code>public void <strong>performApply</strong>(ILaunchConfigurationWorkingCopy configuration)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>configuration</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.debug.ui.tabs.resolver</strong></font>
</p>
@@ -17510,6 +36964,29 @@ extends java.lang.Object</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getString</h2>
+<p>
+<code>public java.lang.String <strong>getString</strong>(java.lang.String key)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>key</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.debug.ui.tabs.resolver</strong></font>
</p>
@@ -17530,7 +37007,7 @@ extends org.eclipse.wst.xsl.internal.debug.ui.ResourceSelectionBlock</pre>
</td>
</tr>
<tr>
-<td><code><strong>URIResolverBlock()</strong></code></td>
+<td><code><strong>URIResolverBlock</strong>()</code></td>
</tr>
</table>
<br>
@@ -17541,13 +37018,13 @@ extends org.eclipse.wst.xsl.internal.debug.ui.ResourceSelectionBlock</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected java.lang.String</code></td><td width="" align="left"><code>getMessage(int type)</code>
+<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>createCheckboxAndText(org.eclipse.swt.widgets.Composite parent)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>setDefaultResource()</code>
+<td width="20%" align="right"><code>protected java.lang.String</code></td><td width="" align="left"><code>getMessage(int type)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@@ -17565,37 +37042,151 @@ extends org.eclipse.wst.xsl.internal.debug.ui.ResourceSelectionBlock</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>createCheckboxAndText(org.eclipse.swt.widgets.Composite parent)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>performApply(ILaunchConfigurationWorkingCopy configuration)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>updateResourceText(boolean useDefault)</code>
+<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>setDefaultResource()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>updateEnablement(boolean useDefault)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setDefaults(ILaunchConfigurationWorkingCopy config)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>performApply(ILaunchConfigurationWorkingCopy configuration)</code>
+<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>updateEnablement(boolean useDefault)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setDefaults(ILaunchConfigurationWorkingCopy config)</code>
+<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>updateResourceText(boolean useDefault)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>URIResolverBlock</h2>
+<p>
+<code>public <strong>URIResolverBlock</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>createCheckboxAndText</h2>
+<p>
+<code>protected void <strong>createCheckboxAndText</strong>(org.eclipse.swt.widgets.Composite parent)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>parent</code>
+</p>
+<hr>
+<h2>getMessage</h2>
+<p>
+<code>protected java.lang.String <strong>getMessage</strong>(int type)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>type</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
+<h2>getName</h2>
+<p>
+<code>public java.lang.String <strong>getName</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
+<h2>initializeFrom</h2>
+<p>
+<code>public void <strong>initializeFrom</strong>(ILaunchConfiguration configuration)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>configuration</code>
+</p>
+<hr>
+<h2>performApply</h2>
+<p>
+<code>public void <strong>performApply</strong>(ILaunchConfigurationWorkingCopy configuration)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>configuration</code>
+</p>
+<hr>
+<h2>setDefaultResource</h2>
+<p>
+<code>protected void <strong>setDefaultResource</strong>()</code>
+</p>
+<p></p>
+<hr>
+<h2>setDefaults</h2>
+<p>
+<code>public void <strong>setDefaults</strong>(ILaunchConfigurationWorkingCopy config)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>config</code>
+</p>
+<hr>
+<h2>updateEnablement</h2>
+<p>
+<code>protected void <strong>updateEnablement</strong>(boolean useDefault)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>useDefault</code>
+</p>
+<hr>
+<h2>updateResourceText</h2>
+<p>
+<code>protected void <strong>updateResourceText</strong>(boolean useDefault)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>useDefault</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.debug.ui.tabs.resolver</strong></font>
</p>
@@ -17616,7 +37207,7 @@ extends AbstractLaunchConfigurationTab</pre>
</td>
</tr>
<tr>
-<td><code><strong>URIResolverBlock2()</strong></code></td>
+<td><code><strong>URIResolverBlock2</strong>()</code></td>
</tr>
</table>
<br>
@@ -17639,13 +37230,13 @@ extends AbstractLaunchConfigurationTab</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>isValid(ILaunchConfiguration launchConfig)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>initializeFrom(ILaunchConfiguration configuration)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>initializeFrom(ILaunchConfiguration configuration)</code>
+<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>isValid(ILaunchConfiguration launchConfig)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@@ -17664,6 +37255,94 @@ extends AbstractLaunchConfigurationTab</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>URIResolverBlock2</h2>
+<p>
+<code>public <strong>URIResolverBlock2</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>createControl</h2>
+<p>
+<code>public void <strong>createControl</strong>(org.eclipse.swt.widgets.Composite parent)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>parent</code>
+</p>
+<hr>
+<h2>getName</h2>
+<p>
+<code>public java.lang.String <strong>getName</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
+<h2>initializeFrom</h2>
+<p>
+<code>public void <strong>initializeFrom</strong>(ILaunchConfiguration configuration)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>configuration</code>
+</p>
+<hr>
+<h2>isValid</h2>
+<p>
+<code>public boolean <strong>isValid</strong>(ILaunchConfiguration launchConfig)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>launchConfig</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<hr>
+<h2>performApply</h2>
+<p>
+<code>public void <strong>performApply</strong>(ILaunchConfigurationWorkingCopy configuration)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>configuration</code>
+</p>
+<hr>
+<h2>setDefaults</h2>
+<p>
+<code>public void <strong>setDefaults</strong>(ILaunchConfigurationWorkingCopy configuration)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>configuration</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.debug.ui.tabs.resolver</strong></font>
</p>
@@ -17684,7 +37363,7 @@ extends org.eclipse.wst.xsl.internal.debug.ui.ResourceSelectionBlock</pre>
</td>
</tr>
<tr>
-<td><code><strong>WorkingDirectoryBlock()</strong></code></td>
+<td><code><strong>WorkingDirectoryBlock</strong>()</code></td>
</tr>
</table>
<br>
@@ -17695,67 +37374,191 @@ extends org.eclipse.wst.xsl.internal.debug.ui.ResourceSelectionBlock</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected java.lang.String</code></td><td width="" align="left"><code>getMessage(int type)</code>
+<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>createCheckboxAndText(org.eclipse.swt.widgets.Composite parent)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>createCheckboxAndText(org.eclipse.swt.widgets.Composite parent)</code>
+<td width="20%" align="right"><code>protected java.lang.String</code></td><td width="" align="left"><code>getMessage(int type)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>setDefaultResource()</code>
+<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getName()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getName()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>initializeFrom(ILaunchConfiguration configuration)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>initializeFrom(ILaunchConfiguration configuration)</code>
+<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>isValid(ILaunchConfiguration config)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>updateResourceText(boolean useDefault)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>performApply(ILaunchConfigurationWorkingCopy configuration)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>updateDefaultWorkingDir()</code>
+<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>setDefaultResource()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>performApply(ILaunchConfigurationWorkingCopy configuration)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setDefaults(ILaunchConfigurationWorkingCopy configuration)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setDefaults(ILaunchConfigurationWorkingCopy configuration)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>updateDefaultWorkingDir()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>isValid(ILaunchConfiguration config)</code>
+<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>updateResourceText(boolean useDefault)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>WorkingDirectoryBlock</h2>
+<p>
+<code>public <strong>WorkingDirectoryBlock</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>createCheckboxAndText</h2>
+<p>
+<code>protected void <strong>createCheckboxAndText</strong>(org.eclipse.swt.widgets.Composite parent)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>parent</code>
+</p>
+<hr>
+<h2>getMessage</h2>
+<p>
+<code>protected java.lang.String <strong>getMessage</strong>(int type)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>type</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
+<h2>getName</h2>
+<p>
+<code>public java.lang.String <strong>getName</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
+<h2>initializeFrom</h2>
+<p>
+<code>public void <strong>initializeFrom</strong>(ILaunchConfiguration configuration)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>configuration</code>
+</p>
+<hr>
+<h2>isValid</h2>
+<p>
+<code>public boolean <strong>isValid</strong>(ILaunchConfiguration config)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>config</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<hr>
+<h2>performApply</h2>
+<p>
+<code>public void <strong>performApply</strong>(ILaunchConfigurationWorkingCopy configuration)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>configuration</code>
+</p>
+<hr>
+<h2>setDefaultResource</h2>
+<p>
+<code>protected void <strong>setDefaultResource</strong>()</code>
+</p>
+<p></p>
+<hr>
+<h2>setDefaults</h2>
+<p>
+<code>public void <strong>setDefaults</strong>(ILaunchConfigurationWorkingCopy configuration)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>configuration</code>
+</p>
+<hr>
+<h2>updateDefaultWorkingDir</h2>
+<p>
+<code>public void <strong>updateDefaultWorkingDir</strong>()</code>
+</p>
+<p></p>
+<hr>
+<h2>updateResourceText</h2>
+<p>
+<code>protected void <strong>updateResourceText</strong>(boolean useDefault)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>useDefault</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.debugger</strong></font>
</p>
@@ -17778,7 +37581,7 @@ extends java.lang.Object</pre>An implementation of <code>IXSLDebugger</code>.
</td>
</tr>
<tr>
-<td><code><strong>AbstractDebugger()</strong></code></td>
+<td><code><strong>AbstractDebugger</strong>()</code></td>
</tr>
</table>
<br>
@@ -17789,141 +37592,343 @@ extends java.lang.Object</pre>An implementation of <code>IXSLDebugger</code>.
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setInvoker(org.eclipse.wst.xsl.invoker.IProcessorInvoker invoker)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>addBreakpoint(org.eclipse.wst.xsl.debugger.BreakPoint breakpoint)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setEventWriter(java.io.Writer writer)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>checkStopped()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- </td>
+ Check whether the debugger has been stopped and perform the appropriate action if so.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setSource(java.net.URL sourceURL)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>checkSuspended(org.eclipse.wst.xsl.debugger.StyleFrame styleFrame
+ ,
+ org.eclipse.wst.xsl.debugger.BreakPoint breakpoint)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- </td>
+ Check whether the debugger is currently suspended or stepping at the given breakpoint and style frame,
+ and perform the appropriate action if so.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setTarget(javax.xml.transform.Result res)</code>
+<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>debuggerStarted()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>run()</code>
+<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>debuggerStopped()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>suspend()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>debuggerTransformStarted()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- </td>
+ Called when the next transform in the pipeline has begun.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>resume()</code>
+<td width="20%" align="right"><code>public org.eclipse.wst.xsl.debugger.StyleFrame</code></td><td width="" align="left"><code>peekStyleFrame()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- </td>
+ Peek a style frame from the stack.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>stepInto()</code>
+<td width="20%" align="right"><code>public org.eclipse.wst.xsl.debugger.StyleFrame</code></td><td width="" align="left"><code>popStyleFrame()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- </td>
+ Pop a style frame from the stack.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>stepOver()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>pushStyleFrame(org.eclipse.wst.xsl.debugger.StyleFrame styleFrame)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- </td>
+ Push a style frame onto the stack.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>stepReturn()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>quit()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>quit()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>removeBreakpoint(org.eclipse.wst.xsl.debugger.BreakPoint breakpoint)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>stack()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>resume()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>checkStopped()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>run()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Check whether the debugger has been stopped and perform the appropriate action if so.</td>
+ </td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>checkSuspended(org.eclipse.wst.xsl.debugger.StyleFrame styleFrame
- ,
- org.eclipse.wst.xsl.debugger.BreakPoint breakpoint)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setEventWriter(java.io.Writer writer)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Check whether the debugger is currently suspended or stepping at the given breakpoint and style frame,
- and perform the appropriate action if so.</td>
+ </td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>debuggerTransformStarted()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setInvoker(org.eclipse.wst.xsl.invoker.IProcessorInvoker invoker)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Called when the next transform in the pipeline has begun.</td>
+ </td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>debuggerStarted()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setSource(java.net.URL sourceURL)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>debuggerStopped()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setTarget(javax.xml.transform.Result res)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>addBreakpoint(org.eclipse.wst.xsl.debugger.BreakPoint breakpoint)</code>
+<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>stack()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>removeBreakpoint(org.eclipse.wst.xsl.debugger.BreakPoint breakpoint)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>stepInto()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public org.eclipse.wst.xsl.debugger.StyleFrame</code></td><td width="" align="left"><code>popStyleFrame()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>stepOver()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Pop a style frame from the stack.</td>
+ </td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>pushStyleFrame(org.eclipse.wst.xsl.debugger.StyleFrame styleFrame)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>stepReturn()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Push a style frame onto the stack.</td>
+ </td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public org.eclipse.wst.xsl.debugger.StyleFrame</code></td><td width="" align="left"><code>peekStyleFrame()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>suspend()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Peek a style frame from the stack.</td>
+ </td>
+</tr>
+</table>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
</tr>
</table>
+<h2>AbstractDebugger</h2>
+<p>
+<code>public <strong>AbstractDebugger</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>addBreakpoint</h2>
+<p>
+<code>public void <strong>addBreakpoint</strong>(org.eclipse.wst.xsl.debugger.BreakPoint breakpoint)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>breakpoint</code>
+</p>
+<hr>
+<h2>checkStopped</h2>
+<p>
+<code>public void <strong>checkStopped</strong>()</code>
+</p>
+<p>Check whether the debugger has been stopped and perform the appropriate action if so.</p>
+<hr>
+<h2>checkSuspended</h2>
+<p>
+<code>public void <strong>checkSuspended</strong>(org.eclipse.wst.xsl.debugger.StyleFrame styleFrame
+ ,
+ org.eclipse.wst.xsl.debugger.BreakPoint breakpoint)</code>
+</p>
+<p>Check whether the debugger is currently suspended or stepping at the given breakpoint and style frame,
+ and perform the appropriate action if so.</p>
+<h3>Parameters</h3>
+<p>
+<code>styleFrame</code> - the styleframe to check</p>
+<p>
+<code>breakpoint</code> - the current location</p>
+<hr>
+<h2>debuggerStarted</h2>
+<p>
+<code>protected void <strong>debuggerStarted</strong>()</code>
+</p>
+<p></p>
+<hr>
+<h2>debuggerStopped</h2>
+<p>
+<code>protected void <strong>debuggerStopped</strong>()</code>
+</p>
+<p></p>
+<hr>
+<h2>debuggerTransformStarted</h2>
+<p>
+<code>public void <strong>debuggerTransformStarted</strong>()</code>
+</p>
+<p>Called when the next transform in the pipeline has begun.</p>
+<hr>
+<h2>peekStyleFrame</h2>
+<p>
+<code>public org.eclipse.wst.xsl.debugger.StyleFrame <strong>peekStyleFrame</strong>()</code>
+</p>
+<p>Peek a style frame from the stack.</p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.debugger.StyleFrame</code> - the peeked style frame</p>
+<hr>
+<h2>popStyleFrame</h2>
+<p>
+<code>public org.eclipse.wst.xsl.debugger.StyleFrame <strong>popStyleFrame</strong>()</code>
+</p>
+<p>Pop a style frame from the stack.</p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.debugger.StyleFrame</code> - the popped style frame</p>
+<hr>
+<h2>pushStyleFrame</h2>
+<p>
+<code>public void <strong>pushStyleFrame</strong>(org.eclipse.wst.xsl.debugger.StyleFrame styleFrame)</code>
+</p>
+<p>Push a style frame onto the stack.</p>
+<h3>Parameters</h3>
+<p>
+<code>styleFrame</code>
+</p>
+<hr>
+<h2>quit</h2>
+<p>
+<code>public void <strong>quit</strong>()</code>
+</p>
+<p></p>
+<hr>
+<h2>removeBreakpoint</h2>
+<p>
+<code>public void <strong>removeBreakpoint</strong>(org.eclipse.wst.xsl.debugger.BreakPoint breakpoint)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>breakpoint</code>
+</p>
+<hr>
+<h2>resume</h2>
+<p>
+<code>public void <strong>resume</strong>()</code>
+</p>
+<p></p>
+<hr>
+<h2>run</h2>
+<p>
+<code>public void <strong>run</strong>()</code>
+</p>
+<p></p>
+<hr>
+<h2>setEventWriter</h2>
+<p>
+<code>public void <strong>setEventWriter</strong>(java.io.Writer writer)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>writer</code>
+</p>
+<hr>
+<h2>setInvoker</h2>
+<p>
+<code>public void <strong>setInvoker</strong>(org.eclipse.wst.xsl.invoker.IProcessorInvoker invoker)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>invoker</code>
+</p>
+<hr>
+<h2>setSource</h2>
+<p>
+<code>public void <strong>setSource</strong>(java.net.URL sourceURL)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>sourceURL</code>
+</p>
+<hr>
+<h2>setTarget</h2>
+<p>
+<code>public void <strong>setTarget</strong>(javax.xml.transform.Result res)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>res</code>
+</p>
+<hr>
+<h2>stack</h2>
+<p>
+<code>public java.lang.String <strong>stack</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
+<h2>stepInto</h2>
+<p>
+<code>public void <strong>stepInto</strong>()</code>
+</p>
+<p></p>
+<hr>
+<h2>stepOver</h2>
+<p>
+<code>public void <strong>stepOver</strong>()</code>
+</p>
+<p></p>
+<hr>
+<h2>stepReturn</h2>
+<p>
+<code>public void <strong>stepReturn</strong>()</code>
+</p>
+<p></p>
+<hr>
+<h2>suspend</h2>
+<p>
+<code>public void <strong>suspend</strong>()</code>
+</p>
+<p></p>
<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.debugger</strong></font>
@@ -17945,9 +37950,9 @@ extends java.lang.Object</pre>A line number in a file.<p></p>
</td>
</tr>
<tr>
-<td><code><strong>BreakPoint(java.lang.String file
+<td><code><strong>BreakPoint</strong>(java.lang.String file
,
- int line)</strong></code></td>
+ int line)</code></td>
</tr>
</table>
<br>
@@ -17958,6 +37963,12 @@ extends java.lang.Object</pre>A line number in a file.<p></p>
</td>
</tr>
<tr valign="top">
+<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>equals(java.lang.Object obj)</code>
+<br>
+ &nbsp;&nbsp;&nbsp;&nbsp;
+ </td>
+</tr>
+<tr valign="top">
<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getFile()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
@@ -17976,12 +37987,6 @@ extends java.lang.Object</pre>A line number in a file.<p></p>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>equals(java.lang.Object obj)</code>
-<br>
- &nbsp;&nbsp;&nbsp;&nbsp;
- </td>
-</tr>
-<tr valign="top">
<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>toString()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
@@ -17989,6 +37994,84 @@ extends java.lang.Object</pre>A line number in a file.<p></p>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>BreakPoint</h2>
+<p>
+<code>public <strong>BreakPoint</strong>(java.lang.String file
+ ,
+ int line)</code>
+</p>
+<p>Construct a new instance of this for the given file and line number.</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>equals</h2>
+<p>
+<code>public boolean <strong>equals</strong>(java.lang.Object obj)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>obj</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<hr>
+<h2>getFile</h2>
+<p>
+<code>public java.lang.String <strong>getFile</strong>()</code>
+</p>
+<p>Get the file location.</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code> - the file</p>
+<hr>
+<h2>getLine</h2>
+<p>
+<code>public int <strong>getLine</strong>()</code>
+</p>
+<p>Get the line number</p>
+<h3>Returns</h3>
+<p>
+<code>int</code> - the line number</p>
+<hr>
+<h2>hashCode</h2>
+<p>
+<code>public int <strong>hashCode</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>int</code>
+</p>
+<hr>
+<h2>toString</h2>
+<p>
+<code>public java.lang.String <strong>toString</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.debugger</strong></font>
</p>
@@ -18015,12 +38098,6 @@ extends java.lang.Object</pre>Constants used by the debugger.
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>REQUEST_START</code>
-<br>
- &nbsp;&nbsp;&nbsp;&nbsp;
- The constant used to notify the debugger to start.</td>
-</tr>
-<tr valign="top">
<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>REQUEST_ADD_BREAKPOINT</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
@@ -18033,40 +38110,46 @@ extends java.lang.Object</pre>Constants used by the debugger.
The constant used to signify removal of a breakpoint.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>REQUEST_STEP_INTO</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>REQUEST_RESUME</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- The constant used to signify step into.</td>
+ The constant used to signify resume.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>REQUEST_STEP_OVER</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>REQUEST_STACK</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- The constant used to signify step over.</td>
+ The constant used to request the stack.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>REQUEST_SUSPEND</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>REQUEST_START</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- The constant used to signify suspension.</td>
+ The constant used to notify the debugger to start.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>REQUEST_RESUME</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>REQUEST_STEP_INTO</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- The constant used to signify resume.</td>
+ The constant used to signify step into.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>REQUEST_STACK</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>REQUEST_STEP_OVER</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- The constant used to request the stack.</td>
+ The constant used to signify step over.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>REQUEST_VARIABLE</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>REQUEST_STEP_RETURN</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- The constant used to request a variable.</td>
+ The constant used to signify step return.</td>
+</tr>
+<tr valign="top">
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>REQUEST_SUSPEND</code>
+<br>
+ &nbsp;&nbsp;&nbsp;&nbsp;
+ The constant used to signify suspension.</td>
</tr>
<tr valign="top">
<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>REQUEST_VALUE</code>
@@ -18075,10 +38158,10 @@ extends java.lang.Object</pre>Constants used by the debugger.
The constant used to request a variable value.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>REQUEST_STEP_RETURN</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>REQUEST_VARIABLE</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- The constant used to signify step return.</td>
+ The constant used to request a variable.</td>
</tr>
</table>
<br>
@@ -18089,7 +38172,7 @@ extends java.lang.Object</pre>Constants used by the debugger.
</td>
</tr>
<tr>
-<td><code><strong>DebugConstants()</strong></code></td>
+<td><code><strong>DebugConstants</strong>()</code></td>
</tr>
</table>
<br>
@@ -18101,6 +38184,140 @@ extends java.lang.Object</pre>Constants used by the debugger.
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>REQUEST_ADD_BREAKPOINT</h2>
+<p>
+<code>public static java.lang.String <strong>REQUEST_ADD_BREAKPOINT</strong></code>
+</p>
+<table>
+<tr>
+<td>The constant used to signify addition of a breakpoint.</td>
+</tr>
+</table>
+<hr>
+<h2>REQUEST_REMOVE_BREAKPOINT</h2>
+<p>
+<code>public static java.lang.String <strong>REQUEST_REMOVE_BREAKPOINT</strong></code>
+</p>
+<table>
+<tr>
+<td>The constant used to signify removal of a breakpoint.</td>
+</tr>
+</table>
+<hr>
+<h2>REQUEST_RESUME</h2>
+<p>
+<code>public static java.lang.String <strong>REQUEST_RESUME</strong></code>
+</p>
+<table>
+<tr>
+<td>The constant used to signify resume.</td>
+</tr>
+</table>
+<hr>
+<h2>REQUEST_STACK</h2>
+<p>
+<code>public static java.lang.String <strong>REQUEST_STACK</strong></code>
+</p>
+<table>
+<tr>
+<td>The constant used to request the stack.</td>
+</tr>
+</table>
+<hr>
+<h2>REQUEST_START</h2>
+<p>
+<code>public static java.lang.String <strong>REQUEST_START</strong></code>
+</p>
+<table>
+<tr>
+<td>The constant used to notify the debugger to start.</td>
+</tr>
+</table>
+<hr>
+<h2>REQUEST_STEP_INTO</h2>
+<p>
+<code>public static java.lang.String <strong>REQUEST_STEP_INTO</strong></code>
+</p>
+<table>
+<tr>
+<td>The constant used to signify step into.</td>
+</tr>
+</table>
+<hr>
+<h2>REQUEST_STEP_OVER</h2>
+<p>
+<code>public static java.lang.String <strong>REQUEST_STEP_OVER</strong></code>
+</p>
+<table>
+<tr>
+<td>The constant used to signify step over.</td>
+</tr>
+</table>
+<hr>
+<h2>REQUEST_STEP_RETURN</h2>
+<p>
+<code>public static java.lang.String <strong>REQUEST_STEP_RETURN</strong></code>
+</p>
+<table>
+<tr>
+<td>The constant used to signify step return.</td>
+</tr>
+</table>
+<hr>
+<h2>REQUEST_SUSPEND</h2>
+<p>
+<code>public static java.lang.String <strong>REQUEST_SUSPEND</strong></code>
+</p>
+<table>
+<tr>
+<td>The constant used to signify suspension.</td>
+</tr>
+</table>
+<hr>
+<h2>REQUEST_VALUE</h2>
+<p>
+<code>public static java.lang.String <strong>REQUEST_VALUE</strong></code>
+</p>
+<table>
+<tr>
+<td>The constant used to request a variable value.</td>
+</tr>
+</table>
+<hr>
+<h2>REQUEST_VARIABLE</h2>
+<p>
+<code>public static java.lang.String <strong>REQUEST_VARIABLE</strong></code>
+</p>
+<table>
+<tr>
+<td>The constant used to request a variable.</td>
+</tr>
+</table>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>DebugConstants</h2>
+<p>
+<code>public <strong>DebugConstants</strong>()</code>
+</p>
+<p></p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.debugger</strong></font>
</p>
@@ -18129,16 +38346,16 @@ extends java.lang.Object</pre>The entry point to the debug process which is resp
</td>
</tr>
<tr>
-<td><code><strong>DebugRunner(java.io.BufferedReader requestIn
+<td><code><strong>DebugRunner</strong>(java.io.BufferedReader requestIn
,
java.io.PrintWriter requestOut
,
- java.io.PrintWriter eventOut)</strong></code></td>
+ java.io.PrintWriter eventOut)</code></td>
</tr>
<tr>
-<td><code><strong>DebugRunner(int requestPort
+<td><code><strong>DebugRunner</strong>(int requestPort
,
- int eventPort)</strong></code></td>
+ int eventPort)</code></td>
</tr>
</table>
<br>
@@ -18149,17 +38366,17 @@ extends java.lang.Object</pre>The entry point to the debug process which is resp
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>loop(org.eclipse.wst.xsl.debugger.IXSLDebugger debugger)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>dispose()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- This method starts the given debugger in its own thread, and blocks while waiting
- for incoming requests from the request port, until there are no more requests.</td>
+ Dispose of this - close all open sockets.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>dispose()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>loop(org.eclipse.wst.xsl.debugger.IXSLDebugger debugger)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Dispose of this - close all open sockets.</td>
+ This method starts the given debugger in its own thread, and blocks while waiting
+ for incoming requests from the request port, until there are no more requests.</td>
</tr>
<tr valign="top">
<td width="20%" align="right"><code>public static void</code></td><td width="" align="left"><code>main(java.lang.String[] args)</code>
@@ -18180,6 +38397,83 @@ extends java.lang.Object</pre>The entry point to the debug process which is resp
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>DebugRunner</h2>
+<p>
+<code>public <strong>DebugRunner</strong>(java.io.BufferedReader requestIn
+ ,
+ java.io.PrintWriter requestOut
+ ,
+ java.io.PrintWriter eventOut)</code>
+</p>
+<p>Create a new instance of this using the supplied readers and writers.</p>
+<hr>
+<h2>DebugRunner</h2>
+<p>
+<code>public <strong>DebugRunner</strong>(int requestPort
+ ,
+ int eventPort)</code>
+</p>
+<p>Create a new instance of this given a request port and an event port.</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>dispose</h2>
+<p>
+<code>public void <strong>dispose</strong>()</code>
+</p>
+<p>Dispose of this - close all open sockets.</p>
+<hr>
+<h2>loop</h2>
+<p>
+<code>public void <strong>loop</strong>(org.eclipse.wst.xsl.debugger.IXSLDebugger debugger)</code>
+</p>
+<p>This method starts the given debugger in its own thread, and blocks while waiting
+ for incoming requests from the request port, until there are no more requests.</p>
+<h3>Parameters</h3>
+<p>
+<code>debugger</code> - the debugger to start in a thread</p>
+<h3>Throws:</h3>
+<p>
+<code>org.eclipse.wst.xsl.invoker.TransformationException - if a problem occurred while transforming</code>
+</p>
+<hr>
+<h2>main</h2>
+<p>
+<code>public void <strong>main</strong>(java.lang.String[] args)</code>
+</p>
+<p>Expected arguments:
+
+ <ol>
+ <li>the class name of the invoker
+ <li>the file name of the XML launch configuration file
+ <li>the URL of the source document
+ <li>the file of the output document
+ <li>not used (anything)
+ <li>the class name of the <code>IXSLDebugger</code> instance
+ <li>the port used for requests
+ <li>the port used for debug events
+ </ol></p>
+<h3>Parameters</h3>
+<p>
+<code>args</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.debugger</strong></font>
</p>
@@ -18200,22 +38494,40 @@ extends </pre>An interface to XSL debugger instances.<p></p>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setInvoker(org.eclipse.wst.xsl.invoker.IProcessorInvoker invoker)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>addBreakpoint(org.eclipse.wst.xsl.debugger.BreakPoint breakpoint)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Set the invoker to use.</td>
+ Add a breakpoint to this.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setTransformerFactory(javax.xml.transform.TransformerFactory factory)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>addTransformer(javax.xml.transform.Transformer transformer)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Set the transformer factory to use.</td>
+ Add a transformer to this.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>addTransformer(javax.xml.transform.Transformer transformer)</code>
+<td width="20%" align="right"><code>public org.eclipse.wst.xsl.debugger.Variable</code></td><td width="" align="left"><code>getVariable(int id)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Add a transformer to this.</td>
+ Get the variable with the given id.</td>
+</tr>
+<tr valign="top">
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>quit()</code>
+<br>
+ &nbsp;&nbsp;&nbsp;&nbsp;
+ Quit debugging.</td>
+</tr>
+<tr valign="top">
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>removeBreakpoint(org.eclipse.wst.xsl.debugger.BreakPoint breakpoint)</code>
+<br>
+ &nbsp;&nbsp;&nbsp;&nbsp;
+ Remove a breakpoint from this.</td>
+</tr>
+<tr valign="top">
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>resume()</code>
+<br>
+ &nbsp;&nbsp;&nbsp;&nbsp;
+ Perform a 'resume' operation.</td>
</tr>
<tr valign="top">
<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setEventWriter(java.io.Writer writer)</code>
@@ -18224,6 +38536,12 @@ extends </pre>An interface to XSL debugger instances.<p></p>
Set the Writer for this to write events to.</td>
</tr>
<tr valign="top">
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setInvoker(org.eclipse.wst.xsl.invoker.IProcessorInvoker invoker)</code>
+<br>
+ &nbsp;&nbsp;&nbsp;&nbsp;
+ Set the invoker to use.</td>
+</tr>
+<tr valign="top">
<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setSource(java.net.URL sourceURL)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
@@ -18236,16 +38554,29 @@ extends </pre>An interface to XSL debugger instances.<p></p>
Set the transformation Result.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>addBreakpoint(org.eclipse.wst.xsl.debugger.BreakPoint breakpoint)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setTransformerFactory(javax.xml.transform.TransformerFactory factory)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Add a breakpoint to this.</td>
+ Set the transformer factory to use.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>removeBreakpoint(org.eclipse.wst.xsl.debugger.BreakPoint breakpoint)</code>
+<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>stack()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Remove a breakpoint from this.</td>
+ Generate a string that represents the current call stack of frames and their variables.
+ <p>
+ Frames are generated with the following format: <i>file</i>|<i>frameId</i>|<i>lineNumber</i>|<i>name</i>
+ This is immediately followed with the id's of the frame's variables (each variable id being unique for the whole process).
+ </p>
+ <p>
+ The separator for frames is $$$. Within a frame, the separator for variable id's is |.
+ </p>
+ <p>
+ e.g. file:/tran1.xsl|1|12|xsl:template name="temp1"|1|2|3$$$file:/tran2.xsl|2|34|xsl:template name="temp2"|4|5|6
+
+ This defines 2 frames with id's 1 and 2, which are occur in files tran1.xsl and tran2.xsl respectively.
+ Frame 1 is currently at line 12, in a template with name temp1, and it defines 3 variables with id's 1, 2 and 3.
+ </p></td>
</tr>
<tr valign="top">
<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>stepInto()</code>
@@ -18271,23 +38602,121 @@ extends </pre>An interface to XSL debugger instances.<p></p>
&nbsp;&nbsp;&nbsp;&nbsp;
Perform a 'suspend' operation.</td>
</tr>
-<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>resume()</code>
-<br>
- &nbsp;&nbsp;&nbsp;&nbsp;
- Perform a 'resume' operation.</td>
-</tr>
-<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>quit()</code>
-<br>
- &nbsp;&nbsp;&nbsp;&nbsp;
- Quit debugging.</td>
+</table>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
</tr>
-<tr valign="top">
-<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>stack()</code>
-<br>
- &nbsp;&nbsp;&nbsp;&nbsp;
- Generate a string that represents the current call stack of frames and their variables.
+</table>
+<h2>addBreakpoint</h2>
+<p>
+<code>public void <strong>addBreakpoint</strong>(org.eclipse.wst.xsl.debugger.BreakPoint breakpoint)</code>
+</p>
+<p>Add a breakpoint to this.</p>
+<h3>Parameters</h3>
+<p>
+<code>breakpoint</code>
+</p>
+<hr>
+<h2>addTransformer</h2>
+<p>
+<code>public void <strong>addTransformer</strong>(javax.xml.transform.Transformer transformer)</code>
+</p>
+<p>Add a transformer to this.</p>
+<h3>Parameters</h3>
+<p>
+<code>transformer</code>
+</p>
+<hr>
+<h2>getVariable</h2>
+<p>
+<code>public org.eclipse.wst.xsl.debugger.Variable <strong>getVariable</strong>(int id)</code>
+</p>
+<p>Get the variable with the given id.</p>
+<h3>Parameters</h3>
+<p>
+<code>id</code> - the id of the variable</p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.debugger.Variable</code> - the variable</p>
+<hr>
+<h2>quit</h2>
+<p>
+<code>public void <strong>quit</strong>()</code>
+</p>
+<p>Quit debugging.</p>
+<hr>
+<h2>removeBreakpoint</h2>
+<p>
+<code>public void <strong>removeBreakpoint</strong>(org.eclipse.wst.xsl.debugger.BreakPoint breakpoint)</code>
+</p>
+<p>Remove a breakpoint from this.</p>
+<h3>Parameters</h3>
+<p>
+<code>breakpoint</code>
+</p>
+<hr>
+<h2>resume</h2>
+<p>
+<code>public void <strong>resume</strong>()</code>
+</p>
+<p>Perform a 'resume' operation.</p>
+<hr>
+<h2>setEventWriter</h2>
+<p>
+<code>public void <strong>setEventWriter</strong>(java.io.Writer writer)</code>
+</p>
+<p>Set the Writer for this to write events to.</p>
+<h3>Parameters</h3>
+<p>
+<code>writer</code> - the writer to write events to</p>
+<hr>
+<h2>setInvoker</h2>
+<p>
+<code>public void <strong>setInvoker</strong>(org.eclipse.wst.xsl.invoker.IProcessorInvoker invoker)</code>
+</p>
+<p>Set the invoker to use.</p>
+<h3>Parameters</h3>
+<p>
+<code>invoker</code> - the invoker to set</p>
+<hr>
+<h2>setSource</h2>
+<p>
+<code>public void <strong>setSource</strong>(java.net.URL sourceURL)</code>
+</p>
+<p>Set the URL of the transformation source file.</p>
+<h3>Parameters</h3>
+<p>
+<code>sourceURL</code> - the source URL</p>
+<hr>
+<h2>setTarget</h2>
+<p>
+<code>public void <strong>setTarget</strong>(javax.xml.transform.Result res)</code>
+</p>
+<p>Set the transformation Result.</p>
+<h3>Parameters</h3>
+<p>
+<code>res</code> - the result</p>
+<hr>
+<h2>setTransformerFactory</h2>
+<p>
+<code>public void <strong>setTransformerFactory</strong>(javax.xml.transform.TransformerFactory factory)</code>
+</p>
+<p>Set the transformer factory to use.</p>
+<h3>Parameters</h3>
+<p>
+<code>factory</code> - the factory to use</p>
+<hr>
+<h2>stack</h2>
+<p>
+<code>public java.lang.String <strong>stack</strong>()</code>
+</p>
+<p>Generate a string that represents the current call stack of frames and their variables.
<p>
Frames are generated with the following format: <i>file</i>|<i>frameId</i>|<i>lineNumber</i>|<i>name</i>
This is immediately followed with the id's of the frame's variables (each variable id being unique for the whole process).
@@ -18300,15 +38729,34 @@ extends </pre>An interface to XSL debugger instances.<p></p>
This defines 2 frames with id's 1 and 2, which are occur in files tran1.xsl and tran2.xsl respectively.
Frame 1 is currently at line 12, in a template with name temp1, and it defines 3 variables with id's 1, 2 and 3.
- </p></td>
-</tr>
-<tr valign="top">
-<td width="20%" align="right"><code>public org.eclipse.wst.xsl.debugger.Variable</code></td><td width="" align="left"><code>getVariable(int id)</code>
-<br>
- &nbsp;&nbsp;&nbsp;&nbsp;
- Get the variable with the given id.</td>
-</tr>
-</table>
+ </p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code> - the generated string</p>
+<hr>
+<h2>stepInto</h2>
+<p>
+<code>public void <strong>stepInto</strong>()</code>
+</p>
+<p>Perform a 'step into' operation.</p>
+<hr>
+<h2>stepOver</h2>
+<p>
+<code>public void <strong>stepOver</strong>()</code>
+</p>
+<p>Perform a 'step over' operation.</p>
+<hr>
+<h2>stepReturn</h2>
+<p>
+<code>public void <strong>stepReturn</strong>()</code>
+</p>
+<p>Perform a 'step return' operation.</p>
+<hr>
+<h2>suspend</h2>
+<p>
+<code>public void <strong>suspend</strong>()</code>
+</p>
+<p>Perform a 'suspend' operation.</p>
<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.debugger</strong></font>
@@ -18330,7 +38778,7 @@ extends java.lang.Object</pre>An <code>xsl:template</code> that forms part of th
</td>
</tr>
<tr>
-<td><code><strong>StyleFrame(org.eclipse.wst.xsl.debugger.StyleFrame parent)</strong></code></td>
+<td><code><strong>StyleFrame</strong>(org.eclipse.wst.xsl.debugger.StyleFrame parent)</code></td>
</tr>
</table>
<br>
@@ -18341,16 +38789,22 @@ extends java.lang.Object</pre>An <code>xsl:template</code> that forms part of th
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public int</code></td><td width="" align="left"><code>getId()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>addChild(org.eclipse.wst.xsl.debugger.StyleFrame child)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- A unique id for this frame</td>
+ Add a child frame to this.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getName()</code>
+<td width="20%" align="right"><code>public java.util.List</code></td><td width="" align="left"><code>getChildren()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Get the name of this frame.</td>
+ Get the children of this</td>
+</tr>
+<tr valign="top">
+<td width="20%" align="right"><code>public int</code></td><td width="" align="left"><code>getCurrentLine()</code>
+<br>
+ &nbsp;&nbsp;&nbsp;&nbsp;
+ Get the line number at which the frame is currently located.</td>
</tr>
<tr valign="top">
<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getFilename()</code>
@@ -18359,16 +38813,16 @@ extends java.lang.Object</pre>An <code>xsl:template</code> that forms part of th
Get the file in which this frame is found.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public int</code></td><td width="" align="left"><code>getCurrentLine()</code>
+<td width="20%" align="right"><code>public int</code></td><td width="" align="left"><code>getId()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Get the line number at which the frame is currently located.</td>
+ A unique id for this frame</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.util.List</code></td><td width="" align="left"><code>getVariableStack()</code>
+<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getName()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Get a list of <code>Variables</code>'s</td>
+ Get the name of this frame.</td>
</tr>
<tr valign="top">
<td width="20%" align="right"><code>public org.eclipse.wst.xsl.debugger.StyleFrame</code></td><td width="" align="left"><code>getParent()</code>
@@ -18377,10 +38831,10 @@ extends java.lang.Object</pre>An <code>xsl:template</code> that forms part of th
Get the parent of this.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>addChild(org.eclipse.wst.xsl.debugger.StyleFrame child)</code>
+<td width="20%" align="right"><code>public java.util.List</code></td><td width="" align="left"><code>getVariableStack()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Add a child frame to this.</td>
+ Get a list of <code>Variables</code>'s</td>
</tr>
<tr valign="top">
<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>removeChild(org.eclipse.wst.xsl.debugger.StyleFrame child)</code>
@@ -18389,12 +38843,6 @@ extends java.lang.Object</pre>An <code>xsl:template</code> that forms part of th
Remove a child frame from this.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.util.List</code></td><td width="" align="left"><code>getChildren()</code>
-<br>
- &nbsp;&nbsp;&nbsp;&nbsp;
- Get the children of this</td>
-</tr>
-<tr valign="top">
<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>toString()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
@@ -18403,6 +38851,122 @@ extends java.lang.Object</pre>An <code>xsl:template</code> that forms part of th
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>StyleFrame</h2>
+<p>
+<code>public <strong>StyleFrame</strong>(org.eclipse.wst.xsl.debugger.StyleFrame parent)</code>
+</p>
+<p>Create a new instance of this using the given frame as its parent (may be null if this is the root frame).</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>addChild</h2>
+<p>
+<code>public void <strong>addChild</strong>(org.eclipse.wst.xsl.debugger.StyleFrame child)</code>
+</p>
+<p>Add a child frame to this.</p>
+<h3>Parameters</h3>
+<p>
+<code>child</code> - the frame to add</p>
+<hr>
+<h2>getChildren</h2>
+<p>
+<code>public java.util.List <strong>getChildren</strong>()</code>
+</p>
+<p>Get the children of this</p>
+<h3>Returns</h3>
+<p>
+<code>java.util.List</code> - a list of <code>StyleFrame</code>'s</p>
+<hr>
+<h2>getCurrentLine</h2>
+<p>
+<code>public int <strong>getCurrentLine</strong>()</code>
+</p>
+<p>Get the line number at which the frame is currently located.</p>
+<h3>Returns</h3>
+<p>
+<code>int</code> - the line number at which this is held</p>
+<hr>
+<h2>getFilename</h2>
+<p>
+<code>public java.lang.String <strong>getFilename</strong>()</code>
+</p>
+<p>Get the file in which this frame is found.</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code> - the filename for this</p>
+<hr>
+<h2>getId</h2>
+<p>
+<code>public int <strong>getId</strong>()</code>
+</p>
+<p>A unique id for this frame</p>
+<h3>Returns</h3>
+<p>
+<code>int</code> - a unique id for this frame</p>
+<hr>
+<h2>getName</h2>
+<p>
+<code>public java.lang.String <strong>getName</strong>()</code>
+</p>
+<p>Get the name of this frame.</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code> - the name of this</p>
+<hr>
+<h2>getParent</h2>
+<p>
+<code>public org.eclipse.wst.xsl.debugger.StyleFrame <strong>getParent</strong>()</code>
+</p>
+<p>Get the parent of this.</p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.debugger.StyleFrame</code> - the parent frame</p>
+<hr>
+<h2>getVariableStack</h2>
+<p>
+<code>public java.util.List <strong>getVariableStack</strong>()</code>
+</p>
+<p>Get a list of <code>Variables</code>'s</p>
+<h3>Returns</h3>
+<p>
+<code>java.util.List</code> - the list of variables for this frame</p>
+<hr>
+<h2>removeChild</h2>
+<p>
+<code>public void <strong>removeChild</strong>(org.eclipse.wst.xsl.debugger.StyleFrame child)</code>
+</p>
+<p>Remove a child frame from this.</p>
+<h3>Parameters</h3>
+<p>
+<code>child</code> - the frame to remove</p>
+<hr>
+<h2>toString</h2>
+<p>
+<code>public java.lang.String <strong>toString</strong>()</code>
+</p>
+<p>Creates a string in the format <i>file</i>|<i>frameId</i>|<i>lineNumber</i>|<i>name</i>.
+ Since pipe is used as a separator, the name has any pipe (|) characters replaced with the literal '%@_PIPE_@%'</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.debugger</strong></font>
</p>
@@ -18423,22 +38987,22 @@ extends java.lang.Object</pre>An abstract class that XSL processor implementatio
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>LOCAL_SCOPE</code>
+<td width="20%" align="right"><code>protected static java.lang.String</code></td><td width="80%" align="left"><code>BOOLEAN</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- The constant denoting a local scope variable.</td>
+ </td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>TUNNEL_SCOPE</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>GLOBAL_SCOPE</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- The constant denoting a tunnel scope variable.</td>
+ The constant denoting a global scope variable.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>GLOBAL_SCOPE</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>LOCAL_SCOPE</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- The constant denoting a global scope variable.</td>
+ The constant denoting a local scope variable.</td>
</tr>
<tr valign="top">
<td width="20%" align="right"><code>protected static int</code></td><td width="80%" align="left"><code>MAXIMUM_VALUE_SIZE</code>
@@ -18447,13 +39011,13 @@ extends java.lang.Object</pre>An abstract class that XSL processor implementatio
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected static java.lang.String</code></td><td width="80%" align="left"><code>UNRESOLVED</code>
+<td width="20%" align="right"><code>protected java.lang.String</code></td><td width="80%" align="left"><code>name</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected static java.lang.String</code></td><td width="80%" align="left"><code>BOOLEAN</code>
+<td width="20%" align="right"><code>protected static java.lang.String</code></td><td width="80%" align="left"><code>NODESET</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@@ -18465,43 +39029,43 @@ extends java.lang.Object</pre>An abstract class that XSL processor implementatio
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected static java.lang.String</code></td><td width="80%" align="left"><code>STRING</code>
+<td width="20%" align="right"><code>protected static java.lang.String</code></td><td width="80%" align="left"><code>OBJECT</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected static java.lang.String</code></td><td width="80%" align="left"><code>NODESET</code>
+<td width="20%" align="right"><code>protected java.lang.String</code></td><td width="80%" align="left"><code>scope</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected static java.lang.String</code></td><td width="80%" align="left"><code>OBJECT</code>
+<td width="20%" align="right"><code>protected int</code></td><td width="80%" align="left"><code>slotNumber</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected static java.lang.String</code></td><td width="80%" align="left"><code>UNKNOWN</code>
+<td width="20%" align="right"><code>protected static java.lang.String</code></td><td width="80%" align="left"><code>STRING</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected java.lang.String</code></td><td width="80%" align="left"><code>name</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>TUNNEL_SCOPE</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- </td>
+ The constant denoting a tunnel scope variable.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected java.lang.String</code></td><td width="80%" align="left"><code>scope</code>
+<td width="20%" align="right"><code>protected static java.lang.String</code></td><td width="80%" align="left"><code>UNKNOWN</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected int</code></td><td width="80%" align="left"><code>slotNumber</code>
+<td width="20%" align="right"><code>protected static java.lang.String</code></td><td width="80%" align="left"><code>UNRESOLVED</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@@ -18515,11 +39079,11 @@ extends java.lang.Object</pre>An abstract class that XSL processor implementatio
</td>
</tr>
<tr>
-<td><code><strong>Variable(java.lang.String name
+<td><code><strong>Variable</strong>(java.lang.String name
,
java.lang.String scope
,
- int slotNumber)</strong></code></td>
+ int slotNumber)</code></td>
</tr>
</table>
<br>
@@ -18530,22 +39094,22 @@ extends java.lang.Object</pre>An abstract class that XSL processor implementatio
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public int</code></td><td width="" align="left"><code>getId()</code>
+<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>equals(java.lang.Object obj)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Get the id used for this.</td>
+ </td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getName()</code>
+<td width="20%" align="right"><code>public int</code></td><td width="" align="left"><code>getId()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Get the variable name.</td>
+ Get the id used for this.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getType()</code>
+<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getName()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Get the type of this variable e.g. string, or node</td>
+ Get the variable name.</td>
</tr>
<tr valign="top">
<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getScope()</code>
@@ -18554,37 +39118,246 @@ extends java.lang.Object</pre>An abstract class that XSL processor implementatio
Get the scope of this variable - one of <code>LOCAL_SCOPE</code>, <code>TUNNEL_SCOPE</code> or <code>GLOBAL_SCOPE</code>.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getValue()</code>
+<td width="20%" align="right"><code>public int</code></td><td width="" align="left"><code>getSlotNumber()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Get the current value of this variable as a String.</td>
+ Get the slot number for this.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getValueFirstLine()</code>
+<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getType()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Get the first line of the value truncating to <code>MAXIMUM_VALUE_SIZE</code> where necessary.</td>
+ Get the type of this variable e.g. string, or node</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public int</code></td><td width="" align="left"><code>getSlotNumber()</code>
+<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getValue()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Get the slot number for this.</td>
+ Get the current value of this variable as a String.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public int</code></td><td width="" align="left"><code>hashCode()</code>
+<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getValueFirstLine()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- </td>
+ Get the first line of the value truncating to <code>MAXIMUM_VALUE_SIZE</code> where necessary.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>equals(java.lang.Object obj)</code>
+<td width="20%" align="right"><code>public int</code></td><td width="" align="left"><code>hashCode()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>BOOLEAN</h2>
+<p>
+<code>protected static java.lang.String <strong>BOOLEAN</strong></code>
+</p>
+<hr>
+<h2>GLOBAL_SCOPE</h2>
+<p>
+<code>public static java.lang.String <strong>GLOBAL_SCOPE</strong></code>
+</p>
+<table>
+<tr>
+<td>The constant denoting a global scope variable.</td>
+</tr>
+</table>
+<hr>
+<h2>LOCAL_SCOPE</h2>
+<p>
+<code>public static java.lang.String <strong>LOCAL_SCOPE</strong></code>
+</p>
+<table>
+<tr>
+<td>The constant denoting a local scope variable.</td>
+</tr>
+</table>
+<hr>
+<h2>MAXIMUM_VALUE_SIZE</h2>
+<p>
+<code>protected static int <strong>MAXIMUM_VALUE_SIZE</strong></code>
+</p>
+<hr>
+<h2>name</h2>
+<p>
+<code>protected java.lang.String <strong>name</strong></code>
+</p>
+<hr>
+<h2>NODESET</h2>
+<p>
+<code>protected static java.lang.String <strong>NODESET</strong></code>
+</p>
+<hr>
+<h2>NUMBER</h2>
+<p>
+<code>protected static java.lang.String <strong>NUMBER</strong></code>
+</p>
+<hr>
+<h2>OBJECT</h2>
+<p>
+<code>protected static java.lang.String <strong>OBJECT</strong></code>
+</p>
+<hr>
+<h2>scope</h2>
+<p>
+<code>protected java.lang.String <strong>scope</strong></code>
+</p>
+<hr>
+<h2>slotNumber</h2>
+<p>
+<code>protected int <strong>slotNumber</strong></code>
+</p>
+<hr>
+<h2>STRING</h2>
+<p>
+<code>protected static java.lang.String <strong>STRING</strong></code>
+</p>
+<hr>
+<h2>TUNNEL_SCOPE</h2>
+<p>
+<code>public static java.lang.String <strong>TUNNEL_SCOPE</strong></code>
+</p>
+<table>
+<tr>
+<td>The constant denoting a tunnel scope variable.</td>
+</tr>
+</table>
+<hr>
+<h2>UNKNOWN</h2>
+<p>
+<code>protected static java.lang.String <strong>UNKNOWN</strong></code>
+</p>
+<hr>
+<h2>UNRESOLVED</h2>
+<p>
+<code>protected static java.lang.String <strong>UNRESOLVED</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>Variable</h2>
+<p>
+<code>public <strong>Variable</strong>(java.lang.String name
+ ,
+ java.lang.String scope
+ ,
+ int slotNumber)</code>
+</p>
+<p>Create a new instance of this with the given name, scope and slot number.</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>equals</h2>
+<p>
+<code>public boolean <strong>equals</strong>(java.lang.Object obj)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>obj</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<hr>
+<h2>getId</h2>
+<p>
+<code>public int <strong>getId</strong>()</code>
+</p>
+<p>Get the id used for this.</p>
+<h3>Returns</h3>
+<p>
+<code>int</code> - the variable id</p>
+<hr>
+<h2>getName</h2>
+<p>
+<code>public java.lang.String <strong>getName</strong>()</code>
+</p>
+<p>Get the variable name.</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code> - the variable name</p>
+<hr>
+<h2>getScope</h2>
+<p>
+<code>public java.lang.String <strong>getScope</strong>()</code>
+</p>
+<p>Get the scope of this variable - one of <code>LOCAL_SCOPE</code>, <code>TUNNEL_SCOPE</code> or <code>GLOBAL_SCOPE</code>.</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code> - the variable scope</p>
+<hr>
+<h2>getSlotNumber</h2>
+<p>
+<code>public int <strong>getSlotNumber</strong>()</code>
+</p>
+<p>Get the slot number for this.</p>
+<h3>Returns</h3>
+<p>
+<code>int</code> - the slot number</p>
+<hr>
+<h2>getType</h2>
+<p>
+<code>public java.lang.String <strong>getType</strong>()</code>
+</p>
+<p>Get the type of this variable e.g. string, or node</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code> - the variable type</p>
+<hr>
+<h2>getValue</h2>
+<p>
+<code>public java.lang.String <strong>getValue</strong>()</code>
+</p>
+<p>Get the current value of this variable as a String.</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code> - the value of this</p>
+<hr>
+<h2>getValueFirstLine</h2>
+<p>
+<code>public java.lang.String <strong>getValueFirstLine</strong>()</code>
+</p>
+<p>Get the first line of the value truncating to <code>MAXIMUM_VALUE_SIZE</code> where necessary.</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code> - the first line of the value</p>
+<hr>
+<h2>hashCode</h2>
+<p>
+<code>public int <strong>hashCode</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>int</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.invoker</strong></font>
</p>
@@ -18605,9 +39378,9 @@ extends java.lang.Exception</pre>An exception thrown when configuration of an XS
</td>
</tr>
<tr>
-<td><code><strong>ConfigurationException(java.lang.String msg
+<td><code><strong>ConfigurationException</strong>(java.lang.String msg
,
- java.lang.Throwable t)</strong></code></td>
+ java.lang.Throwable t)</code></td>
</tr>
</table>
<br>
@@ -18619,6 +39392,23 @@ extends java.lang.Exception</pre>An exception thrown when configuration of an XS
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>ConfigurationException</h2>
+<p>
+<code>public <strong>ConfigurationException</strong>(java.lang.String msg
+ ,
+ java.lang.Throwable t)</code>
+</p>
+<p>Create the exception.</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.invoker</strong></font>
</p>
@@ -18646,12 +39436,6 @@ extends </pre>Interface used by the launched process to define the XSL transform
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setFeatures(java.util.Map features)</code>
-<br>
- &nbsp;&nbsp;&nbsp;&nbsp;
- Set the processor-specific features to use.</td>
-</tr>
-<tr valign="top">
<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>addStylesheet(java.net.URL stylesheet
,
java.util.Map parameters
@@ -18664,6 +39448,12 @@ extends </pre>Interface used by the launched process to define the XSL transform
Add a stylesheet to the pipeline (order is important).</td>
</tr>
<tr valign="top">
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setFeatures(java.util.Map features)</code>
+<br>
+ &nbsp;&nbsp;&nbsp;&nbsp;
+ Set the processor-specific features to use.</td>
+</tr>
+<tr valign="top">
<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>transform(java.net.URL source
,
javax.xml.transform.Result res)</code>
@@ -18673,6 +39463,66 @@ extends </pre>Interface used by the launched process to define the XSL transform
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>addStylesheet</h2>
+<p>
+<code>public void <strong>addStylesheet</strong>(java.net.URL stylesheet
+ ,
+ java.util.Map parameters
+ ,
+ java.util.Properties outputProperties
+ ,
+ javax.xml.transform.URIResolver resolver)</code>
+</p>
+<p>Add a stylesheet to the pipeline (order is important).</p>
+<h3>Parameters</h3>
+<p>
+<code>stylesheet</code> - the URL of the stylesheet to add</p>
+<p>
+<code>parameters</code> - the map of parameters for the stylesheet</p>
+<p>
+<code>outputProperties</code> - the output properties</p>
+<p>
+<code>resolver</code> - the <code>URIResolver</code> to use</p>
+<h3>Throws:</h3>
+<p>
+<code>javax.xml.transform.TransformerConfigurationException - if stylesheet could not be added</code>
+</p>
+<hr>
+<h2>setFeatures</h2>
+<p>
+<code>public void <strong>setFeatures</strong>(java.util.Map features)</code>
+</p>
+<p>Set the processor-specific features to use.</p>
+<h3>Parameters</h3>
+<p>
+<code>features</code> - a map of String v. String features</p>
+<hr>
+<h2>transform</h2>
+<p>
+<code>public void <strong>transform</strong>(java.net.URL source
+ ,
+ javax.xml.transform.Result res)</code>
+</p>
+<p>Perform the actual transformation.</p>
+<h3>Parameters</h3>
+<p>
+<code>source</code> - the URL of the XML source document</p>
+<p>
+<code>res</code> - the transformation result</p>
+<h3>Throws:</h3>
+<p>
+<code>org.eclipse.wst.xsl.invoker.TransformationException - if the transformation failed</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.invoker</strong></font>
</p>
@@ -18694,7 +39544,7 @@ extends java.lang.Object</pre>An implementation of <code>IProcessorInvoker</code
</td>
</tr>
<tr>
-<td><code><strong>JAXPSAXProcessorInvoker()</strong></code></td>
+<td><code><strong>JAXPSAXProcessorInvoker</strong>()</code></td>
</tr>
</table>
<br>
@@ -18705,43 +39555,43 @@ extends java.lang.Object</pre>An implementation of <code>IProcessorInvoker</code
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected org.xml.sax.XMLReader</code></td><td width="" align="left"><code>createReader()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>addStylesheet(java.net.URL stylesheet
+ ,
+ java.util.Map parameters
+ ,
+ java.util.Properties outputProperties
+ ,
+ javax.xml.transform.URIResolver resolver)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setFeatures(java.util.Map features)</code>
+<td width="20%" align="right"><code>protected javax.xml.transform.Transformer</code></td><td width="" align="left"><code>addStylesheet(javax.xml.transform.Source source
+ ,
+ javax.xml.transform.URIResolver resolver
+ ,
+ java.util.Map parameters
+ ,
+ java.util.Properties outputProperties)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected javax.xml.transform.TransformerFactory</code></td><td width="" align="left"><code>createTransformerFactory()</code>
+<td width="20%" align="right"><code>protected org.xml.sax.XMLReader</code></td><td width="" align="left"><code>createReader()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>addStylesheet(java.net.URL stylesheet
- ,
- java.util.Map parameters
- ,
- java.util.Properties outputProperties
- ,
- javax.xml.transform.URIResolver resolver)</code>
+<td width="20%" align="right"><code>protected javax.xml.transform.TransformerFactory</code></td><td width="" align="left"><code>createTransformerFactory()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected javax.xml.transform.Transformer</code></td><td width="" align="left"><code>addStylesheet(javax.xml.transform.Source source
- ,
- javax.xml.transform.URIResolver resolver
- ,
- java.util.Map parameters
- ,
- java.util.Properties outputProperties)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setFeatures(java.util.Map features)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@@ -18764,6 +39614,169 @@ extends java.lang.Object</pre>An implementation of <code>IProcessorInvoker</code
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>JAXPSAXProcessorInvoker</h2>
+<p>
+<code>public <strong>JAXPSAXProcessorInvoker</strong>()</code>
+</p>
+<p>Create a new instance of this.</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>addStylesheet</h2>
+<p>
+<code>public void <strong>addStylesheet</strong>(java.net.URL stylesheet
+ ,
+ java.util.Map parameters
+ ,
+ java.util.Properties outputProperties
+ ,
+ javax.xml.transform.URIResolver resolver)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>stylesheet</code>
+</p>
+<p>
+<code>parameters</code>
+</p>
+<p>
+<code>outputProperties</code>
+</p>
+<p>
+<code>resolver</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>javax.xml.transform.TransformerConfigurationException</code>
+</p>
+<hr>
+<h2>addStylesheet</h2>
+<p>
+<code>protected javax.xml.transform.Transformer <strong>addStylesheet</strong>(javax.xml.transform.Source source
+ ,
+ javax.xml.transform.URIResolver resolver
+ ,
+ java.util.Map parameters
+ ,
+ java.util.Properties outputProperties)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>source</code>
+</p>
+<p>
+<code>resolver</code>
+</p>
+<p>
+<code>parameters</code>
+</p>
+<p>
+<code>outputProperties</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>javax.xml.transform.Transformer</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>javax.xml.transform.TransformerConfigurationException</code>
+</p>
+<hr>
+<h2>createReader</h2>
+<p>
+<code>protected org.xml.sax.XMLReader <strong>createReader</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>org.xml.sax.XMLReader</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>org.xml.sax.SAXException</code>
+</p>
+<p>
+<code>javax.xml.parsers.ParserConfigurationException</code>
+</p>
+<hr>
+<h2>createTransformerFactory</h2>
+<p>
+<code>protected javax.xml.transform.TransformerFactory <strong>createTransformerFactory</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>javax.xml.transform.TransformerFactory</code>
+</p>
+<hr>
+<h2>setFeatures</h2>
+<p>
+<code>public void <strong>setFeatures</strong>(java.util.Map features)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>features</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>javax.xml.transform.TransformerFactoryConfigurationError</code>
+</p>
+<hr>
+<h2>transform</h2>
+<p>
+<code>public void <strong>transform</strong>(java.net.URL sourceURL
+ ,
+ javax.xml.transform.Result res)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>sourceURL</code>
+</p>
+<p>
+<code>res</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>org.eclipse.wst.xsl.invoker.TransformationException</code>
+</p>
+<hr>
+<h2>transform</h2>
+<p>
+<code>public void <strong>transform</strong>(org.xml.sax.InputSource inputsource
+ ,
+ javax.xml.transform.Result res)</code>
+</p>
+<p>Transform using an InputSource rather than a URL</p>
+<h3>Parameters</h3>
+<p>
+<code>inputsource</code> - the InputSource to use</p>
+<p>
+<code>res</code> - the Result</p>
+<h3>Throws:</h3>
+<p>
+<code>org.eclipse.wst.xsl.invoker.TransformationException - if an error occurred during transformation</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.invoker</strong></font>
</p>
@@ -18785,7 +39798,7 @@ extends java.lang.Object</pre>The class whose <code>main</code> method is called
</td>
</tr>
<tr>
-<td><code><strong>Main()</strong></code></td>
+<td><code><strong>Main</strong>()</code></td>
</tr>
</table>
<br>
@@ -18810,6 +39823,46 @@ extends java.lang.Object</pre>The class whose <code>main</code> method is called
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>Main</h2>
+<p>
+<code>public <strong>Main</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>main</h2>
+<p>
+<code>public void <strong>main</strong>(java.lang.String[] args)</code>
+</p>
+<p>The <code>main</code> method called when launching the transformation process.
+ There are 4 required arguments:
+ <ol>
+ <li>The class name of the <code>IProcessorInvoker</code> to use
+ <li>The launch file (serialized <code>PipelineDefinition</code>)
+ <li>The URL of the source XML document
+ <li>The file where output will be written
+ </ol></p>
+<h3>Parameters</h3>
+<p>
+<code>args</code> - the 4 required arguments</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.invoker</strong></font>
</p>
@@ -18837,6 +39890,27 @@ extends java.lang.Object</pre>Messages for the transformation.<p></p>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getString</h2>
+<p>
+<code>public java.lang.String <strong>getString</strong>(java.lang.String key)</code>
+</p>
+<p>Get a message for the given key.</p>
+<h3>Parameters</h3>
+<p>
+<code>key</code> - the message key</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code> - the message</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.invoker</strong></font>
</p>
@@ -18857,12 +39931,12 @@ extends java.lang.Exception</pre>Checked Exception for transformation errors.<p>
</td>
</tr>
<tr>
-<td><code><strong>TransformationException(java.lang.String message)</strong></code></td>
+<td><code><strong>TransformationException</strong>(java.lang.String message)</code></td>
</tr>
<tr>
-<td><code><strong>TransformationException(java.lang.String message
+<td><code><strong>TransformationException</strong>(java.lang.String message
,
- java.lang.Throwable cause)</strong></code></td>
+ java.lang.Throwable cause)</code></td>
</tr>
</table>
<br>
@@ -18874,6 +39948,29 @@ extends java.lang.Exception</pre>Checked Exception for transformation errors.<p>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>TransformationException</h2>
+<p>
+<code>public <strong>TransformationException</strong>(java.lang.String message)</code>
+</p>
+<p>Create a new instance of this with the given message.</p>
+<hr>
+<h2>TransformationException</h2>
+<p>
+<code>public <strong>TransformationException</strong>(java.lang.String message
+ ,
+ java.lang.Throwable cause)</code>
+</p>
+<p>Create a new instance of this with the given message and cause.</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.invoker.config</strong></font>
</p>
@@ -18894,12 +39991,12 @@ extends java.lang.Exception</pre>Checked Exception for object creation errors.<p
</td>
</tr>
<tr>
-<td><code><strong>CreationException(java.lang.String message)</strong></code></td>
+<td><code><strong>CreationException</strong>(java.lang.String message)</code></td>
</tr>
<tr>
-<td><code><strong>CreationException(java.lang.String message
+<td><code><strong>CreationException</strong>(java.lang.String message
,
- java.lang.Throwable cause)</strong></code></td>
+ java.lang.Throwable cause)</code></td>
</tr>
</table>
<br>
@@ -18911,6 +40008,29 @@ extends java.lang.Exception</pre>Checked Exception for object creation errors.<p
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>CreationException</h2>
+<p>
+<code>public <strong>CreationException</strong>(java.lang.String message)</code>
+</p>
+<p>Create a new instance of this with the given message.</p>
+<hr>
+<h2>CreationException</h2>
+<p>
+<code>public <strong>CreationException</strong>(java.lang.String message
+ ,
+ java.lang.Throwable cause)</code>
+</p>
+<p>Create a new instance of this with the given message and cause.</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.invoker.config</strong></font>
</p>
@@ -18938,6 +40058,27 @@ extends java.lang.Object</pre>Messages for the configuration.<p></p>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getString</h2>
+<p>
+<code>public java.lang.String <strong>getString</strong>(java.lang.String key)</code>
+</p>
+<p>Get a message for the given key.</p>
+<h3>Parameters</h3>
+<p>
+<code>key</code> - the message key</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code> - the message</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.invoker.config</strong></font>
</p>
@@ -18963,13 +40104,13 @@ extends java.lang.Object</pre>The definition of the transformation pipeline.
</td>
</tr>
<tr>
-<td><code><strong>PipelineDefinition()</strong></code></td>
+<td><code><strong>PipelineDefinition</strong>()</code></td>
</tr>
<tr>
-<td><code><strong>PipelineDefinition(java.io.File launchFile)</strong></code></td>
+<td><code><strong>PipelineDefinition</strong>(java.io.File launchFile)</code></td>
</tr>
<tr>
-<td><code><strong>PipelineDefinition(org.w3c.dom.Document doc)</strong></code></td>
+<td><code><strong>PipelineDefinition</strong>(org.w3c.dom.Document doc)</code></td>
</tr>
</table>
<br>
@@ -18980,28 +40121,28 @@ extends java.lang.Object</pre>The definition of the transformation pipeline.
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>configure(org.eclipse.wst.xsl.invoker.IProcessorInvoker invoker)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>addFeature(org.eclipse.wst.xsl.invoker.config.TypedValue feature)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Configure the invoker from this.</td>
+ Add a feature to this configuration</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.util.Set</code></td><td width="" align="left"><code>getFeatures()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>addTransformDef(org.eclipse.wst.xsl.invoker.config.TransformDefinition tdef)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Get the set of features defined.</td>
+ Add a transform definition to this.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>addFeature(org.eclipse.wst.xsl.invoker.config.TypedValue feature)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>configure(org.eclipse.wst.xsl.invoker.IProcessorInvoker invoker)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Add a feature to this configuration</td>
+ Configure the invoker from this.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>removeFeature(org.eclipse.wst.xsl.invoker.config.TypedValue feature)</code>
+<td width="20%" align="right"><code>public java.util.Set</code></td><td width="" align="left"><code>getFeatures()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Remove a feature from the set of features</td>
+ Get the set of features defined.</td>
</tr>
<tr valign="top">
<td width="20%" align="right"><code>public java.util.List</code></td><td width="" align="left"><code>getTransformDefs()</code>
@@ -19010,10 +40151,10 @@ extends java.lang.Object</pre>The definition of the transformation pipeline.
Get the list of <code>TransformDefinition</code>'s.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>addTransformDef(org.eclipse.wst.xsl.invoker.config.TransformDefinition tdef)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>removeFeature(org.eclipse.wst.xsl.invoker.config.TypedValue feature)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Add a transform definition to this.</td>
+ Remove a feature from the set of features</td>
</tr>
<tr valign="top">
<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>removeTransformDef(org.eclipse.wst.xsl.invoker.config.TransformDefinition tdef)</code>
@@ -19028,18 +40169,152 @@ extends java.lang.Object</pre>The definition of the transformation pipeline.
Set whether to use an XSL declaration embedded in the XML file</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>useEmbedded()</code>
+<td width="20%" align="right"><code>public org.w3c.dom.Document</code></td><td width="" align="left"><code>toXML()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Get whether to use an XSL declaration embedded in the XML file</td>
+ Serialize this to a DOM Document.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public org.w3c.dom.Document</code></td><td width="" align="left"><code>toXML()</code>
+<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>useEmbedded()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Serialize this to a DOM Document.</td>
+ Get whether to use an XSL declaration embedded in the XML file</td>
+</tr>
+</table>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
</tr>
</table>
+<h2>PipelineDefinition</h2>
+<p>
+<code>public <strong>PipelineDefinition</strong>()</code>
+</p>
+<p>Create a new empty instance of this.</p>
+<hr>
+<h2>PipelineDefinition</h2>
+<p>
+<code>public <strong>PipelineDefinition</strong>(java.io.File launchFile)</code>
+</p>
+<p>Create a new instance of this by reading the specified XML file.</p>
+<hr>
+<h2>PipelineDefinition</h2>
+<p>
+<code>public <strong>PipelineDefinition</strong>(org.w3c.dom.Document doc)</code>
+</p>
+<p>Create a new instance of this from the specified document</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>addFeature</h2>
+<p>
+<code>public void <strong>addFeature</strong>(org.eclipse.wst.xsl.invoker.config.TypedValue feature)</code>
+</p>
+<p>Add a feature to this configuration</p>
+<h3>Parameters</h3>
+<p>
+<code>feature</code> - the feature to add</p>
+<hr>
+<h2>addTransformDef</h2>
+<p>
+<code>public void <strong>addTransformDef</strong>(org.eclipse.wst.xsl.invoker.config.TransformDefinition tdef)</code>
+</p>
+<p>Add a transform definition to this.</p>
+<h3>Parameters</h3>
+<p>
+<code>tdef</code> - the transform definition to add</p>
+<hr>
+<h2>configure</h2>
+<p>
+<code>public void <strong>configure</strong>(org.eclipse.wst.xsl.invoker.IProcessorInvoker invoker)</code>
+</p>
+<p>Configure the invoker from this.</p>
+<h3>Parameters</h3>
+<p>
+<code>invoker</code> - the invoker to configure</p>
+<h3>Throws:</h3>
+<p>
+<code>org.eclipse.wst.xsl.invoker.ConfigurationException - if an exception occurs during configuration</code>
+</p>
+<hr>
+<h2>getFeatures</h2>
+<p>
+<code>public java.util.Set <strong>getFeatures</strong>()</code>
+</p>
+<p>Get the set of features defined.</p>
+<h3>Returns</h3>
+<p>
+<code>java.util.Set</code> - the set of features</p>
+<hr>
+<h2>getTransformDefs</h2>
+<p>
+<code>public java.util.List <strong>getTransformDefs</strong>()</code>
+</p>
+<p>Get the list of <code>TransformDefinition</code>'s.</p>
+<h3>Returns</h3>
+<p>
+<code>java.util.List</code> - the list of transform definitions</p>
+<hr>
+<h2>removeFeature</h2>
+<p>
+<code>public void <strong>removeFeature</strong>(org.eclipse.wst.xsl.invoker.config.TypedValue feature)</code>
+</p>
+<p>Remove a feature from the set of features</p>
+<h3>Parameters</h3>
+<p>
+<code>feature</code> - the feature to remove</p>
+<hr>
+<h2>removeTransformDef</h2>
+<p>
+<code>public void <strong>removeTransformDef</strong>(org.eclipse.wst.xsl.invoker.config.TransformDefinition tdef)</code>
+</p>
+<p>Remove a transform definition from this.</p>
+<h3>Parameters</h3>
+<p>
+<code>tdef</code> - the transform definition to remove</p>
+<hr>
+<h2>setUseEmbedded</h2>
+<p>
+<code>public void <strong>setUseEmbedded</strong>(boolean embedded)</code>
+</p>
+<p>Set whether to use an XSL declaration embedded in the XML file</p>
+<h3>Parameters</h3>
+<p>
+<code>embedded</code> - true to use embedded</p>
+<hr>
+<h2>toXML</h2>
+<p>
+<code>public org.w3c.dom.Document <strong>toXML</strong>()</code>
+</p>
+<p>Serialize this to a DOM Document.</p>
+<h3>Returns</h3>
+<p>
+<code>org.w3c.dom.Document</code> - the serialized document</p>
+<h3>Throws:</h3>
+<p>
+<code>javax.xml.parsers.ParserConfigurationException - if a problem occurs during serialization</code>
+</p>
+<hr>
+<h2>useEmbedded</h2>
+<p>
+<code>public boolean <strong>useEmbedded</strong>()</code>
+</p>
+<p>Get whether to use an XSL declaration embedded in the XML file</p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code> - true if embedded</p>
<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.invoker.config</strong></font>
@@ -19061,7 +40336,7 @@ extends java.lang.Object</pre>A definition of a particular step in the transform
</td>
</tr>
<tr>
-<td><code><strong>TransformDefinition()</strong></code></td>
+<td><code><strong>TransformDefinition</strong>()</code></td>
</tr>
</table>
<br>
@@ -19072,93 +40347,257 @@ extends java.lang.Object</pre>A definition of a particular step in the transform
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.util.Map</code></td><td width="" align="left"><code>getParametersAsMap()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>addParameter(org.eclipse.wst.xsl.invoker.config.TypedValue parameter)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Get the parameters as a map of name (<code>String</code>) v. value <code>TypedValue</code>.</td>
+ Add a parameter to the set of parameters</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.util.Set</code></td><td width="" align="left"><code>getParameters()</code>
+<td width="20%" align="right"><code>public org.w3c.dom.Element</code></td><td width="" align="left"><code>asXML(org.w3c.dom.Document doc)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- The set of parameters</td>
+ Serialize this to a Document fragment.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>addParameter(org.eclipse.wst.xsl.invoker.config.TypedValue parameter)</code>
+<td width="20%" align="right"><code>public static org.eclipse.wst.xsl.invoker.config.TransformDefinition</code></td><td width="" align="left"><code>fromXML(org.w3c.dom.Element transformEl)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Add a parameter to the set of parameters</td>
+ Create a new instance of this from its serialized form.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>removeParameter(org.eclipse.wst.xsl.invoker.config.TypedValue parameter)</code>
+<td width="20%" align="right"><code>public java.util.Properties</code></td><td width="" align="left"><code>getOutputProperties()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Remove a parameter.</td>
+ Get the output properties for this.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.util.Properties</code></td><td width="" align="left"><code>getOutputProperties()</code>
+<td width="20%" align="right"><code>public java.util.Set</code></td><td width="" align="left"><code>getParameters()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Get the output properties for this.</td>
+ The set of parameters</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setOutputProperties(java.util.Properties outputProperties)</code>
+<td width="20%" align="right"><code>public java.util.Map</code></td><td width="" align="left"><code>getParametersAsMap()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Set the output properties for this.</td>
+ Get the parameters as a map of name (<code>String</code>) v. value <code>TypedValue</code>.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setOutputProperty(java.lang.String name
- ,
- java.lang.String value)</code>
+<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getResolverClass()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Set the value of a specific output property.</td>
+ Get the name of the <code>URIResolver</code> class to use.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>removeOutputProperty(java.lang.String name)</code>
+<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getStylesheetURL()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Remove an output property.</td>
+ Get the URL of the stylesheet.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getResolverClass()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>removeOutputProperty(java.lang.String name)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Get the name of the <code>URIResolver</code> class to use.</td>
+ Remove an output property.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setResolverClass(java.lang.String resolver)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>removeParameter(org.eclipse.wst.xsl.invoker.config.TypedValue parameter)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Set the name of the <code>URIResolver</code> class to use.</td>
+ Remove a parameter.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getStylesheetURL()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setOutputProperties(java.util.Properties outputProperties)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Get the URL of the stylesheet.</td>
+ Set the output properties for this.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setStylesheetURL(java.lang.String stylesheet)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setOutputProperty(java.lang.String name
+ ,
+ java.lang.String value)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Set the URL of the stylesheet.</td>
+ Set the value of a specific output property.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public org.w3c.dom.Element</code></td><td width="" align="left"><code>asXML(org.w3c.dom.Document doc)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setResolverClass(java.lang.String resolver)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Serialize this to a Document fragment.</td>
+ Set the name of the <code>URIResolver</code> class to use.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static org.eclipse.wst.xsl.invoker.config.TransformDefinition</code></td><td width="" align="left"><code>fromXML(org.w3c.dom.Element transformEl)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setStylesheetURL(java.lang.String stylesheet)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Create a new instance of this from its serialized form.</td>
+ Set the URL of the stylesheet.</td>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>TransformDefinition</h2>
+<p>
+<code>public <strong>TransformDefinition</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>addParameter</h2>
+<p>
+<code>public void <strong>addParameter</strong>(org.eclipse.wst.xsl.invoker.config.TypedValue parameter)</code>
+</p>
+<p>Add a parameter to the set of parameters</p>
+<h3>Parameters</h3>
+<p>
+<code>parameter</code> - the parameter to add</p>
+<hr>
+<h2>asXML</h2>
+<p>
+<code>public org.w3c.dom.Element <strong>asXML</strong>(org.w3c.dom.Document doc)</code>
+</p>
+<p>Serialize this to a Document fragment.</p>
+<h3>Parameters</h3>
+<p>
+<code>doc</code> - the document to attach to</p>
+<h3>Returns</h3>
+<p>
+<code>org.w3c.dom.Element</code> - the root element of the fragment</p>
+<hr>
+<h2>fromXML</h2>
+<p>
+<code>public org.eclipse.wst.xsl.invoker.config.TransformDefinition <strong>fromXML</strong>(org.w3c.dom.Element transformEl)</code>
+</p>
+<p>Create a new instance of this from its serialized form.</p>
+<h3>Parameters</h3>
+<p>
+<code>transformEl</code> - the element to create this from</p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.invoker.config.TransformDefinition</code> - a new instance of this</p>
+<hr>
+<h2>getOutputProperties</h2>
+<p>
+<code>public java.util.Properties <strong>getOutputProperties</strong>()</code>
+</p>
+<p>Get the output properties for this.</p>
+<h3>Returns</h3>
+<p>
+<code>java.util.Properties</code> - the output properties</p>
+<hr>
+<h2>getParameters</h2>
+<p>
+<code>public java.util.Set <strong>getParameters</strong>()</code>
+</p>
+<p>The set of parameters</p>
+<h3>Returns</h3>
+<p>
+<code>java.util.Set</code> - a set of <code>TypedValue</code>'s</p>
+<hr>
+<h2>getParametersAsMap</h2>
+<p>
+<code>public java.util.Map <strong>getParametersAsMap</strong>()</code>
+</p>
+<p>Get the parameters as a map of name (<code>String</code>) v. value <code>TypedValue</code>.</p>
+<h3>Returns</h3>
+<p>
+<code>java.util.Map</code> - a map of names and values</p>
+<h3>Throws:</h3>
+<p>
+<code>org.eclipse.wst.xsl.invoker.config.CreationException - if an exception occurred during object creation</code>
+</p>
+<hr>
+<h2>getResolverClass</h2>
+<p>
+<code>public java.lang.String <strong>getResolverClass</strong>()</code>
+</p>
+<p>Get the name of the <code>URIResolver</code> class to use.</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code> - the resolver's class name</p>
+<hr>
+<h2>getStylesheetURL</h2>
+<p>
+<code>public java.lang.String <strong>getStylesheetURL</strong>()</code>
+</p>
+<p>Get the URL of the stylesheet.</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code> - the stylesheet URL</p>
+<hr>
+<h2>removeOutputProperty</h2>
+<p>
+<code>public void <strong>removeOutputProperty</strong>(java.lang.String name)</code>
+</p>
+<p>Remove an output property.</p>
+<h3>Parameters</h3>
+<p>
+<code>name</code> - the output property to remove</p>
+<hr>
+<h2>removeParameter</h2>
+<p>
+<code>public void <strong>removeParameter</strong>(org.eclipse.wst.xsl.invoker.config.TypedValue parameter)</code>
+</p>
+<p>Remove a parameter.</p>
+<h3>Parameters</h3>
+<p>
+<code>parameter</code> - the parameter to remove</p>
+<hr>
+<h2>setOutputProperties</h2>
+<p>
+<code>public void <strong>setOutputProperties</strong>(java.util.Properties outputProperties)</code>
+</p>
+<p>Set the output properties for this.</p>
+<h3>Parameters</h3>
+<p>
+<code>outputProperties</code> - the output properties to set</p>
+<hr>
+<h2>setOutputProperty</h2>
+<p>
+<code>public void <strong>setOutputProperty</strong>(java.lang.String name
+ ,
+ java.lang.String value)</code>
+</p>
+<p>Set the value of a specific output property.</p>
+<h3>Parameters</h3>
+<p>
+<code>name</code> - the output property</p>
+<p>
+<code>value</code> - the value</p>
+<hr>
+<h2>setResolverClass</h2>
+<p>
+<code>public void <strong>setResolverClass</strong>(java.lang.String resolver)</code>
+</p>
+<p>Set the name of the <code>URIResolver</code> class to use.</p>
+<h3>Parameters</h3>
+<p>
+<code>resolver</code> - the resolver's class name</p>
+<hr>
+<h2>setStylesheetURL</h2>
+<p>
+<code>public void <strong>setStylesheetURL</strong>(java.lang.String stylesheet)</code>
+</p>
+<p>Set the URL of the stylesheet.</p>
+<h3>Parameters</h3>
+<p>
+<code>stylesheet</code> - the stylesheet URL</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.invoker.config</strong></font>
</p>
@@ -19179,13 +40618,13 @@ extends java.lang.Object</pre>A value that is to be instantiated from a particul
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>package-private java.lang.String</code></td><td width="80%" align="left"><code>uri</code>
+<td width="20%" align="right"><code>package-private java.lang.String</code></td><td width="80%" align="left"><code>type</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>package-private java.lang.String</code></td><td width="80%" align="left"><code>type</code>
+<td width="20%" align="right"><code>package-private java.lang.String</code></td><td width="80%" align="left"><code>uri</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@@ -19205,11 +40644,11 @@ extends java.lang.Object</pre>A value that is to be instantiated from a particul
</td>
</tr>
<tr>
-<td><code><strong>TypedValue(java.lang.String uri
+<td><code><strong>TypedValue</strong>(java.lang.String uri
,
java.lang.String type
,
- java.lang.String value)</strong></code></td>
+ java.lang.String value)</code></td>
</tr>
</table>
<br>
@@ -19227,6 +40666,71 @@ extends java.lang.Object</pre>A value that is to be instantiated from a particul
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>type</h2>
+<p>
+<code>package-private java.lang.String <strong>type</strong></code>
+</p>
+<hr>
+<h2>uri</h2>
+<p>
+<code>package-private java.lang.String <strong>uri</strong></code>
+</p>
+<hr>
+<h2>value</h2>
+<p>
+<code>package-private java.lang.String <strong>value</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>TypedValue</h2>
+<p>
+<code>public <strong>TypedValue</strong>(java.lang.String uri
+ ,
+ java.lang.String type
+ ,
+ java.lang.String value)</code>
+</p>
+<p>Create a new instance of this from the given information.</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>createValue</h2>
+<p>
+<code>public java.lang.Object <strong>createValue</strong>()</code>
+</p>
+<p>Create the type of object defined by this.</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.Object</code> - the value</p>
+<h3>Throws:</h3>
+<p>
+<code>org.eclipse.wst.xsl.invoker.config.CreationException - if a problem occurred</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.launching</strong></font>
</p>
@@ -19247,7 +40751,7 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr>
-<td><code><strong>DebuggerDescriptor(java.lang.String id
+<td><code><strong>DebuggerDescriptor</strong>(java.lang.String id
,
java.lang.String bundleId
,
@@ -19257,7 +40761,7 @@ extends java.lang.Object</pre>
,
java.lang.String name
,
- java.lang.String processorTypeId)</strong></code></td>
+ java.lang.String processorTypeId)</code></td>
</tr>
</table>
<br>
@@ -19299,6 +40803,90 @@ extends java.lang.Object</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>DebuggerDescriptor</h2>
+<p>
+<code>public <strong>DebuggerDescriptor</strong>(java.lang.String id
+ ,
+ java.lang.String bundleId
+ ,
+ java.lang.String className
+ ,
+ java.lang.String[] classpath
+ ,
+ java.lang.String name
+ ,
+ java.lang.String processorTypeId)</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getClassName</h2>
+<p>
+<code>public java.lang.String <strong>getClassName</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
+<h2>getClassPath</h2>
+<p>
+<code>public java.lang.String[] <strong>getClassPath</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String[]</code>
+</p>
+<hr>
+<h2>getId</h2>
+<p>
+<code>public java.lang.String <strong>getId</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
+<h2>getName</h2>
+<p>
+<code>public java.lang.String <strong>getName</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
+<h2>getProcessorType</h2>
+<p>
+<code>public org.eclipse.wst.xsl.launching.IProcessorType <strong>getProcessorType</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.launching.IProcessorType</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.launching</strong></font>
</p>
@@ -19319,11 +40907,11 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr>
-<td><code><strong>Feature(java.lang.String uri
+<td><code><strong>Feature</strong>(java.lang.String uri
,
java.lang.String type
,
- java.lang.String description)</strong></code></td>
+ java.lang.String description)</code></td>
</tr>
</table>
<br>
@@ -19334,37 +40922,123 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getDescription()</code>
+<td width="20%" align="right"><code>public int</code></td><td width="" align="left"><code>compareTo(java.lang.Object o)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getType()</code>
+<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getDescription()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getURI()</code>
+<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getType()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public IStatus</code></td><td width="" align="left"><code>validateValue(java.lang.String value)</code>
+<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getURI()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public int</code></td><td width="" align="left"><code>compareTo(java.lang.Object o)</code>
+<td width="20%" align="right"><code>public IStatus</code></td><td width="" align="left"><code>validateValue(java.lang.String value)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>Feature</h2>
+<p>
+<code>public <strong>Feature</strong>(java.lang.String uri
+ ,
+ java.lang.String type
+ ,
+ java.lang.String description)</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>compareTo</h2>
+<p>
+<code>public int <strong>compareTo</strong>(java.lang.Object o)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>o</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>int</code>
+</p>
+<hr>
+<h2>getDescription</h2>
+<p>
+<code>public java.lang.String <strong>getDescription</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
+<h2>getType</h2>
+<p>
+<code>public java.lang.String <strong>getType</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
+<h2>getURI</h2>
+<p>
+<code>public java.lang.String <strong>getURI</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
+<h2>validateValue</h2>
+<p>
+<code>public IStatus <strong>validateValue</strong>(java.lang.String value)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>value</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>IStatus</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.launching</strong></font>
</p>
@@ -19385,7 +41059,7 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr>
-<td><code><strong>FeaturePreferences()</strong></code></td>
+<td><code><strong>FeaturePreferences</strong>()</code></td>
</tr>
</table>
<br>
@@ -19396,31 +41070,117 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.util.Map</code></td><td width="" align="left"><code>getFeaturesValues(java.lang.String typeId)</code>
+<td width="20%" align="right"><code>public static org.eclipse.wst.xsl.internal.launching.FeaturePreferences</code></td><td width="" align="left"><code>fromXML(java.io.InputStream inputStream)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setTypeFeatures(java.util.Map typeFeatures)</code>
+<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getAsXML()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getAsXML()</code>
+<td width="20%" align="right"><code>public java.util.Map</code></td><td width="" align="left"><code>getFeaturesValues(java.lang.String typeId)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static org.eclipse.wst.xsl.internal.launching.FeaturePreferences</code></td><td width="" align="left"><code>fromXML(java.io.InputStream inputStream)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setTypeFeatures(java.util.Map typeFeatures)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>FeaturePreferences</h2>
+<p>
+<code>public <strong>FeaturePreferences</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>fromXML</h2>
+<p>
+<code>public org.eclipse.wst.xsl.internal.launching.FeaturePreferences <strong>fromXML</strong>(java.io.InputStream inputStream)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>inputStream</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.internal.launching.FeaturePreferences</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>CoreException</code>
+</p>
+<hr>
+<h2>getAsXML</h2>
+<p>
+<code>public java.lang.String <strong>getAsXML</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>javax.xml.parsers.ParserConfigurationException</code>
+</p>
+<p>
+<code>java.io.IOException</code>
+</p>
+<p>
+<code>javax.xml.transform.TransformerException</code>
+</p>
+<hr>
+<h2>getFeaturesValues</h2>
+<p>
+<code>public java.util.Map <strong>getFeaturesValues</strong>(java.lang.String typeId)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>typeId</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>java.util.Map</code>
+</p>
+<hr>
+<h2>setTypeFeatures</h2>
+<p>
+<code>public void <strong>setTypeFeatures</strong>(java.util.Map typeFeatures)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>typeFeatures</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.launching</strong></font>
</p>
@@ -19454,7 +41214,7 @@ extends Plugin</pre>The activator class controls the plug-in life cycle<hr>
</td>
</tr>
<tr>
-<td><code><strong>LaunchingPlugin()</strong></code></td>
+<td><code><strong>LaunchingPlugin</strong>()</code></td>
</tr>
</table>
<br>
@@ -19465,31 +41225,116 @@ extends Plugin</pre>The activator class controls the plug-in life cycle<hr>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>start(BundleContext context)</code>
+<td width="20%" align="right"><code>public static org.eclipse.wst.xsl.internal.launching.LaunchingPlugin</code></td><td width="" align="left"><code>getDefault()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- </td>
+ Returns the shared instance</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>stop(BundleContext context)</code>
+<td width="20%" align="right"><code>public static void</code></td><td width="" align="left"><code>log(java.lang.Exception e)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static org.eclipse.wst.xsl.internal.launching.LaunchingPlugin</code></td><td width="" align="left"><code>getDefault()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>start(BundleContext context)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Returns the shared instance</td>
+ </td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static void</code></td><td width="" align="left"><code>log(java.lang.Exception e)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>stop(BundleContext context)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>PLUGIN_ID</h2>
+<p>
+<code>public static java.lang.String <strong>PLUGIN_ID</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>LaunchingPlugin</h2>
+<p>
+<code>public <strong>LaunchingPlugin</strong>()</code>
+</p>
+<p>The constructor</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getDefault</h2>
+<p>
+<code>public org.eclipse.wst.xsl.internal.launching.LaunchingPlugin <strong>getDefault</strong>()</code>
+</p>
+<p>Returns the shared instance</p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.internal.launching.LaunchingPlugin</code> - the shared instance</p>
+<hr>
+<h2>log</h2>
+<p>
+<code>public void <strong>log</strong>(java.lang.Exception e)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>e</code>
+</p>
+<hr>
+<h2>start</h2>
+<p>
+<code>public void <strong>start</strong>(BundleContext context)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>context</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>java.lang.Exception</code>
+</p>
+<hr>
+<h2>stop</h2>
+<p>
+<code>public void <strong>stop</strong>(BundleContext context)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>context</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>java.lang.Exception</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.launching</strong></font>
</p>
@@ -19517,6 +41362,29 @@ extends java.lang.Object</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getString</h2>
+<p>
+<code>public java.lang.String <strong>getString</strong>(java.lang.String key)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>key</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.launching</strong></font>
</p>
@@ -19537,9 +41405,9 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr>
-<td><code><strong>OutputProperty(java.lang.String key
+<td><code><strong>OutputProperty</strong>(java.lang.String key
,
- java.lang.String desc)</strong></code></td>
+ java.lang.String desc)</code></td>
</tr>
</table>
<br>
@@ -19563,6 +41431,52 @@ extends java.lang.Object</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>OutputProperty</h2>
+<p>
+<code>public <strong>OutputProperty</strong>(java.lang.String key
+ ,
+ java.lang.String desc)</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getDescription</h2>
+<p>
+<code>public java.lang.String <strong>getDescription</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
+<h2>getURI</h2>
+<p>
+<code>public java.lang.String <strong>getURI</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.launching</strong></font>
</p>
@@ -19583,7 +41497,7 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr>
-<td><code><strong>OutputPropertyPreferences()</strong></code></td>
+<td><code><strong>OutputPropertyPreferences</strong>()</code></td>
</tr>
</table>
<br>
@@ -19594,33 +41508,124 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.util.Properties</code></td><td width="" align="left"><code>getOutputPropertyValues(java.lang.String typeId)</code>
+<td width="20%" align="right"><code>public static org.eclipse.wst.xsl.internal.launching.OutputPropertyPreferences</code></td><td width="" align="left"><code>fromXML(java.io.InputStream inputStream)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setOutputPropertyValues(java.lang.String typeId
- ,
- java.util.Properties properties)</code>
+<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getAsXML()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getAsXML()</code>
+<td width="20%" align="right"><code>public java.util.Properties</code></td><td width="" align="left"><code>getOutputPropertyValues(java.lang.String typeId)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static org.eclipse.wst.xsl.internal.launching.OutputPropertyPreferences</code></td><td width="" align="left"><code>fromXML(java.io.InputStream inputStream)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setOutputPropertyValues(java.lang.String typeId
+ ,
+ java.util.Properties properties)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>OutputPropertyPreferences</h2>
+<p>
+<code>public <strong>OutputPropertyPreferences</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>fromXML</h2>
+<p>
+<code>public org.eclipse.wst.xsl.internal.launching.OutputPropertyPreferences <strong>fromXML</strong>(java.io.InputStream inputStream)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>inputStream</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.internal.launching.OutputPropertyPreferences</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>CoreException</code>
+</p>
+<hr>
+<h2>getAsXML</h2>
+<p>
+<code>public java.lang.String <strong>getAsXML</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>javax.xml.parsers.ParserConfigurationException</code>
+</p>
+<p>
+<code>java.io.IOException</code>
+</p>
+<p>
+<code>javax.xml.transform.TransformerException</code>
+</p>
+<hr>
+<h2>getOutputPropertyValues</h2>
+<p>
+<code>public java.util.Properties <strong>getOutputPropertyValues</strong>(java.lang.String typeId)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>typeId</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>java.util.Properties</code>
+</p>
+<hr>
+<h2>setOutputPropertyValues</h2>
+<p>
+<code>public void <strong>setOutputPropertyValues</strong>(java.lang.String typeId
+ ,
+ java.util.Properties properties)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>typeId</code>
+</p>
+<p>
+<code>properties</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.launching</strong></font>
</p>
@@ -19641,9 +41646,9 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr>
-<td><code><strong>PluginProcessorJar(java.lang.String pluginId
+<td><code><strong>PluginProcessorJar</strong>(java.lang.String pluginId
,
- IPath path)</strong></code></td>
+ IPath path)</code></td>
</tr>
</table>
<br>
@@ -19673,6 +41678,62 @@ extends java.lang.Object</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>PluginProcessorJar</h2>
+<p>
+<code>public <strong>PluginProcessorJar</strong>(java.lang.String pluginId
+ ,
+ IPath path)</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>asURL</h2>
+<p>
+<code>public java.net.URL <strong>asURL</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.net.URL</code>
+</p>
+<hr>
+<h2>getPath</h2>
+<p>
+<code>public IPath <strong>getPath</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>IPath</code>
+</p>
+<hr>
+<h2>toString</h2>
+<p>
+<code>public java.lang.String <strong>toString</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.launching</strong></font>
</p>
@@ -19692,7 +41753,7 @@ extends AbstractPreferenceInitializer</pre>Class used to initialize default pref
</td>
</tr>
<tr>
-<td><code><strong>PreferenceInitializer()</strong></code></td>
+<td><code><strong>PreferenceInitializer</strong>()</code></td>
</tr>
</table>
<br>
@@ -19710,6 +41771,36 @@ extends AbstractPreferenceInitializer</pre>Class used to initialize default pref
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>PreferenceInitializer</h2>
+<p>
+<code>public <strong>PreferenceInitializer</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>initializeDefaultPreferences</h2>
+<p>
+<code>public void <strong>initializeDefaultPreferences</strong>()</code>
+</p>
+<p></p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.launching</strong></font>
</p>
@@ -19730,7 +41821,7 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr>
-<td><code><strong>PreferenceUtil()</strong></code></td>
+<td><code><strong>PreferenceUtil</strong>()</code></td>
</tr>
</table>
<br>
@@ -19747,21 +41838,21 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static org.w3c.dom.Document</code></td><td width="" align="left"><code>getDocument()</code>
+<td width="20%" align="right"><code>public static org.w3c.dom.Element[]</code></td><td width="" align="left"><code>getChildElements(org.w3c.dom.Element parent
+ ,
+ java.lang.String name)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="" align="left"><code>serializeDocument(org.w3c.dom.Document doc)</code>
+<td width="20%" align="right"><code>public static org.w3c.dom.Document</code></td><td width="" align="left"><code>getDocument()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static org.w3c.dom.Element[]</code></td><td width="" align="left"><code>getChildElements(org.w3c.dom.Element parent
- ,
- java.lang.String name)</code>
+<td width="20%" align="right"><code>public static org.w3c.dom.Document</code></td><td width="" align="left"><code>getDocument(java.io.InputStream stream)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@@ -19773,13 +41864,137 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static org.w3c.dom.Document</code></td><td width="" align="left"><code>getDocument(java.io.InputStream stream)</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="" align="left"><code>serializeDocument(org.w3c.dom.Document doc)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>PreferenceUtil</h2>
+<p>
+<code>public <strong>PreferenceUtil</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>createCoreException</h2>
+<p>
+<code>public void <strong>createCoreException</strong>(java.lang.Throwable e)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>e</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>CoreException</code>
+</p>
+<hr>
+<h2>getChildElements</h2>
+<p>
+<code>public org.w3c.dom.Element[] <strong>getChildElements</strong>(org.w3c.dom.Element parent
+ ,
+ java.lang.String name)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>parent</code>
+</p>
+<p>
+<code>name</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>org.w3c.dom.Element[]</code>
+</p>
+<hr>
+<h2>getDocument</h2>
+<p>
+<code>public org.w3c.dom.Document <strong>getDocument</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>org.w3c.dom.Document</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>javax.xml.parsers.ParserConfigurationException</code>
+</p>
+<hr>
+<h2>getDocument</h2>
+<p>
+<code>public org.w3c.dom.Document <strong>getDocument</strong>(java.io.InputStream stream)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>stream</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>org.w3c.dom.Document</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>CoreException</code>
+</p>
+<hr>
+<h2>getNodeText</h2>
+<p>
+<code>public java.lang.String <strong>getNodeText</strong>(org.w3c.dom.Node node)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>node</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
+<h2>serializeDocument</h2>
+<p>
+<code>public java.lang.String <strong>serializeDocument</strong>(org.w3c.dom.Document doc)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>doc</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>java.io.IOException</code>
+</p>
+<p>
+<code>javax.xml.transform.TransformerException</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.launching</strong></font>
</p>
@@ -19800,13 +42015,13 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr>
-<td><code><strong>ProcessorInvokerDescriptor(java.lang.String id
+<td><code><strong>ProcessorInvokerDescriptor</strong>(java.lang.String id
,
java.lang.String bundleId
,
java.lang.String invokerClass
,
- java.lang.String[] classpath)</strong></code></td>
+ java.lang.String[] classpath)</code></td>
</tr>
</table>
<br>
@@ -19817,12 +42032,6 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.lang.String[]</code></td><td width="" align="left"><code>getClasspathEntries()</code>
-<br>
- &nbsp;&nbsp;&nbsp;&nbsp;
- </td>
-</tr>
-<tr valign="top">
<td width="20%" align="right"><code>public static java.lang.String[]</code></td><td width="" align="left"><code>createEntries(java.lang.String bundleId
,
java.lang.String[] classpath)</code>
@@ -19831,10 +42040,10 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getInvokerClassName()</code>
+<td width="20%" align="right"><code>public java.lang.String[]</code></td><td width="" align="left"><code>getClasspathEntries()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- The name of the class that implements IProcessorInvoker</td>
+ </td>
</tr>
<tr valign="top">
<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getId()</code>
@@ -19842,7 +42051,92 @@ extends java.lang.Object</pre>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
+<tr valign="top">
+<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getInvokerClassName()</code>
+<br>
+ &nbsp;&nbsp;&nbsp;&nbsp;
+ The name of the class that implements IProcessorInvoker</td>
+</tr>
+</table>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>ProcessorInvokerDescriptor</h2>
+<p>
+<code>public <strong>ProcessorInvokerDescriptor</strong>(java.lang.String id
+ ,
+ java.lang.String bundleId
+ ,
+ java.lang.String invokerClass
+ ,
+ java.lang.String[] classpath)</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
</table>
+<h2>createEntries</h2>
+<p>
+<code>public java.lang.String[] <strong>createEntries</strong>(java.lang.String bundleId
+ ,
+ java.lang.String[] classpath)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>bundleId</code>
+</p>
+<p>
+<code>classpath</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String[]</code>
+</p>
+<hr>
+<h2>getClasspathEntries</h2>
+<p>
+<code>public java.lang.String[] <strong>getClasspathEntries</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String[]</code>
+</p>
+<hr>
+<h2>getId</h2>
+<p>
+<code>public java.lang.String <strong>getId</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
+<h2>getInvokerClassName</h2>
+<p>
+<code>public java.lang.String <strong>getInvokerClassName</strong>()</code>
+</p>
+<p>The name of the class that implements IProcessorInvoker</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.launching</strong></font>
@@ -19864,7 +42158,7 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr>
-<td><code><strong>ProcessorJar(IPath path)</strong></code></td>
+<td><code><strong>ProcessorJar</strong>(IPath path)</code></td>
</tr>
</table>
<br>
@@ -19894,6 +42188,60 @@ extends java.lang.Object</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>ProcessorJar</h2>
+<p>
+<code>public <strong>ProcessorJar</strong>(IPath path)</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>asURL</h2>
+<p>
+<code>public java.net.URL <strong>asURL</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.net.URL</code>
+</p>
+<hr>
+<h2>getPath</h2>
+<p>
+<code>public IPath <strong>getPath</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>IPath</code>
+</p>
+<hr>
+<h2>toString</h2>
+<p>
+<code>public java.lang.String <strong>toString</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.launching</strong></font>
</p>
@@ -19914,7 +42262,7 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr>
-<td><code><strong>ProcessorPreferences()</strong></code></td>
+<td><code><strong>ProcessorPreferences</strong>()</code></td>
</tr>
</table>
<br>
@@ -19925,13 +42273,13 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setProcessors(java.util.List processors)</code>
+<td width="20%" align="right"><code>public static org.eclipse.wst.xsl.internal.launching.ProcessorPreferences</code></td><td width="" align="left"><code>fromXML(java.io.InputStream inputStream)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.util.List</code></td><td width="" align="left"><code>getProcessors()</code>
+<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getAsXML()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@@ -19943,25 +42291,127 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setDefaultProcessorId(java.lang.String defaultProcessorId)</code>
+<td width="20%" align="right"><code>public java.util.List</code></td><td width="" align="left"><code>getProcessors()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getAsXML()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setDefaultProcessorId(java.lang.String defaultProcessorId)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static org.eclipse.wst.xsl.internal.launching.ProcessorPreferences</code></td><td width="" align="left"><code>fromXML(java.io.InputStream inputStream)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setProcessors(java.util.List processors)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>ProcessorPreferences</h2>
+<p>
+<code>public <strong>ProcessorPreferences</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>fromXML</h2>
+<p>
+<code>public org.eclipse.wst.xsl.internal.launching.ProcessorPreferences <strong>fromXML</strong>(java.io.InputStream inputStream)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>inputStream</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.internal.launching.ProcessorPreferences</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>CoreException</code>
+</p>
+<hr>
+<h2>getAsXML</h2>
+<p>
+<code>public java.lang.String <strong>getAsXML</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>javax.xml.parsers.ParserConfigurationException</code>
+</p>
+<p>
+<code>java.io.IOException</code>
+</p>
+<p>
+<code>javax.xml.transform.TransformerException</code>
+</p>
+<hr>
+<h2>getDefaultProcessorId</h2>
+<p>
+<code>public java.lang.String <strong>getDefaultProcessorId</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
+<h2>getProcessors</h2>
+<p>
+<code>public java.util.List <strong>getProcessors</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.util.List</code>
+</p>
+<hr>
+<h2>setDefaultProcessorId</h2>
+<p>
+<code>public void <strong>setDefaultProcessorId</strong>(java.lang.String defaultProcessorId)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>defaultProcessorId</code>
+</p>
+<hr>
+<h2>setProcessors</h2>
+<p>
+<code>public void <strong>setProcessors</strong>(java.util.List processors)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>processors</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.launching</strong></font>
</p>
@@ -19982,7 +42432,7 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr>
-<td><code><strong>ProcessorType(java.lang.String id
+<td><code><strong>ProcessorType</strong>(java.lang.String id
,
java.lang.String name
,
@@ -19994,7 +42444,7 @@ extends java.lang.Object</pre>
,
java.util.Properties outputPropertyValues
,
- java.lang.String transFactoryName)</strong></code></td>
+ java.lang.String transFactoryName)</code></td>
</tr>
</table>
<br>
@@ -20005,37 +42455,37 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getId()</code>
+<td width="20%" align="right"><code>public org.eclipse.wst.xsl.launching.IFeature[]</code></td><td width="" align="left"><code>getFeatures()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getLabel()</code>
+<td width="20%" align="right"><code>public java.util.Map</code></td><td width="" align="left"><code>getFeatureValues()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.util.Map</code></td><td width="" align="left"><code>getFeatureValues()</code>
+<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getId()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public org.eclipse.wst.xsl.launching.IFeature[]</code></td><td width="" align="left"><code>getFeatures()</code>
+<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getLabel()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.util.Properties</code></td><td width="" align="left"><code>getOutputPropertyValues()</code>
+<td width="20%" align="right"><code>public org.eclipse.wst.xsl.launching.IOutputProperty[]</code></td><td width="" align="left"><code>getOutputProperties()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>isJREDefault()</code>
+<td width="20%" align="right"><code>public java.util.Properties</code></td><td width="" align="left"><code>getOutputPropertyValues()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@@ -20047,13 +42497,129 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public org.eclipse.wst.xsl.launching.IOutputProperty[]</code></td><td width="" align="left"><code>getOutputProperties()</code>
+<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>isJREDefault()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>ProcessorType</h2>
+<p>
+<code>public <strong>ProcessorType</strong>(java.lang.String id
+ ,
+ java.lang.String name
+ ,
+ java.net.URL featurePropertiesURL
+ ,
+ java.net.URL outputPropertiesURL
+ ,
+ java.util.Map featureValues
+ ,
+ java.util.Properties outputPropertyValues
+ ,
+ java.lang.String transFactoryName)</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getFeatures</h2>
+<p>
+<code>public org.eclipse.wst.xsl.launching.IFeature[] <strong>getFeatures</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.launching.IFeature[]</code>
+</p>
+<hr>
+<h2>getFeatureValues</h2>
+<p>
+<code>public java.util.Map <strong>getFeatureValues</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.util.Map</code>
+</p>
+<hr>
+<h2>getId</h2>
+<p>
+<code>public java.lang.String <strong>getId</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
+<h2>getLabel</h2>
+<p>
+<code>public java.lang.String <strong>getLabel</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
+<h2>getOutputProperties</h2>
+<p>
+<code>public org.eclipse.wst.xsl.launching.IOutputProperty[] <strong>getOutputProperties</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.launching.IOutputProperty[]</code>
+</p>
+<hr>
+<h2>getOutputPropertyValues</h2>
+<p>
+<code>public java.util.Properties <strong>getOutputPropertyValues</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.util.Properties</code>
+</p>
+<hr>
+<h2>getTransformerFactoryName</h2>
+<p>
+<code>public java.lang.String <strong>getTransformerFactoryName</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
+<h2>isJREDefault</h2>
+<p>
+<code>public boolean <strong>isJREDefault</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.launching</strong></font>
</p>
@@ -20074,7 +42640,7 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr>
-<td><code><strong>Utils()</strong></code></td>
+<td><code><strong>Utils</strong>()</code></td>
</tr>
</table>
<br>
@@ -20094,6 +42660,53 @@ extends java.lang.Object</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>Utils</h2>
+<p>
+<code>public <strong>Utils</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getFileLocation</h2>
+<p>
+<code>public java.lang.String <strong>getFileLocation</strong>(java.lang.String bundleId
+ ,
+ java.lang.String path)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>bundleId</code>
+</p>
+<p>
+<code>path</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>CoreException</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.launching</strong></font>
</p>
@@ -20114,7 +42727,7 @@ extends PropertyTester</pre>
</td>
</tr>
<tr>
-<td><code><strong>XSLPropertyTester()</strong></code></td>
+<td><code><strong>XSLPropertyTester</strong>()</code></td>
</tr>
</table>
<br>
@@ -20138,6 +42751,59 @@ extends PropertyTester</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>XSLPropertyTester</h2>
+<p>
+<code>public <strong>XSLPropertyTester</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>test</h2>
+<p>
+<code>public boolean <strong>test</strong>(java.lang.Object arg0
+ ,
+ java.lang.String arg1
+ ,
+ java.lang.Object[] arg2
+ ,
+ java.lang.Object arg3)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>arg0</code>
+</p>
+<p>
+<code>arg1</code>
+</p>
+<p>
+<code>arg2</code>
+</p>
+<p>
+<code>arg3</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.launching</strong></font>
</p>
@@ -20158,7 +42824,7 @@ extends JavaLaunchDelegate</pre>
</td>
</tr>
<tr>
-<td><code><strong>XSLTLaunchConfigurationDelegate()</strong></code></td>
+<td><code><strong>XSLTLaunchConfigurationDelegate</strong>()</code></td>
</tr>
</table>
<br>
@@ -20169,35 +42835,25 @@ extends JavaLaunchDelegate</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>launch(ILaunchConfiguration configuration
- ,
- java.lang.String mode
- ,
- ILaunch launch
- ,
- IProgressMonitor monitor)</code>
+<td width="20%" align="right"><code>protected IBreakpoint[]</code></td><td width="" align="left"><code>getBreakpoints(ILaunchConfiguration configuration)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- </td>
+ Get the Java breakpoint and the XSL breakpoints</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected IBreakpoint[]</code></td><td width="" align="left"><code>getBreakpoints(ILaunchConfiguration configuration)</code>
+<td width="20%" align="right"><code>public java.lang.String[]</code></td><td width="" align="left"><code>getClasspath(ILaunchConfiguration configuration)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Get the Java breakpoint and the XSL breakpoints</td>
+ </td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>preLaunchCheck(ILaunchConfiguration configuration
- ,
- java.lang.String mode
- ,
- IProgressMonitor monitor)</code>
+<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getMainTypeName(ILaunchConfiguration configuration)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public IVMRunner</code></td><td width="" align="left"><code>getVMRunner(ILaunchConfiguration configuration
+<td width="20%" align="right"><code>public static org.eclipse.wst.xsl.launching.IProcessorInstall</code></td><td width="" align="left"><code>getProcessorInstall(ILaunchConfiguration configuration
,
java.lang.String mode)</code>
<br>
@@ -20205,45 +42861,286 @@ extends JavaLaunchDelegate</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public IPath</code></td><td width="" align="left"><code>getWorkingDirectoryPath(ILaunchConfiguration configuration)</code>
+<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getProgramArguments(ILaunchConfiguration configuration)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static org.eclipse.wst.xsl.launching.IProcessorInstall</code></td><td width="" align="left"><code>getProcessorInstall(ILaunchConfiguration configuration
- ,
- java.lang.String mode)</code>
+<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getVMArguments(ILaunchConfiguration configuration)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getMainTypeName(ILaunchConfiguration configuration)</code>
+<td width="20%" align="right"><code>public IVMRunner</code></td><td width="" align="left"><code>getVMRunner(ILaunchConfiguration configuration
+ ,
+ java.lang.String mode)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getProgramArguments(ILaunchConfiguration configuration)</code>
+<td width="20%" align="right"><code>public IPath</code></td><td width="" align="left"><code>getWorkingDirectoryPath(ILaunchConfiguration configuration)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.lang.String[]</code></td><td width="" align="left"><code>getClasspath(ILaunchConfiguration configuration)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>launch(ILaunchConfiguration configuration
+ ,
+ java.lang.String mode
+ ,
+ ILaunch launch
+ ,
+ IProgressMonitor monitor)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getVMArguments(ILaunchConfiguration configuration)</code>
+<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>preLaunchCheck(ILaunchConfiguration configuration
+ ,
+ java.lang.String mode
+ ,
+ IProgressMonitor monitor)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>XSLTLaunchConfigurationDelegate</h2>
+<p>
+<code>public <strong>XSLTLaunchConfigurationDelegate</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getBreakpoints</h2>
+<p>
+<code>protected IBreakpoint[] <strong>getBreakpoints</strong>(ILaunchConfiguration configuration)</code>
+</p>
+<p>Get the Java breakpoint and the XSL breakpoints</p>
+<h3>Parameters</h3>
+<p>
+<code>configuration</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>IBreakpoint[]</code>
+</p>
+<hr>
+<h2>getClasspath</h2>
+<p>
+<code>public java.lang.String[] <strong>getClasspath</strong>(ILaunchConfiguration configuration)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>configuration</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String[]</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>CoreException</code>
+</p>
+<hr>
+<h2>getMainTypeName</h2>
+<p>
+<code>public java.lang.String <strong>getMainTypeName</strong>(ILaunchConfiguration configuration)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>configuration</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>CoreException</code>
+</p>
+<hr>
+<h2>getProcessorInstall</h2>
+<p>
+<code>public org.eclipse.wst.xsl.launching.IProcessorInstall <strong>getProcessorInstall</strong>(ILaunchConfiguration configuration
+ ,
+ java.lang.String mode)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>configuration</code>
+</p>
+<p>
+<code>mode</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.launching.IProcessorInstall</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>CoreException</code>
+</p>
+<hr>
+<h2>getProgramArguments</h2>
+<p>
+<code>public java.lang.String <strong>getProgramArguments</strong>(ILaunchConfiguration configuration)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>configuration</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>CoreException</code>
+</p>
+<hr>
+<h2>getVMArguments</h2>
+<p>
+<code>public java.lang.String <strong>getVMArguments</strong>(ILaunchConfiguration configuration)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>configuration</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>CoreException</code>
+</p>
+<hr>
+<h2>getVMRunner</h2>
+<p>
+<code>public IVMRunner <strong>getVMRunner</strong>(ILaunchConfiguration configuration
+ ,
+ java.lang.String mode)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>configuration</code>
+</p>
+<p>
+<code>mode</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>IVMRunner</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>CoreException</code>
+</p>
+<hr>
+<h2>getWorkingDirectoryPath</h2>
+<p>
+<code>public IPath <strong>getWorkingDirectoryPath</strong>(ILaunchConfiguration configuration)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>configuration</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>IPath</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>CoreException</code>
+</p>
+<hr>
+<h2>launch</h2>
+<p>
+<code>public void <strong>launch</strong>(ILaunchConfiguration configuration
+ ,
+ java.lang.String mode
+ ,
+ ILaunch launch
+ ,
+ IProgressMonitor monitor)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>configuration</code>
+</p>
+<p>
+<code>mode</code>
+</p>
+<p>
+<code>launch</code>
+</p>
+<p>
+<code>monitor</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>CoreException</code>
+</p>
+<hr>
+<h2>preLaunchCheck</h2>
+<p>
+<code>public boolean <strong>preLaunchCheck</strong>(ILaunchConfiguration configuration
+ ,
+ java.lang.String mode
+ ,
+ IProgressMonitor monitor)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>configuration</code>
+</p>
+<p>
+<code>mode</code>
+</p>
+<p>
+<code>monitor</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>CoreException</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.launching</strong></font>
</p>
@@ -20264,7 +43161,7 @@ extends AbstractSourceLookupDirector</pre>
</td>
</tr>
<tr>
-<td><code><strong>XSLTSourceLookupDirector()</strong></code></td>
+<td><code><strong>XSLTSourceLookupDirector</strong>()</code></td>
</tr>
</table>
<br>
@@ -20282,6 +43179,36 @@ extends AbstractSourceLookupDirector</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>XSLTSourceLookupDirector</h2>
+<p>
+<code>public <strong>XSLTSourceLookupDirector</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>initializeParticipants</h2>
+<p>
+<code>public void <strong>initializeParticipants</strong>()</code>
+</p>
+<p></p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.launching</strong></font>
</p>
@@ -20301,7 +43228,7 @@ extends AbstractSourceLookupParticipant</pre>Translate a stack frame into a sour
</td>
</tr>
<tr>
-<td><code><strong>XSLTSourceLookupParticipant()</strong></code></td>
+<td><code><strong>XSLTSourceLookupParticipant</strong>()</code></td>
</tr>
</table>
<br>
@@ -20319,6 +43246,48 @@ extends AbstractSourceLookupParticipant</pre>Translate a stack frame into a sour
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>XSLTSourceLookupParticipant</h2>
+<p>
+<code>public <strong>XSLTSourceLookupParticipant</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getSourceName</h2>
+<p>
+<code>public java.lang.String <strong>getSourceName</strong>(java.lang.Object object)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>object</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>CoreException</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.launching</strong></font>
</p>
@@ -20339,7 +43308,7 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr>
-<td><code><strong>XSLTSourcePathComputerDelegate()</strong></code></td>
+<td><code><strong>XSLTSourcePathComputerDelegate</strong>()</code></td>
</tr>
</table>
<br>
@@ -20359,6 +43328,53 @@ extends java.lang.Object</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>XSLTSourcePathComputerDelegate</h2>
+<p>
+<code>public <strong>XSLTSourcePathComputerDelegate</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>computeSourceContainers</h2>
+<p>
+<code>public ISourceContainer[] <strong>computeSourceContainers</strong>(ILaunchConfiguration configuration
+ ,
+ IProgressMonitor monitor)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>configuration</code>
+</p>
+<p>
+<code>monitor</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>ISourceContainer[]</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>CoreException</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.launching.registry</strong></font>
</p>
@@ -20399,7 +43415,7 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr>
-<td><code><strong>AbstractRegistryReader()</strong></code></td>
+<td><code><strong>AbstractRegistryReader</strong>()</code></td>
</tr>
</table>
<br>
@@ -20410,6 +43426,20 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr valign="top">
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="" align="left"><code>getClassValue(IConfigurationElement configElement
+ ,
+ java.lang.String classAttributeName)</code>
+<br>
+ &nbsp;&nbsp;&nbsp;&nbsp;
+ </td>
+</tr>
+<tr valign="top">
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="" align="left"><code>getDescription(IConfigurationElement configElement)</code>
+<br>
+ &nbsp;&nbsp;&nbsp;&nbsp;
+ </td>
+</tr>
+<tr valign="top">
<td width="20%" align="right"><code>protected static void</code></td><td width="" align="left"><code>logError(IConfigurationElement element
,
java.lang.String text)</code>
@@ -20479,21 +43509,216 @@ extends java.lang.Object</pre>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
-<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="" align="left"><code>getDescription(IConfigurationElement configElement)</code>
-<br>
- &nbsp;&nbsp;&nbsp;&nbsp;
- </td>
+</table>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
</tr>
-<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="" align="left"><code>getClassValue(IConfigurationElement configElement
- ,
- java.lang.String classAttributeName)</code>
-<br>
- &nbsp;&nbsp;&nbsp;&nbsp;
- </td>
+</table>
+<h2>ATT_CLASS</h2>
+<p>
+<code>public static java.lang.String <strong>ATT_CLASS</strong></code>
+</p>
+<hr>
+<h2>TAG_DESCRIPTION</h2>
+<p>
+<code>public static java.lang.String <strong>TAG_DESCRIPTION</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>AbstractRegistryReader</h2>
+<p>
+<code>public <strong>AbstractRegistryReader</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
</tr>
</table>
+<h2>getClassValue</h2>
+<p>
+<code>public java.lang.String <strong>getClassValue</strong>(IConfigurationElement configElement
+ ,
+ java.lang.String classAttributeName)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>configElement</code>
+</p>
+<p>
+<code>classAttributeName</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
+<h2>getDescription</h2>
+<p>
+<code>public java.lang.String <strong>getDescription</strong>(IConfigurationElement configElement)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>configElement</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
+<h2>logError</h2>
+<p>
+<code>protected void <strong>logError</strong>(IConfigurationElement element
+ ,
+ java.lang.String text)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>element</code>
+</p>
+<p>
+<code>text</code>
+</p>
+<hr>
+<h2>logMissingAttribute</h2>
+<p>
+<code>protected void <strong>logMissingAttribute</strong>(IConfigurationElement element
+ ,
+ java.lang.String attributeName)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>element</code>
+</p>
+<p>
+<code>attributeName</code>
+</p>
+<hr>
+<h2>logMissingElement</h2>
+<p>
+<code>protected void <strong>logMissingElement</strong>(IConfigurationElement element
+ ,
+ java.lang.String elementName)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>element</code>
+</p>
+<p>
+<code>elementName</code>
+</p>
+<hr>
+<h2>logUnknownElement</h2>
+<p>
+<code>protected void <strong>logUnknownElement</strong>(IConfigurationElement element)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>element</code>
+</p>
+<hr>
+<h2>orderExtensions</h2>
+<p>
+<code>public IExtension[] <strong>orderExtensions</strong>(IExtension[] extensions)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>extensions</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>IExtension[]</code>
+</p>
+<hr>
+<h2>readElement</h2>
+<p>
+<code>protected boolean <strong>readElement</strong>(IConfigurationElement element)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>element</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<hr>
+<h2>readElementChildren</h2>
+<p>
+<code>protected void <strong>readElementChildren</strong>(IConfigurationElement element)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>element</code>
+</p>
+<hr>
+<h2>readElements</h2>
+<p>
+<code>protected void <strong>readElements</strong>(IConfigurationElement[] elements)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>elements</code>
+</p>
+<hr>
+<h2>readExtension</h2>
+<p>
+<code>protected void <strong>readExtension</strong>(IExtension extension)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>extension</code>
+</p>
+<hr>
+<h2>readRegistry</h2>
+<p>
+<code>public void <strong>readRegistry</strong>(IExtensionRegistry registry
+ ,
+ java.lang.String pluginId
+ ,
+ java.lang.String extensionPoint)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>registry</code>
+</p>
+<p>
+<code>pluginId</code>
+</p>
+<p>
+<code>extensionPoint</code>
+</p>
<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.launching.registry</strong></font>
@@ -20515,7 +43740,7 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr>
-<td><code><strong>DebuggerRegistry()</strong></code></td>
+<td><code><strong>DebuggerRegistry</strong>()</code></td>
</tr>
</table>
<br>
@@ -20526,25 +43751,83 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public org.eclipse.wst.xsl.launching.IDebugger</code></td><td width="" align="left"><code>getDebugger(java.lang.String id)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>addDebugger(org.eclipse.wst.xsl.internal.launching.DebuggerDescriptor desc)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public org.eclipse.wst.xsl.launching.IDebugger[]</code></td><td width="" align="left"><code>getDebuggers()</code>
+<td width="20%" align="right"><code>public org.eclipse.wst.xsl.launching.IDebugger</code></td><td width="" align="left"><code>getDebugger(java.lang.String id)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>addDebugger(org.eclipse.wst.xsl.internal.launching.DebuggerDescriptor desc)</code>
+<td width="20%" align="right"><code>public org.eclipse.wst.xsl.launching.IDebugger[]</code></td><td width="" align="left"><code>getDebuggers()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>DebuggerRegistry</h2>
+<p>
+<code>public <strong>DebuggerRegistry</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>addDebugger</h2>
+<p>
+<code>public void <strong>addDebugger</strong>(org.eclipse.wst.xsl.internal.launching.DebuggerDescriptor desc)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>desc</code>
+</p>
+<hr>
+<h2>getDebugger</h2>
+<p>
+<code>public org.eclipse.wst.xsl.launching.IDebugger <strong>getDebugger</strong>(java.lang.String id)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>id</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.launching.IDebugger</code>
+</p>
+<hr>
+<h2>getDebuggers</h2>
+<p>
+<code>public org.eclipse.wst.xsl.launching.IDebugger[] <strong>getDebuggers</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.launching.IDebugger[]</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.launching.registry</strong></font>
</p>
@@ -20565,37 +43848,37 @@ extends org.eclipse.wst.xsl.internal.launching.registry.AbstractRegistryReader</
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>TAG_DEBUGGER</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ATT_CLASSNAME</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ATT_ID</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ATT_CLASSPATH</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ATT_CLASSNAME</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ATT_ID</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ATT_CLASSPATH</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ATT_NAME</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ATT_NAME</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ATT_PROCESSOR_TYPE_ID</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ATT_PROCESSOR_TYPE_ID</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>TAG_DEBUGGER</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@@ -20609,7 +43892,7 @@ extends org.eclipse.wst.xsl.internal.launching.registry.AbstractRegistryReader</
</td>
</tr>
<tr>
-<td><code><strong>DebuggerRegistryReader()</strong></code></td>
+<td><code><strong>DebuggerRegistryReader</strong>()</code></td>
</tr>
</table>
<br>
@@ -20620,27 +43903,129 @@ extends org.eclipse.wst.xsl.internal.launching.registry.AbstractRegistryReader</
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected boolean</code></td><td width="" align="left"><code>readElement(IConfigurationElement element)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>addConfigs(org.eclipse.wst.xsl.internal.launching.registry.DebuggerRegistry registry)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>readElement(org.eclipse.wst.xsl.internal.launching.registry.DebuggerRegistry registry
- ,
- IConfigurationElement element)</code>
+<td width="20%" align="right"><code>protected boolean</code></td><td width="" align="left"><code>readElement(IConfigurationElement element)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>addConfigs(org.eclipse.wst.xsl.internal.launching.registry.DebuggerRegistry registry)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>readElement(org.eclipse.wst.xsl.internal.launching.registry.DebuggerRegistry registry
+ ,
+ IConfigurationElement element)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>ATT_CLASSNAME</h2>
+<p>
+<code>public static java.lang.String <strong>ATT_CLASSNAME</strong></code>
+</p>
+<hr>
+<h2>ATT_CLASSPATH</h2>
+<p>
+<code>public static java.lang.String <strong>ATT_CLASSPATH</strong></code>
+</p>
+<hr>
+<h2>ATT_ID</h2>
+<p>
+<code>public static java.lang.String <strong>ATT_ID</strong></code>
+</p>
+<hr>
+<h2>ATT_NAME</h2>
+<p>
+<code>public static java.lang.String <strong>ATT_NAME</strong></code>
+</p>
+<hr>
+<h2>ATT_PROCESSOR_TYPE_ID</h2>
+<p>
+<code>public static java.lang.String <strong>ATT_PROCESSOR_TYPE_ID</strong></code>
+</p>
+<hr>
+<h2>TAG_DEBUGGER</h2>
+<p>
+<code>public static java.lang.String <strong>TAG_DEBUGGER</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>DebuggerRegistryReader</h2>
+<p>
+<code>public <strong>DebuggerRegistryReader</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>addConfigs</h2>
+<p>
+<code>public void <strong>addConfigs</strong>(org.eclipse.wst.xsl.internal.launching.registry.DebuggerRegistry registry)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>registry</code>
+</p>
+<hr>
+<h2>readElement</h2>
+<p>
+<code>protected boolean <strong>readElement</strong>(IConfigurationElement element)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>element</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<hr>
+<h2>readElement</h2>
+<p>
+<code>public void <strong>readElement</strong>(org.eclipse.wst.xsl.internal.launching.registry.DebuggerRegistry registry
+ ,
+ IConfigurationElement element)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>registry</code>
+</p>
+<p>
+<code>element</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.launching.registry</strong></font>
</p>
@@ -20661,7 +44046,7 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr>
-<td><code><strong>InvokerRegistry()</strong></code></td>
+<td><code><strong>InvokerRegistry</strong>()</code></td>
</tr>
</table>
<br>
@@ -20672,25 +44057,83 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public org.eclipse.wst.xsl.launching.IProcessorInvoker</code></td><td width="" align="left"><code>getProcessorInvoker(java.lang.String id)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>addInvokerDescriptor(org.eclipse.wst.xsl.launching.IProcessorInvoker desc)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public org.eclipse.wst.xsl.launching.IProcessorInvoker[]</code></td><td width="" align="left"><code>getProcessorInvokers()</code>
+<td width="20%" align="right"><code>public org.eclipse.wst.xsl.launching.IProcessorInvoker</code></td><td width="" align="left"><code>getProcessorInvoker(java.lang.String id)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>addInvokerDescriptor(org.eclipse.wst.xsl.launching.IProcessorInvoker desc)</code>
+<td width="20%" align="right"><code>public org.eclipse.wst.xsl.launching.IProcessorInvoker[]</code></td><td width="" align="left"><code>getProcessorInvokers()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>InvokerRegistry</h2>
+<p>
+<code>public <strong>InvokerRegistry</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>addInvokerDescriptor</h2>
+<p>
+<code>public void <strong>addInvokerDescriptor</strong>(org.eclipse.wst.xsl.launching.IProcessorInvoker desc)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>desc</code>
+</p>
+<hr>
+<h2>getProcessorInvoker</h2>
+<p>
+<code>public org.eclipse.wst.xsl.launching.IProcessorInvoker <strong>getProcessorInvoker</strong>(java.lang.String id)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>id</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.launching.IProcessorInvoker</code>
+</p>
+<hr>
+<h2>getProcessorInvokers</h2>
+<p>
+<code>public org.eclipse.wst.xsl.launching.IProcessorInvoker[] <strong>getProcessorInvokers</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.launching.IProcessorInvoker[]</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.launching.registry</strong></font>
</p>
@@ -20711,25 +44154,25 @@ extends org.eclipse.wst.xsl.internal.launching.registry.AbstractRegistryReader</
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>TAG_INVOKE</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ATT_CLASS</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ATT_ID</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ATT_CLASSPATH</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ATT_CLASS</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ATT_ID</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ATT_CLASSPATH</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>TAG_INVOKE</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@@ -20743,7 +44186,7 @@ extends org.eclipse.wst.xsl.internal.launching.registry.AbstractRegistryReader</
</td>
</tr>
<tr>
-<td><code><strong>InvokerRegistryReader()</strong></code></td>
+<td><code><strong>InvokerRegistryReader</strong>()</code></td>
</tr>
</table>
<br>
@@ -20754,27 +44197,119 @@ extends org.eclipse.wst.xsl.internal.launching.registry.AbstractRegistryReader</
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected boolean</code></td><td width="" align="left"><code>readElement(IConfigurationElement element)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>addConfigs(org.eclipse.wst.xsl.internal.launching.registry.InvokerRegistry registry)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>readElement(org.eclipse.wst.xsl.internal.launching.registry.InvokerRegistry registry
- ,
- IConfigurationElement element)</code>
+<td width="20%" align="right"><code>protected boolean</code></td><td width="" align="left"><code>readElement(IConfigurationElement element)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>addConfigs(org.eclipse.wst.xsl.internal.launching.registry.InvokerRegistry registry)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>readElement(org.eclipse.wst.xsl.internal.launching.registry.InvokerRegistry registry
+ ,
+ IConfigurationElement element)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>ATT_CLASS</h2>
+<p>
+<code>public static java.lang.String <strong>ATT_CLASS</strong></code>
+</p>
+<hr>
+<h2>ATT_CLASSPATH</h2>
+<p>
+<code>public static java.lang.String <strong>ATT_CLASSPATH</strong></code>
+</p>
+<hr>
+<h2>ATT_ID</h2>
+<p>
+<code>public static java.lang.String <strong>ATT_ID</strong></code>
+</p>
+<hr>
+<h2>TAG_INVOKE</h2>
+<p>
+<code>public static java.lang.String <strong>TAG_INVOKE</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>InvokerRegistryReader</h2>
+<p>
+<code>public <strong>InvokerRegistryReader</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>addConfigs</h2>
+<p>
+<code>public void <strong>addConfigs</strong>(org.eclipse.wst.xsl.internal.launching.registry.InvokerRegistry registry)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>registry</code>
+</p>
+<hr>
+<h2>readElement</h2>
+<p>
+<code>protected boolean <strong>readElement</strong>(IConfigurationElement element)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>element</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<hr>
+<h2>readElement</h2>
+<p>
+<code>public void <strong>readElement</strong>(org.eclipse.wst.xsl.internal.launching.registry.InvokerRegistry registry
+ ,
+ IConfigurationElement element)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>registry</code>
+</p>
+<p>
+<code>element</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.launching.registry</strong></font>
</p>
@@ -20802,6 +44337,29 @@ extends java.lang.Object</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getString</h2>
+<p>
+<code>public java.lang.String <strong>getString</strong>(java.lang.String key)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>key</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.launching.registry</strong></font>
</p>
@@ -20822,7 +44380,7 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr>
-<td><code><strong>ProcessorRegistry()</strong></code></td>
+<td><code><strong>ProcessorRegistry</strong>()</code></td>
</tr>
</table>
<br>
@@ -20857,49 +44415,197 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>removeProcessor(int index)</code>
+<td width="20%" align="right"><code>public org.eclipse.wst.xsl.launching.IProcessorInstall[]</code></td><td width="" align="left"><code>getContributedProcessors()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public org.eclipse.wst.xsl.launching.IProcessorInstall[]</code></td><td width="" align="left"><code>getProcessors()</code>
+<td width="20%" align="right"><code>public org.eclipse.wst.xsl.launching.IProcessorInstall</code></td><td width="" align="left"><code>getDefaultProcessor()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public org.eclipse.wst.xsl.launching.IProcessorInstall[]</code></td><td width="" align="left"><code>getProcessors(java.lang.String id)</code>
+<td width="20%" align="right"><code>public org.eclipse.wst.xsl.launching.IProcessorInstall</code></td><td width="" align="left"><code>getJREDefaultProcessor()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setDefaultProcessor(org.eclipse.wst.xsl.launching.IProcessorInstall defaultInstall)</code>
+<td width="20%" align="right"><code>public org.eclipse.wst.xsl.launching.IProcessorInstall[]</code></td><td width="" align="left"><code>getProcessors()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public org.eclipse.wst.xsl.launching.IProcessorInstall</code></td><td width="" align="left"><code>getDefaultProcessor()</code>
+<td width="20%" align="right"><code>public org.eclipse.wst.xsl.launching.IProcessorInstall[]</code></td><td width="" align="left"><code>getProcessors(java.lang.String id)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public org.eclipse.wst.xsl.launching.IProcessorInstall</code></td><td width="" align="left"><code>getJREDefaultProcessor()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>removeProcessor(int index)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public org.eclipse.wst.xsl.launching.IProcessorInstall[]</code></td><td width="" align="left"><code>getContributedProcessors()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setDefaultProcessor(org.eclipse.wst.xsl.launching.IProcessorInstall defaultInstall)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>ProcessorRegistry</h2>
+<p>
+<code>public <strong>ProcessorRegistry</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>addProcessor</h2>
+<p>
+<code>public void <strong>addProcessor</strong>(java.lang.String bundleId
+ ,
+ java.lang.String id
+ ,
+ java.lang.String label
+ ,
+ java.lang.String processorTypeId
+ ,
+ java.lang.String classpath
+ ,
+ java.lang.String debuggerId
+ ,
+ java.lang.String supports)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>bundleId</code>
+</p>
+<p>
+<code>id</code>
+</p>
+<p>
+<code>label</code>
+</p>
+<p>
+<code>processorTypeId</code>
+</p>
+<p>
+<code>classpath</code>
+</p>
+<p>
+<code>debuggerId</code>
+</p>
+<p>
+<code>supports</code>
+</p>
+<hr>
+<h2>addProcessor</h2>
+<p>
+<code>public void <strong>addProcessor</strong>(org.eclipse.wst.xsl.launching.IProcessorInstall install)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>install</code>
+</p>
+<hr>
+<h2>getContributedProcessors</h2>
+<p>
+<code>public org.eclipse.wst.xsl.launching.IProcessorInstall[] <strong>getContributedProcessors</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.launching.IProcessorInstall[]</code>
+</p>
+<hr>
+<h2>getDefaultProcessor</h2>
+<p>
+<code>public org.eclipse.wst.xsl.launching.IProcessorInstall <strong>getDefaultProcessor</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.launching.IProcessorInstall</code>
+</p>
+<hr>
+<h2>getJREDefaultProcessor</h2>
+<p>
+<code>public org.eclipse.wst.xsl.launching.IProcessorInstall <strong>getJREDefaultProcessor</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.launching.IProcessorInstall</code>
+</p>
+<hr>
+<h2>getProcessors</h2>
+<p>
+<code>public org.eclipse.wst.xsl.launching.IProcessorInstall[] <strong>getProcessors</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.launching.IProcessorInstall[]</code>
+</p>
+<hr>
+<h2>getProcessors</h2>
+<p>
+<code>public org.eclipse.wst.xsl.launching.IProcessorInstall[] <strong>getProcessors</strong>(java.lang.String id)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>id</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.launching.IProcessorInstall[]</code>
+</p>
+<hr>
+<h2>removeProcessor</h2>
+<p>
+<code>public void <strong>removeProcessor</strong>(int index)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>index</code>
+</p>
+<hr>
+<h2>setDefaultProcessor</h2>
+<p>
+<code>public void <strong>setDefaultProcessor</strong>(org.eclipse.wst.xsl.launching.IProcessorInstall defaultInstall)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>defaultInstall</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.launching.registry</strong></font>
</p>
@@ -20920,43 +44626,43 @@ extends org.eclipse.wst.xsl.internal.launching.registry.AbstractRegistryReader</
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>TAG_processor</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ATT_CLASSPATH</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ATT_ID</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ATT_DEBUGGER_ID</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ATT_LABEL</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ATT_ID</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ATT_TYPE_ID</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ATT_LABEL</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ATT_DEBUGGER_ID</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ATT_SUPPORTS</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ATT_CLASSPATH</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ATT_TYPE_ID</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ATT_SUPPORTS</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>TAG_processor</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@@ -20970,7 +44676,7 @@ extends org.eclipse.wst.xsl.internal.launching.registry.AbstractRegistryReader</
</td>
</tr>
<tr>
-<td><code><strong>ProcessorRegistryReader()</strong></code></td>
+<td><code><strong>ProcessorRegistryReader</strong>()</code></td>
</tr>
</table>
<br>
@@ -20981,27 +44687,134 @@ extends org.eclipse.wst.xsl.internal.launching.registry.AbstractRegistryReader</
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected boolean</code></td><td width="" align="left"><code>readElement(IConfigurationElement element)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>addConfigs(org.eclipse.wst.xsl.internal.launching.registry.ProcessorRegistry registry)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>readElement(org.eclipse.wst.xsl.internal.launching.registry.ProcessorRegistry registry
- ,
- IConfigurationElement element)</code>
+<td width="20%" align="right"><code>protected boolean</code></td><td width="" align="left"><code>readElement(IConfigurationElement element)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>addConfigs(org.eclipse.wst.xsl.internal.launching.registry.ProcessorRegistry registry)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>readElement(org.eclipse.wst.xsl.internal.launching.registry.ProcessorRegistry registry
+ ,
+ IConfigurationElement element)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>ATT_CLASSPATH</h2>
+<p>
+<code>public static java.lang.String <strong>ATT_CLASSPATH</strong></code>
+</p>
+<hr>
+<h2>ATT_DEBUGGER_ID</h2>
+<p>
+<code>public static java.lang.String <strong>ATT_DEBUGGER_ID</strong></code>
+</p>
+<hr>
+<h2>ATT_ID</h2>
+<p>
+<code>public static java.lang.String <strong>ATT_ID</strong></code>
+</p>
+<hr>
+<h2>ATT_LABEL</h2>
+<p>
+<code>public static java.lang.String <strong>ATT_LABEL</strong></code>
+</p>
+<hr>
+<h2>ATT_SUPPORTS</h2>
+<p>
+<code>public static java.lang.String <strong>ATT_SUPPORTS</strong></code>
+</p>
+<hr>
+<h2>ATT_TYPE_ID</h2>
+<p>
+<code>public static java.lang.String <strong>ATT_TYPE_ID</strong></code>
+</p>
+<hr>
+<h2>TAG_processor</h2>
+<p>
+<code>public static java.lang.String <strong>TAG_processor</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>ProcessorRegistryReader</h2>
+<p>
+<code>public <strong>ProcessorRegistryReader</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>addConfigs</h2>
+<p>
+<code>public void <strong>addConfigs</strong>(org.eclipse.wst.xsl.internal.launching.registry.ProcessorRegistry registry)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>registry</code>
+</p>
+<hr>
+<h2>readElement</h2>
+<p>
+<code>protected boolean <strong>readElement</strong>(IConfigurationElement element)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>element</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<hr>
+<h2>readElement</h2>
+<p>
+<code>public void <strong>readElement</strong>(org.eclipse.wst.xsl.internal.launching.registry.ProcessorRegistry registry
+ ,
+ IConfigurationElement element)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>registry</code>
+</p>
+<p>
+<code>element</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.launching.registry</strong></font>
</p>
@@ -21042,7 +44855,7 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr>
-<td><code><strong>ProcessorTypeRegistry()</strong></code></td>
+<td><code><strong>ProcessorTypeRegistry</strong>()</code></td>
</tr>
</table>
<br>
@@ -21053,31 +44866,118 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public org.eclipse.wst.xsl.launching.IProcessorType[]</code></td><td width="" align="left"><code>getProcessorTypes()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>addType(IConfigurationElement element)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public org.eclipse.wst.xsl.launching.IProcessorType[]</code></td><td width="" align="left"><code>getProcessorTypesExclJREDefault()</code>
+<td width="20%" align="right"><code>public org.eclipse.wst.xsl.launching.IProcessorType</code></td><td width="" align="left"><code>getProcessorType(java.lang.String id)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>addType(IConfigurationElement element)</code>
+<td width="20%" align="right"><code>public org.eclipse.wst.xsl.launching.IProcessorType[]</code></td><td width="" align="left"><code>getProcessorTypes()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public org.eclipse.wst.xsl.launching.IProcessorType</code></td><td width="" align="left"><code>getProcessorType(java.lang.String id)</code>
+<td width="20%" align="right"><code>public org.eclipse.wst.xsl.launching.IProcessorType[]</code></td><td width="" align="left"><code>getProcessorTypesExclJREDefault()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>DESC_SUFFIX</h2>
+<p>
+<code>protected static java.lang.String <strong>DESC_SUFFIX</strong></code>
+</p>
+<hr>
+<h2>TYPE_SUFFIX</h2>
+<p>
+<code>protected static java.lang.String <strong>TYPE_SUFFIX</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>ProcessorTypeRegistry</h2>
+<p>
+<code>public <strong>ProcessorTypeRegistry</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>addType</h2>
+<p>
+<code>public void <strong>addType</strong>(IConfigurationElement element)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>element</code>
+</p>
+<hr>
+<h2>getProcessorType</h2>
+<p>
+<code>public org.eclipse.wst.xsl.launching.IProcessorType <strong>getProcessorType</strong>(java.lang.String id)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>id</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.launching.IProcessorType</code>
+</p>
+<hr>
+<h2>getProcessorTypes</h2>
+<p>
+<code>public org.eclipse.wst.xsl.launching.IProcessorType[] <strong>getProcessorTypes</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.launching.IProcessorType[]</code>
+</p>
+<hr>
+<h2>getProcessorTypesExclJREDefault</h2>
+<p>
+<code>public org.eclipse.wst.xsl.launching.IProcessorType[] <strong>getProcessorTypesExclJREDefault</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.launching.IProcessorType[]</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.internal.launching.registry</strong></font>
</p>
@@ -21098,7 +44998,7 @@ extends org.eclipse.wst.xsl.internal.launching.registry.AbstractRegistryReader</
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>TAG_processorType</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ATT_FEATURE_PROPERTIES</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@@ -21116,19 +45016,19 @@ extends org.eclipse.wst.xsl.internal.launching.registry.AbstractRegistryReader</
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ATT_TRANSFORMER_FACTORY_NAME</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ATT_OUTPUT_PROPERTIES</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ATT_OUTPUT_PROPERTIES</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ATT_TRANSFORMER_FACTORY_NAME</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ATT_FEATURE_PROPERTIES</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>TAG_processorType</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@@ -21142,7 +45042,7 @@ extends org.eclipse.wst.xsl.internal.launching.registry.AbstractRegistryReader</
</td>
</tr>
<tr>
-<td><code><strong>ProcessorTypeRegistryReader()</strong></code></td>
+<td><code><strong>ProcessorTypeRegistryReader</strong>()</code></td>
</tr>
</table>
<br>
@@ -21153,27 +45053,129 @@ extends org.eclipse.wst.xsl.internal.launching.registry.AbstractRegistryReader</
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected boolean</code></td><td width="" align="left"><code>readElement(IConfigurationElement element)</code>
+<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>addConfigs(org.eclipse.wst.xsl.internal.launching.registry.ProcessorTypeRegistry registry)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>readElement(org.eclipse.wst.xsl.internal.launching.registry.ProcessorTypeRegistry registry
- ,
- IConfigurationElement element)</code>
+<td width="20%" align="right"><code>protected boolean</code></td><td width="" align="left"><code>readElement(IConfigurationElement element)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>addConfigs(org.eclipse.wst.xsl.internal.launching.registry.ProcessorTypeRegistry registry)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>readElement(org.eclipse.wst.xsl.internal.launching.registry.ProcessorTypeRegistry registry
+ ,
+ IConfigurationElement element)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>ATT_FEATURE_PROPERTIES</h2>
+<p>
+<code>public static java.lang.String <strong>ATT_FEATURE_PROPERTIES</strong></code>
+</p>
+<hr>
+<h2>ATT_ID</h2>
+<p>
+<code>public static java.lang.String <strong>ATT_ID</strong></code>
+</p>
+<hr>
+<h2>ATT_LABEL</h2>
+<p>
+<code>public static java.lang.String <strong>ATT_LABEL</strong></code>
+</p>
+<hr>
+<h2>ATT_OUTPUT_PROPERTIES</h2>
+<p>
+<code>public static java.lang.String <strong>ATT_OUTPUT_PROPERTIES</strong></code>
+</p>
+<hr>
+<h2>ATT_TRANSFORMER_FACTORY_NAME</h2>
+<p>
+<code>public static java.lang.String <strong>ATT_TRANSFORMER_FACTORY_NAME</strong></code>
+</p>
+<hr>
+<h2>TAG_processorType</h2>
+<p>
+<code>public static java.lang.String <strong>TAG_processorType</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>ProcessorTypeRegistryReader</h2>
+<p>
+<code>public <strong>ProcessorTypeRegistryReader</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>addConfigs</h2>
+<p>
+<code>protected void <strong>addConfigs</strong>(org.eclipse.wst.xsl.internal.launching.registry.ProcessorTypeRegistry registry)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>registry</code>
+</p>
+<hr>
+<h2>readElement</h2>
+<p>
+<code>protected boolean <strong>readElement</strong>(IConfigurationElement element)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>element</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<hr>
+<h2>readElement</h2>
+<p>
+<code>public void <strong>readElement</strong>(org.eclipse.wst.xsl.internal.launching.registry.ProcessorTypeRegistry registry
+ ,
+ IConfigurationElement element)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>registry</code>
+</p>
+<p>
+<code>element</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.launching</strong></font>
</p>
@@ -21195,10 +45197,10 @@ extends </pre>An XSLT debugger. Typically this will have been
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getId()</code>
+<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getClassName()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Get the unique id for this debugger.</td>
+ Get the class name for this debugger</td>
</tr>
<tr valign="top">
<td width="20%" align="right"><code>public java.lang.String[]</code></td><td width="" align="left"><code>getClassPath()</code>
@@ -21207,6 +45209,12 @@ extends </pre>An XSLT debugger. Typically this will have been
Get the set of bundle-relative jar files to add to the classpath.</td>
</tr>
<tr valign="top">
+<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getId()</code>
+<br>
+ &nbsp;&nbsp;&nbsp;&nbsp;
+ Get the unique id for this debugger.</td>
+</tr>
+<tr valign="top">
<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getName()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
@@ -21218,13 +45226,61 @@ extends </pre>An XSLT debugger. Typically this will have been
&nbsp;&nbsp;&nbsp;&nbsp;
Get the processor type that this debugger is associated with</td>
</tr>
-<tr valign="top">
-<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getClassName()</code>
-<br>
- &nbsp;&nbsp;&nbsp;&nbsp;
- Get the class name for this debugger</td>
+</table>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
</tr>
</table>
+<h2>getClassName</h2>
+<p>
+<code>public java.lang.String <strong>getClassName</strong>()</code>
+</p>
+<p>Get the class name for this debugger</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code> - the class name</p>
+<hr>
+<h2>getClassPath</h2>
+<p>
+<code>public java.lang.String[] <strong>getClassPath</strong>()</code>
+</p>
+<p>Get the set of bundle-relative jar files to add to the classpath.</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String[]</code> - array of bundle-relative jars</p>
+<hr>
+<h2>getId</h2>
+<p>
+<code>public java.lang.String <strong>getId</strong>()</code>
+</p>
+<p>Get the unique id for this debugger.</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code> - debugger id</p>
+<hr>
+<h2>getName</h2>
+<p>
+<code>public java.lang.String <strong>getName</strong>()</code>
+</p>
+<p>Get a unique name for this debugger</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code> - the name for the debugger</p>
+<hr>
+<h2>getProcessorType</h2>
+<p>
+<code>public org.eclipse.wst.xsl.launching.IProcessorType <strong>getProcessorType</strong>()</code>
+</p>
+<p>Get the processor type that this debugger is associated with</p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.launching.IProcessorType</code> - the processor type</p>
<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.launching</strong></font>
@@ -21246,22 +45302,16 @@ extends </pre>A feature supported by an XSLT processor.<p></p>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>TYPE_STRING</code>
-<br>
- &nbsp;&nbsp;&nbsp;&nbsp;
- Constant for features of type &lt;code&gt;string&lt;/code&gt;</td>
-</tr>
-<tr valign="top">
<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>TYPE_BOOLEAN</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
Constant for features of type &lt;code&gt;boolean&lt;/code&gt;</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>TYPE_INT</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>TYPE_CLASS</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Constant for features of type &lt;code&gt;int&lt;/code&gt;</td>
+ Constant for features of type &lt;code&gt;class&lt;/code&gt;</td>
</tr>
<tr valign="top">
<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>TYPE_DOUBLE</code>
@@ -21276,10 +45326,10 @@ extends </pre>A feature supported by an XSLT processor.<p></p>
Constant for features of type &lt;code&gt;float&lt;/code&gt;</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>TYPE_CLASS</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>TYPE_INT</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Constant for features of type &lt;code&gt;class&lt;/code&gt;</td>
+ Constant for features of type &lt;code&gt;int&lt;/code&gt;</td>
</tr>
<tr valign="top">
<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>TYPE_OBJECT</code>
@@ -21287,6 +45337,12 @@ extends </pre>A feature supported by an XSLT processor.<p></p>
&nbsp;&nbsp;&nbsp;&nbsp;
Constant for features of type &lt;code&gt;object&lt;/code&gt;</td>
</tr>
+<tr valign="top">
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>TYPE_STRING</code>
+<br>
+ &nbsp;&nbsp;&nbsp;&nbsp;
+ Constant for features of type &lt;code&gt;string&lt;/code&gt;</td>
+</tr>
</table>
<br>
<table width="100%" border="1">
@@ -21296,12 +45352,6 @@ extends </pre>A feature supported by an XSLT processor.<p></p>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getURI()</code>
-<br>
- &nbsp;&nbsp;&nbsp;&nbsp;
- Get the URI for this feature</td>
-</tr>
-<tr valign="top">
<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getDescription()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
@@ -21314,6 +45364,12 @@ extends </pre>A feature supported by an XSLT processor.<p></p>
Get the type of this feature. Will match one of the TYPE constants in this interface.</td>
</tr>
<tr valign="top">
+<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getURI()</code>
+<br>
+ &nbsp;&nbsp;&nbsp;&nbsp;
+ Get the URI for this feature</td>
+</tr>
+<tr valign="top">
<td width="20%" align="right"><code>public IStatus</code></td><td width="" align="left"><code>validateValue(java.lang.String value)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
@@ -21321,6 +45377,134 @@ extends </pre>A feature supported by an XSLT processor.<p></p>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>TYPE_BOOLEAN</h2>
+<p>
+<code>public static java.lang.String <strong>TYPE_BOOLEAN</strong></code>
+</p>
+<table>
+<tr>
+<td>Constant for features of type <code>boolean</code></td>
+</tr>
+</table>
+<hr>
+<h2>TYPE_CLASS</h2>
+<p>
+<code>public static java.lang.String <strong>TYPE_CLASS</strong></code>
+</p>
+<table>
+<tr>
+<td>Constant for features of type <code>class</code></td>
+</tr>
+</table>
+<hr>
+<h2>TYPE_DOUBLE</h2>
+<p>
+<code>public static java.lang.String <strong>TYPE_DOUBLE</strong></code>
+</p>
+<table>
+<tr>
+<td>Constant for features of type <code>double</code></td>
+</tr>
+</table>
+<hr>
+<h2>TYPE_FLOAT</h2>
+<p>
+<code>public static java.lang.String <strong>TYPE_FLOAT</strong></code>
+</p>
+<table>
+<tr>
+<td>Constant for features of type <code>float</code></td>
+</tr>
+</table>
+<hr>
+<h2>TYPE_INT</h2>
+<p>
+<code>public static java.lang.String <strong>TYPE_INT</strong></code>
+</p>
+<table>
+<tr>
+<td>Constant for features of type <code>int</code></td>
+</tr>
+</table>
+<hr>
+<h2>TYPE_OBJECT</h2>
+<p>
+<code>public static java.lang.String <strong>TYPE_OBJECT</strong></code>
+</p>
+<table>
+<tr>
+<td>Constant for features of type <code>object</code></td>
+</tr>
+</table>
+<hr>
+<h2>TYPE_STRING</h2>
+<p>
+<code>public static java.lang.String <strong>TYPE_STRING</strong></code>
+</p>
+<table>
+<tr>
+<td>Constant for features of type <code>string</code></td>
+</tr>
+</table>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getDescription</h2>
+<p>
+<code>public java.lang.String <strong>getDescription</strong>()</code>
+</p>
+<p>Get a description for this feature</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code> - the feature description</p>
+<hr>
+<h2>getType</h2>
+<p>
+<code>public java.lang.String <strong>getType</strong>()</code>
+</p>
+<p>Get the type of this feature. Will match one of the TYPE constants in this interface.</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code> - the feature type: one of <code>TYPE_STRING</code>, <code>TYPE_BOOLEAN</code>, <code>TYPE_INT</code>, <code>TYPE_DOUBLE</code>, <code>TYPE_FLOAT</code>, <code>TYPE_CLASS</code>, or <code>TYPE_OBJECT</code></p>
+<hr>
+<h2>getURI</h2>
+<p>
+<code>public java.lang.String <strong>getURI</strong>()</code>
+</p>
+<p>Get the URI for this feature</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code> - the feature URI</p>
+<hr>
+<h2>validateValue</h2>
+<p>
+<code>public IStatus <strong>validateValue</strong>(java.lang.String value)</code>
+</p>
+<p>Determine whether the given value is a valid one for this feature.</p>
+<h3>Parameters</h3>
+<p>
+<code>value</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>IStatus</code> - an <code>IStatus</code> with severity <code>OK</code> if valid, or <code>ERROR</code> if invalid.</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.launching</strong></font>
</p>
@@ -21341,18 +45525,45 @@ extends </pre>An output property supported by an XSLT processor.<p></p>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getURI()</code>
+<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getDescription()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Get the URI of this output property.</td>
+ Get a description for this output property.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getDescription()</code>
+<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getURI()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Get a description for this output property.</td>
+ Get the URI of this output property.</td>
+</tr>
+</table>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
</tr>
</table>
+<h2>getDescription</h2>
+<p>
+<code>public java.lang.String <strong>getDescription</strong>()</code>
+</p>
+<p>Get a description for this output property.</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code> - a description</p>
+<hr>
+<h2>getURI</h2>
+<p>
+<code>public java.lang.String <strong>getURI</strong>()</code>
+</p>
+<p>Get the URI of this output property.</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code> - a unique URI</p>
<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.launching</strong></font>
@@ -21375,22 +45586,22 @@ extends </pre>An instance of an XSLT processor (e.g. Xalan 2.7.0).<p></p>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getId()</code>
+<td width="20%" align="right"><code>public org.eclipse.wst.xsl.launching.IDebugger</code></td><td width="" align="left"><code>getDebugger()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Get the unqiue id of this install</td>
+ Get the debugger associated with this install</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getName()</code>
+<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getId()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Get the name of this install</td>
+ Get the unqiue id of this install</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public org.eclipse.wst.xsl.launching.IProcessorType</code></td><td width="" align="left"><code>getProcessorType()</code>
+<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getName()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Get the the processor type associated with this install</td>
+ Get the name of this install</td>
</tr>
<tr valign="top">
<td width="20%" align="right"><code>public org.eclipse.wst.xsl.launching.IProcessorJar[]</code></td><td width="" align="left"><code>getProcessorJars()</code>
@@ -21399,10 +45610,10 @@ extends </pre>An instance of an XSLT processor (e.g. Xalan 2.7.0).<p></p>
Get the jar files for this processor</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>isContributed()</code>
+<td width="20%" align="right"><code>public org.eclipse.wst.xsl.launching.IProcessorType</code></td><td width="" align="left"><code>getProcessorType()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Get whether this install has been contributed via the <code>org.eclipse.wst.xsl.launching.processor</code> extension point.</td>
+ Get the the processor type associated with this install</td>
</tr>
<tr valign="top">
<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getSupports()</code>
@@ -21411,19 +45622,104 @@ extends </pre>An instance of an XSLT processor (e.g. Xalan 2.7.0).<p></p>
Get the list of supported XSLT versions</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>supports(java.lang.String xsltVersion)</code>
+<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>isContributed()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Get whether this install supports the specified xslt version.</td>
+ Get whether this install has been contributed via the <code>org.eclipse.wst.xsl.launching.processor</code> extension point.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public org.eclipse.wst.xsl.launching.IDebugger</code></td><td width="" align="left"><code>getDebugger()</code>
+<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>supports(java.lang.String xsltVersion)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Get the debugger associated with this install</td>
+ Get whether this install supports the specified xslt version.</td>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getDebugger</h2>
+<p>
+<code>public org.eclipse.wst.xsl.launching.IDebugger <strong>getDebugger</strong>()</code>
+</p>
+<p>Get the debugger associated with this install</p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.launching.IDebugger</code> - the debugger, or null if no debugger has been set</p>
+<hr>
+<h2>getId</h2>
+<p>
+<code>public java.lang.String <strong>getId</strong>()</code>
+</p>
+<p>Get the unqiue id of this install</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code> - the unique id</p>
+<hr>
+<h2>getName</h2>
+<p>
+<code>public java.lang.String <strong>getName</strong>()</code>
+</p>
+<p>Get the name of this install</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code> - the name of this install</p>
+<hr>
+<h2>getProcessorJars</h2>
+<p>
+<code>public org.eclipse.wst.xsl.launching.IProcessorJar[] <strong>getProcessorJars</strong>()</code>
+</p>
+<p>Get the jar files for this processor</p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.launching.IProcessorJar[]</code> - a set of jar files</p>
+<hr>
+<h2>getProcessorType</h2>
+<p>
+<code>public org.eclipse.wst.xsl.launching.IProcessorType <strong>getProcessorType</strong>()</code>
+</p>
+<p>Get the the processor type associated with this install</p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.launching.IProcessorType</code> - the processor type id</p>
+<hr>
+<h2>getSupports</h2>
+<p>
+<code>public java.lang.String <strong>getSupports</strong>()</code>
+</p>
+<p>Get the list of supported XSLT versions</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code> - <code>true</code> if this install has a debugger, otherwise <code>false</code>.</p>
+<hr>
+<h2>isContributed</h2>
+<p>
+<code>public boolean <strong>isContributed</strong>()</code>
+</p>
+<p>Get whether this install has been contributed via the <code>org.eclipse.wst.xsl.launching.processor</code> extension point.</p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code> - <code>true</code> if contributed via the extension point, otherwise <code>false</code>.</p>
+<hr>
+<h2>supports</h2>
+<p>
+<code>public boolean <strong>supports</strong>(java.lang.String xsltVersion)</code>
+</p>
+<p>Get whether this install supports the specified xslt version.</p>
+<h3>Parameters</h3>
+<p>
+<code>xsltVersion</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code> - <code>true</code> if this install supports the version, otherwise <code>false</code>.</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.launching</strong></font>
</p>
@@ -21444,25 +45740,64 @@ extends </pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getId()</code>
+<td width="20%" align="right"><code>public java.lang.String[]</code></td><td width="" align="left"><code>getClasspathEntries()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getInvokerClassName()</code>
+<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getId()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.lang.String[]</code></td><td width="" align="left"><code>getClasspathEntries()</code>
+<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getInvokerClassName()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getClasspathEntries</h2>
+<p>
+<code>public java.lang.String[] <strong>getClasspathEntries</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String[]</code>
+</p>
+<hr>
+<h2>getId</h2>
+<p>
+<code>public java.lang.String <strong>getId</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
+<h2>getInvokerClassName</h2>
+<p>
+<code>public java.lang.String <strong>getInvokerClassName</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.launching</strong></font>
</p>
@@ -21484,18 +45819,45 @@ extends </pre>A jar file for an XSLT processor<p></p>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public IPath</code></td><td width="" align="left"><code>getPath()</code>
+<td width="20%" align="right"><code>public java.net.URL</code></td><td width="" align="left"><code>asURL()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- The path may be relative or absolute; in the workspace or external.</td>
+ The URL will always be absolute and can be opened.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.net.URL</code></td><td width="" align="left"><code>asURL()</code>
+<td width="20%" align="right"><code>public IPath</code></td><td width="" align="left"><code>getPath()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- The URL will always be absolute and can be opened.</td>
+ The path may be relative or absolute; in the workspace or external.</td>
+</tr>
+</table>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
</tr>
</table>
+<h2>asURL</h2>
+<p>
+<code>public java.net.URL <strong>asURL</strong>()</code>
+</p>
+<p>The URL will always be absolute and can be opened.</p>
+<h3>Returns</h3>
+<p>
+<code>java.net.URL</code> - a URL to the jar</p>
+<hr>
+<h2>getPath</h2>
+<p>
+<code>public IPath <strong>getPath</strong>()</code>
+</p>
+<p>The path may be relative or absolute; in the workspace or external.</p>
+<h3>Returns</h3>
+<p>
+<code>IPath</code> - the path to this jar</p>
<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.launching</strong></font>
@@ -21518,55 +45880,144 @@ extends </pre>A particular type of XSLT Processor (e.g. Xalan) for which there m
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getId()</code>
+<td width="20%" align="right"><code>public org.eclipse.wst.xsl.launching.IFeature[]</code></td><td width="" align="left"><code>getFeatures()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getLabel()</code>
+<td width="20%" align="right"><code>public java.util.Map</code></td><td width="" align="left"><code>getFeatureValues()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>isJREDefault()</code>
+<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getId()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getTransformerFactoryName()</code>
+<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getLabel()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public org.eclipse.wst.xsl.launching.IFeature[]</code></td><td width="" align="left"><code>getFeatures()</code>
+<td width="20%" align="right"><code>public org.eclipse.wst.xsl.launching.IOutputProperty[]</code></td><td width="" align="left"><code>getOutputProperties()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.util.Map</code></td><td width="" align="left"><code>getFeatureValues()</code>
+<td width="20%" align="right"><code>public java.util.Properties</code></td><td width="" align="left"><code>getOutputPropertyValues()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public org.eclipse.wst.xsl.launching.IOutputProperty[]</code></td><td width="" align="left"><code>getOutputProperties()</code>
+<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getTransformerFactoryName()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.util.Properties</code></td><td width="" align="left"><code>getOutputPropertyValues()</code>
+<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>isJREDefault()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getFeatures</h2>
+<p>
+<code>public org.eclipse.wst.xsl.launching.IFeature[] <strong>getFeatures</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.launching.IFeature[]</code>
+</p>
+<hr>
+<h2>getFeatureValues</h2>
+<p>
+<code>public java.util.Map <strong>getFeatureValues</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.util.Map</code>
+</p>
+<hr>
+<h2>getId</h2>
+<p>
+<code>public java.lang.String <strong>getId</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
+<h2>getLabel</h2>
+<p>
+<code>public java.lang.String <strong>getLabel</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
+<h2>getOutputProperties</h2>
+<p>
+<code>public org.eclipse.wst.xsl.launching.IOutputProperty[] <strong>getOutputProperties</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.launching.IOutputProperty[]</code>
+</p>
+<hr>
+<h2>getOutputPropertyValues</h2>
+<p>
+<code>public java.util.Properties <strong>getOutputPropertyValues</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.util.Properties</code>
+</p>
+<hr>
+<h2>getTransformerFactoryName</h2>
+<p>
+<code>public java.lang.String <strong>getTransformerFactoryName</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
+<h2>isJREDefault</h2>
+<p>
+<code>public boolean <strong>isJREDefault</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.launching</strong></font>
</p>
@@ -21594,6 +46045,29 @@ extends java.lang.Object</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getString</h2>
+<p>
+<code>public java.lang.String <strong>getString</strong>(java.lang.String key)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>key</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.launching</strong></font>
</p>
@@ -21614,7 +46088,7 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr>
-<td><code><strong>ProcessorInstall(java.lang.String id
+<td><code><strong>ProcessorInstall</strong>(java.lang.String id
,
java.lang.String label
,
@@ -21626,7 +46100,7 @@ extends java.lang.Object</pre>
,
java.lang.String supports
,
- boolean contributed)</strong></code></td>
+ boolean contributed)</code></td>
</tr>
</table>
<br>
@@ -21637,105 +46111,314 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getId()</code>
+<td width="20%" align="right"><code>public static org.eclipse.wst.xsl.launching.IProcessorJar[]</code></td><td width="" align="left"><code>createJars(java.lang.String bundleId
+ ,
+ java.lang.String classpath)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getName()</code>
+<td width="20%" align="right"><code>public org.eclipse.wst.xsl.launching.IDebugger</code></td><td width="" align="left"><code>getDebugger()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setName(java.lang.String name)</code>
+<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getId()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public org.eclipse.wst.xsl.launching.IProcessorJar[]</code></td><td width="" align="left"><code>getProcessorJars()</code>
+<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getName()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setProcessorJars(org.eclipse.wst.xsl.launching.IProcessorJar[] jars)</code>
+<td width="20%" align="right"><code>public org.eclipse.wst.xsl.launching.IProcessorJar[]</code></td><td width="" align="left"><code>getProcessorJars()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getProcessorTypeId()</code>
+<td width="20%" align="right"><code>public org.eclipse.wst.xsl.launching.IProcessorType</code></td><td width="" align="left"><code>getProcessorType()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public org.eclipse.wst.xsl.launching.IProcessorType</code></td><td width="" align="left"><code>getProcessorType()</code>
+<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getProcessorTypeId()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setProcessorTypeId(java.lang.String id)</code>
+<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getSupports()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>isContributed()</code>
+<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>hasDebugger()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static org.eclipse.wst.xsl.launching.IProcessorJar[]</code></td><td width="" align="left"><code>createJars(java.lang.String bundleId
- ,
- java.lang.String classpath)</code>
+<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>isContributed()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>hasDebugger()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setDebuggerId(java.lang.String debuggerId)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>supports(java.lang.String xsltVersion)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setName(java.lang.String name)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getSupports()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setProcessorJars(org.eclipse.wst.xsl.launching.IProcessorJar[] jars)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setSupports(java.lang.String supports)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setProcessorTypeId(java.lang.String id)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public org.eclipse.wst.xsl.launching.IDebugger</code></td><td width="" align="left"><code>getDebugger()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setSupports(java.lang.String supports)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setDebuggerId(java.lang.String debuggerId)</code>
+<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>supports(java.lang.String xsltVersion)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>ProcessorInstall</h2>
+<p>
+<code>public <strong>ProcessorInstall</strong>(java.lang.String id
+ ,
+ java.lang.String label
+ ,
+ java.lang.String typeId
+ ,
+ org.eclipse.wst.xsl.launching.IProcessorJar[] jars
+ ,
+ java.lang.String debuggerId
+ ,
+ java.lang.String supports
+ ,
+ boolean contributed)</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>createJars</h2>
+<p>
+<code>public org.eclipse.wst.xsl.launching.IProcessorJar[] <strong>createJars</strong>(java.lang.String bundleId
+ ,
+ java.lang.String classpath)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>bundleId</code>
+</p>
+<p>
+<code>classpath</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.launching.IProcessorJar[]</code>
+</p>
+<hr>
+<h2>getDebugger</h2>
+<p>
+<code>public org.eclipse.wst.xsl.launching.IDebugger <strong>getDebugger</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.launching.IDebugger</code>
+</p>
+<hr>
+<h2>getId</h2>
+<p>
+<code>public java.lang.String <strong>getId</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
+<h2>getName</h2>
+<p>
+<code>public java.lang.String <strong>getName</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
+<h2>getProcessorJars</h2>
+<p>
+<code>public org.eclipse.wst.xsl.launching.IProcessorJar[] <strong>getProcessorJars</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.launching.IProcessorJar[]</code>
+</p>
+<hr>
+<h2>getProcessorType</h2>
+<p>
+<code>public org.eclipse.wst.xsl.launching.IProcessorType <strong>getProcessorType</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.launching.IProcessorType</code>
+</p>
+<hr>
+<h2>getProcessorTypeId</h2>
+<p>
+<code>public java.lang.String <strong>getProcessorTypeId</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
+<h2>getSupports</h2>
+<p>
+<code>public java.lang.String <strong>getSupports</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
+<h2>hasDebugger</h2>
+<p>
+<code>public boolean <strong>hasDebugger</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<hr>
+<h2>isContributed</h2>
+<p>
+<code>public boolean <strong>isContributed</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<hr>
+<h2>setDebuggerId</h2>
+<p>
+<code>public void <strong>setDebuggerId</strong>(java.lang.String debuggerId)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>debuggerId</code>
+</p>
+<hr>
+<h2>setName</h2>
+<p>
+<code>public void <strong>setName</strong>(java.lang.String name)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>name</code>
+</p>
+<hr>
+<h2>setProcessorJars</h2>
+<p>
+<code>public void <strong>setProcessorJars</strong>(org.eclipse.wst.xsl.launching.IProcessorJar[] jars)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>jars</code>
+</p>
+<hr>
+<h2>setProcessorTypeId</h2>
+<p>
+<code>public void <strong>setProcessorTypeId</strong>(java.lang.String id)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>id</code>
+</p>
+<hr>
+<h2>setSupports</h2>
+<p>
+<code>public void <strong>setSupports</strong>(java.lang.String supports)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>supports</code>
+</p>
+<hr>
+<h2>supports</h2>
+<p>
+<code>public boolean <strong>supports</strong>(java.lang.String xsltVersion)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>xsltVersion</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.launching</strong></font>
</p>
@@ -21756,163 +46439,163 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>INVOKER_DESCRIPTOR</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ATTR_BASE_URI_DIRECTORY</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ATTR_PROCESSOR</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ATTR_BASE_URI_TYPE</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ATTR_LAUNCH_TYPE</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ATTR_DEFAULT_DEBUGGING_INSTALL_ID</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ATTR_BASE_URI_TYPE</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ATTR_FEATURES</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ATTR_BASE_URI_DIRECTORY</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ATTR_INPUT_FILE</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ATTR_PROJECT_NAME</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ATTR_JRE_DEFAULT_TYPE_TYPE</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ATTR_INPUT_FILE</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ATTR_LAUNCH_TYPE</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ATTR_OUTPUT_FILE</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ATTR_OPEN_FILE</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ATTR_OUTPUT_METHOD</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ATTR_OUTPUT_FILE</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ATTR_OUTPUT_PROPERTIES</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ATTR_OUTPUT_METHOD</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ATTR_STYLESHEETS_LIST</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ATTR_OUTPUT_PROPERTIES</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ATTR_RENDER_TO</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ATTR_PERFORM_RENDER</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ID_LAUNCH_CONFIG_TYPE</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ATTR_PIPELINE</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ATTR_PERFORM_RENDER</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ATTR_PROCESSOR</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ATTR_USE_DEFAULT_OUTPUT_FILE</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ATTR_PROCESSOR_WORKING_DIR</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ATTR_OPEN_FILE</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ATTR_PROJECT_NAME</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ATTR_PROCESSOR_WORKING_DIR</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ATTR_RENDER_TO</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ATTR_USE_DEFAULT_PROCESSOR_WORKING_DIR</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ATTR_STYLESHEETS_LIST</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ATTR_USE_DEFAULT_PROCESSOR</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ATTR_USE_DEFAULT_OUTPUT_FILE</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ATTR_USE_FEATURES_FROM_PREFERENCES</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ATTR_USE_DEFAULT_PROCESSOR</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ATTR_USE_PROPERTIES_FROM_PREFERENCES</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ATTR_USE_DEFAULT_PROCESSOR_WORKING_DIR</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ATTR_JRE_DEFAULT_TYPE_TYPE</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ATTR_USE_FEATURES_FROM_PREFERENCES</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ATTR_FEATURES</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ATTR_USE_PROPERTIES_FROM_PREFERENCES</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ATTR_PIPELINE</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ID_LAUNCH_CONFIG_TYPE</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>ATTR_DEFAULT_DEBUGGING_INSTALL_ID</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>INVOKER_DESCRIPTOR</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>XALAN_TYPE_ID</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>SAXONB_TYPE_ID</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>SAXONB_TYPE_ID</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>XALAN_TYPE_ID</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@@ -21926,7 +46609,7 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr>
-<td><code><strong>XSLLaunchConfigurationConstants()</strong></code></td>
+<td><code><strong>XSLLaunchConfigurationConstants</strong>()</code></td>
</tr>
</table>
<br>
@@ -21938,6 +46621,165 @@ extends java.lang.Object</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>ATTR_BASE_URI_DIRECTORY</h2>
+<p>
+<code>public static java.lang.String <strong>ATTR_BASE_URI_DIRECTORY</strong></code>
+</p>
+<hr>
+<h2>ATTR_BASE_URI_TYPE</h2>
+<p>
+<code>public static java.lang.String <strong>ATTR_BASE_URI_TYPE</strong></code>
+</p>
+<hr>
+<h2>ATTR_DEFAULT_DEBUGGING_INSTALL_ID</h2>
+<p>
+<code>public static java.lang.String <strong>ATTR_DEFAULT_DEBUGGING_INSTALL_ID</strong></code>
+</p>
+<hr>
+<h2>ATTR_FEATURES</h2>
+<p>
+<code>public static java.lang.String <strong>ATTR_FEATURES</strong></code>
+</p>
+<hr>
+<h2>ATTR_INPUT_FILE</h2>
+<p>
+<code>public static java.lang.String <strong>ATTR_INPUT_FILE</strong></code>
+</p>
+<hr>
+<h2>ATTR_JRE_DEFAULT_TYPE_TYPE</h2>
+<p>
+<code>public static java.lang.String <strong>ATTR_JRE_DEFAULT_TYPE_TYPE</strong></code>
+</p>
+<hr>
+<h2>ATTR_LAUNCH_TYPE</h2>
+<p>
+<code>public static java.lang.String <strong>ATTR_LAUNCH_TYPE</strong></code>
+</p>
+<hr>
+<h2>ATTR_OPEN_FILE</h2>
+<p>
+<code>public static java.lang.String <strong>ATTR_OPEN_FILE</strong></code>
+</p>
+<hr>
+<h2>ATTR_OUTPUT_FILE</h2>
+<p>
+<code>public static java.lang.String <strong>ATTR_OUTPUT_FILE</strong></code>
+</p>
+<hr>
+<h2>ATTR_OUTPUT_METHOD</h2>
+<p>
+<code>public static java.lang.String <strong>ATTR_OUTPUT_METHOD</strong></code>
+</p>
+<hr>
+<h2>ATTR_OUTPUT_PROPERTIES</h2>
+<p>
+<code>public static java.lang.String <strong>ATTR_OUTPUT_PROPERTIES</strong></code>
+</p>
+<hr>
+<h2>ATTR_PERFORM_RENDER</h2>
+<p>
+<code>public static java.lang.String <strong>ATTR_PERFORM_RENDER</strong></code>
+</p>
+<hr>
+<h2>ATTR_PIPELINE</h2>
+<p>
+<code>public static java.lang.String <strong>ATTR_PIPELINE</strong></code>
+</p>
+<hr>
+<h2>ATTR_PROCESSOR</h2>
+<p>
+<code>public static java.lang.String <strong>ATTR_PROCESSOR</strong></code>
+</p>
+<hr>
+<h2>ATTR_PROCESSOR_WORKING_DIR</h2>
+<p>
+<code>public static java.lang.String <strong>ATTR_PROCESSOR_WORKING_DIR</strong></code>
+</p>
+<hr>
+<h2>ATTR_PROJECT_NAME</h2>
+<p>
+<code>public static java.lang.String <strong>ATTR_PROJECT_NAME</strong></code>
+</p>
+<hr>
+<h2>ATTR_RENDER_TO</h2>
+<p>
+<code>public static java.lang.String <strong>ATTR_RENDER_TO</strong></code>
+</p>
+<hr>
+<h2>ATTR_STYLESHEETS_LIST</h2>
+<p>
+<code>public static java.lang.String <strong>ATTR_STYLESHEETS_LIST</strong></code>
+</p>
+<hr>
+<h2>ATTR_USE_DEFAULT_OUTPUT_FILE</h2>
+<p>
+<code>public static java.lang.String <strong>ATTR_USE_DEFAULT_OUTPUT_FILE</strong></code>
+</p>
+<hr>
+<h2>ATTR_USE_DEFAULT_PROCESSOR</h2>
+<p>
+<code>public static java.lang.String <strong>ATTR_USE_DEFAULT_PROCESSOR</strong></code>
+</p>
+<hr>
+<h2>ATTR_USE_DEFAULT_PROCESSOR_WORKING_DIR</h2>
+<p>
+<code>public static java.lang.String <strong>ATTR_USE_DEFAULT_PROCESSOR_WORKING_DIR</strong></code>
+</p>
+<hr>
+<h2>ATTR_USE_FEATURES_FROM_PREFERENCES</h2>
+<p>
+<code>public static java.lang.String <strong>ATTR_USE_FEATURES_FROM_PREFERENCES</strong></code>
+</p>
+<hr>
+<h2>ATTR_USE_PROPERTIES_FROM_PREFERENCES</h2>
+<p>
+<code>public static java.lang.String <strong>ATTR_USE_PROPERTIES_FROM_PREFERENCES</strong></code>
+</p>
+<hr>
+<h2>ID_LAUNCH_CONFIG_TYPE</h2>
+<p>
+<code>public static java.lang.String <strong>ID_LAUNCH_CONFIG_TYPE</strong></code>
+</p>
+<hr>
+<h2>INVOKER_DESCRIPTOR</h2>
+<p>
+<code>public static java.lang.String <strong>INVOKER_DESCRIPTOR</strong></code>
+</p>
+<hr>
+<h2>SAXONB_TYPE_ID</h2>
+<p>
+<code>public static java.lang.String <strong>SAXONB_TYPE_ID</strong></code>
+</p>
+<hr>
+<h2>XALAN_TYPE_ID</h2>
+<p>
+<code>public static java.lang.String <strong>XALAN_TYPE_ID</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>XSLLaunchConfigurationConstants</h2>
+<p>
+<code>public <strong>XSLLaunchConfigurationConstants</strong>()</code>
+</p>
+<p></p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.launching</strong></font>
</p>
@@ -21958,31 +46800,31 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>PREF_PROCESSOR_XML</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>JRE_DEFAULT_PROCESSOR_ID</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>PREF_FEATURE_XML</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>JRE_DEFAULT_PROCESSOR_TYPE_ID</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>PREF_OUTPUT_PROPERTIES_XML</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>PREF_FEATURE_XML</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>JRE_DEFAULT_PROCESSOR_ID</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>PREF_OUTPUT_PROPERTIES_XML</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>JRE_DEFAULT_PROCESSOR_TYPE_ID</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>PREF_PROCESSOR_XML</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@@ -21996,7 +46838,7 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr>
-<td><code><strong>XSLTRuntime()</strong></code></td>
+<td><code><strong>XSLTRuntime</strong>()</code></td>
</tr>
</table>
<br>
@@ -22007,7 +46849,13 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static org.eclipse.wst.xsl.internal.launching.registry.ProcessorRegistry</code></td><td width="" align="left"><code>getProcessorRegistry()</code>
+<td width="20%" align="right"><code>public static java.util.Properties</code></td><td width="" align="left"><code>createDefaultOutputProperties(java.lang.String typeId)</code>
+<br>
+ &nbsp;&nbsp;&nbsp;&nbsp;
+ </td>
+</tr>
+<tr valign="top">
+<td width="20%" align="right"><code>public static org.eclipse.wst.xsl.launching.IProcessorJar</code></td><td width="" align="left"><code>createProcessorJar(IPath path)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@@ -22020,7 +46868,7 @@ extends java.lang.Object</pre>
well as the last id used for a standin.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static org.eclipse.wst.xsl.launching.IProcessorJar</code></td><td width="" align="left"><code>createProcessorJar(IPath path)</code>
+<td width="20%" align="right"><code>public static org.eclipse.wst.xsl.launching.IDebugger</code></td><td width="" align="left"><code>getDebugger(java.lang.String id)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@@ -22032,49 +46880,49 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static org.eclipse.wst.xsl.launching.IDebugger</code></td><td width="" align="left"><code>getDebugger(java.lang.String id)</code>
+<td width="20%" align="right"><code>public static org.eclipse.wst.xsl.launching.IProcessorInstall</code></td><td width="" align="left"><code>getDefaultProcessor()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static org.eclipse.wst.xsl.launching.IProcessorInstall[]</code></td><td width="" align="left"><code>getProcessors()</code>
+<td width="20%" align="right"><code>public static org.eclipse.wst.xsl.launching.IProcessorInstall</code></td><td width="" align="left"><code>getJREDefaultProcessor()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static org.eclipse.wst.xsl.launching.IProcessorInstall[]</code></td><td width="" align="left"><code>getProcessors(java.lang.String typeId)</code>
+<td width="20%" align="right"><code>public static org.eclipse.wst.xsl.launching.IProcessorInstall</code></td><td width="" align="left"><code>getProcessor(java.lang.String processorId)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static org.eclipse.wst.xsl.launching.IProcessorInstall</code></td><td width="" align="left"><code>getProcessor(java.lang.String processorId)</code>
+<td width="20%" align="right"><code>public static org.eclipse.wst.xsl.launching.IProcessorInvoker</code></td><td width="" align="left"><code>getProcessorInvoker(java.lang.String invokerId)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static org.eclipse.wst.xsl.launching.IProcessorInstall</code></td><td width="" align="left"><code>getDefaultProcessor()</code>
+<td width="20%" align="right"><code>public static org.eclipse.wst.xsl.launching.IProcessorInvoker[]</code></td><td width="" align="left"><code>getProcessorInvokers()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static org.eclipse.wst.xsl.launching.IProcessorInstall</code></td><td width="" align="left"><code>getJREDefaultProcessor()</code>
+<td width="20%" align="right"><code>public static org.eclipse.wst.xsl.internal.launching.registry.ProcessorRegistry</code></td><td width="" align="left"><code>getProcessorRegistry()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static org.eclipse.wst.xsl.launching.IProcessorType[]</code></td><td width="" align="left"><code>getProcessorTypes()</code>
+<td width="20%" align="right"><code>public static org.eclipse.wst.xsl.launching.IProcessorInstall[]</code></td><td width="" align="left"><code>getProcessors()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static org.eclipse.wst.xsl.launching.IProcessorType[]</code></td><td width="" align="left"><code>getProcessorTypesExclJREDefault()</code>
+<td width="20%" align="right"><code>public static org.eclipse.wst.xsl.launching.IProcessorInstall[]</code></td><td width="" align="left"><code>getProcessors(java.lang.String typeId)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@@ -22086,13 +46934,13 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static org.eclipse.wst.xsl.launching.IProcessorInvoker</code></td><td width="" align="left"><code>getProcessorInvoker(java.lang.String invokerId)</code>
+<td width="20%" align="right"><code>public static org.eclipse.wst.xsl.launching.IProcessorType[]</code></td><td width="" align="left"><code>getProcessorTypes()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static org.eclipse.wst.xsl.launching.IProcessorInvoker[]</code></td><td width="" align="left"><code>getProcessorInvokers()</code>
+<td width="20%" align="right"><code>public static org.eclipse.wst.xsl.launching.IProcessorType[]</code></td><td width="" align="left"><code>getProcessorTypesExclJREDefault()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@@ -22123,13 +46971,320 @@ extends java.lang.Object</pre>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
-<tr valign="top">
-<td width="20%" align="right"><code>public static java.util.Properties</code></td><td width="" align="left"><code>createDefaultOutputProperties(java.lang.String typeId)</code>
-<br>
- &nbsp;&nbsp;&nbsp;&nbsp;
- </td>
+</table>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>JRE_DEFAULT_PROCESSOR_ID</h2>
+<p>
+<code>public static java.lang.String <strong>JRE_DEFAULT_PROCESSOR_ID</strong></code>
+</p>
+<hr>
+<h2>JRE_DEFAULT_PROCESSOR_TYPE_ID</h2>
+<p>
+<code>public static java.lang.String <strong>JRE_DEFAULT_PROCESSOR_TYPE_ID</strong></code>
+</p>
+<hr>
+<h2>PREF_FEATURE_XML</h2>
+<p>
+<code>public static java.lang.String <strong>PREF_FEATURE_XML</strong></code>
+</p>
+<hr>
+<h2>PREF_OUTPUT_PROPERTIES_XML</h2>
+<p>
+<code>public static java.lang.String <strong>PREF_OUTPUT_PROPERTIES_XML</strong></code>
+</p>
+<hr>
+<h2>PREF_PROCESSOR_XML</h2>
+<p>
+<code>public static java.lang.String <strong>PREF_PROCESSOR_XML</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
</tr>
</table>
+<h2>XSLTRuntime</h2>
+<p>
+<code>public <strong>XSLTRuntime</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>createDefaultOutputProperties</h2>
+<p>
+<code>public java.util.Properties <strong>createDefaultOutputProperties</strong>(java.lang.String typeId)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>typeId</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>java.util.Properties</code>
+</p>
+<hr>
+<h2>createProcessorJar</h2>
+<p>
+<code>public org.eclipse.wst.xsl.launching.IProcessorJar <strong>createProcessorJar</strong>(IPath path)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>path</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.launching.IProcessorJar</code>
+</p>
+<hr>
+<h2>createUniqueProcessorId</h2>
+<p>
+<code>public java.lang.String <strong>createUniqueProcessorId</strong>(org.eclipse.wst.xsl.launching.IProcessorType type)</code>
+</p>
+<p>Find a unique processor install id. Check existing 'real' processors, as
+ well as the last id used for a standin.</p>
+<h3>Parameters</h3>
+<p>
+<code>type</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
+<h2>getDebugger</h2>
+<p>
+<code>public org.eclipse.wst.xsl.launching.IDebugger <strong>getDebugger</strong>(java.lang.String id)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>id</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.launching.IDebugger</code>
+</p>
+<hr>
+<h2>getDebuggers</h2>
+<p>
+<code>public org.eclipse.wst.xsl.launching.IDebugger[] <strong>getDebuggers</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.launching.IDebugger[]</code>
+</p>
+<hr>
+<h2>getDefaultProcessor</h2>
+<p>
+<code>public org.eclipse.wst.xsl.launching.IProcessorInstall <strong>getDefaultProcessor</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.launching.IProcessorInstall</code>
+</p>
+<hr>
+<h2>getJREDefaultProcessor</h2>
+<p>
+<code>public org.eclipse.wst.xsl.launching.IProcessorInstall <strong>getJREDefaultProcessor</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.launching.IProcessorInstall</code>
+</p>
+<hr>
+<h2>getProcessor</h2>
+<p>
+<code>public org.eclipse.wst.xsl.launching.IProcessorInstall <strong>getProcessor</strong>(java.lang.String processorId)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>processorId</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.launching.IProcessorInstall</code>
+</p>
+<hr>
+<h2>getProcessorInvoker</h2>
+<p>
+<code>public org.eclipse.wst.xsl.launching.IProcessorInvoker <strong>getProcessorInvoker</strong>(java.lang.String invokerId)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>invokerId</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.launching.IProcessorInvoker</code>
+</p>
+<hr>
+<h2>getProcessorInvokers</h2>
+<p>
+<code>public org.eclipse.wst.xsl.launching.IProcessorInvoker[] <strong>getProcessorInvokers</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.launching.IProcessorInvoker[]</code>
+</p>
+<hr>
+<h2>getProcessorRegistry</h2>
+<p>
+<code>public org.eclipse.wst.xsl.internal.launching.registry.ProcessorRegistry <strong>getProcessorRegistry</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.internal.launching.registry.ProcessorRegistry</code>
+</p>
+<hr>
+<h2>getProcessors</h2>
+<p>
+<code>public org.eclipse.wst.xsl.launching.IProcessorInstall[] <strong>getProcessors</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.launching.IProcessorInstall[]</code>
+</p>
+<hr>
+<h2>getProcessors</h2>
+<p>
+<code>public org.eclipse.wst.xsl.launching.IProcessorInstall[] <strong>getProcessors</strong>(java.lang.String typeId)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>typeId</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.launching.IProcessorInstall[]</code>
+</p>
+<hr>
+<h2>getProcessorType</h2>
+<p>
+<code>public org.eclipse.wst.xsl.launching.IProcessorType <strong>getProcessorType</strong>(java.lang.String id)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>id</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.launching.IProcessorType</code>
+</p>
+<hr>
+<h2>getProcessorTypes</h2>
+<p>
+<code>public org.eclipse.wst.xsl.launching.IProcessorType[] <strong>getProcessorTypes</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.launching.IProcessorType[]</code>
+</p>
+<hr>
+<h2>getProcessorTypesExclJREDefault</h2>
+<p>
+<code>public org.eclipse.wst.xsl.launching.IProcessorType[] <strong>getProcessorTypesExclJREDefault</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.launching.IProcessorType[]</code>
+</p>
+<hr>
+<h2>saveFeaturePreferences</h2>
+<p>
+<code>public void <strong>saveFeaturePreferences</strong>(java.util.Map typeFeatures
+ ,
+ IProgressMonitor monitor)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>typeFeatures</code>
+</p>
+<p>
+<code>monitor</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>CoreException</code>
+</p>
+<hr>
+<h2>saveOutputPropertyPreferences</h2>
+<p>
+<code>public void <strong>saveOutputPropertyPreferences</strong>(java.util.Map typeProperties
+ ,
+ IProgressMonitor monitor)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>typeProperties</code>
+</p>
+<p>
+<code>monitor</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>CoreException</code>
+</p>
+<hr>
+<h2>saveProcessorPreferences</h2>
+<p>
+<code>public void <strong>saveProcessorPreferences</strong>(org.eclipse.wst.xsl.launching.IProcessorInstall[] installs
+ ,
+ org.eclipse.wst.xsl.launching.IProcessorInstall defaultInstall
+ ,
+ IProgressMonitor monitor)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>installs</code>
+</p>
+<p>
+<code>defaultInstall</code>
+</p>
+<p>
+<code>monitor</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>CoreException</code>
+</p>
<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.launching.config</strong></font>
@@ -22151,55 +47306,55 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>TYPE_SUFFIX</code>
+<td width="20%" align="right"><code>public java.lang.String</code></td><td width="80%" align="left"><code>type</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>VALUE_SUFFIX</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>TYPE_BOOLEAN</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>TYPE_STRING</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>TYPE_CLASS</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>TYPE_BOOLEAN</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>TYPE_DOUBLE</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>TYPE_INT</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>TYPE_FLOAT</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>TYPE_DOUBLE</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>TYPE_INT</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>TYPE_FLOAT</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>TYPE_OBJECT</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>TYPE_CLASS</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>TYPE_STRING</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>TYPE_OBJECT</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>TYPE_SUFFIX</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@@ -22211,13 +47366,13 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.lang.String</code></td><td width="80%" align="left"><code>type</code>
+<td width="20%" align="right"><code>public java.lang.String</code></td><td width="80%" align="left"><code>value</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.lang.String</code></td><td width="80%" align="left"><code>value</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>VALUE_SUFFIX</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@@ -22231,11 +47386,11 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr>
-<td><code><strong>LaunchAttribute(java.lang.String uri
+<td><code><strong>LaunchAttribute</strong>(java.lang.String uri
,
java.lang.String type
,
- java.lang.String value)</strong></code></td>
+ java.lang.String value)</code></td>
</tr>
</table>
<br>
@@ -22246,7 +47401,7 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setValue(java.lang.String value)</code>
+<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>equals(java.lang.Object obj)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@@ -22264,13 +47419,158 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>equals(java.lang.Object obj)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setValue(java.lang.String value)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>type</h2>
+<p>
+<code>public java.lang.String <strong>type</strong></code>
+</p>
+<hr>
+<h2>TYPE_BOOLEAN</h2>
+<p>
+<code>public static java.lang.String <strong>TYPE_BOOLEAN</strong></code>
+</p>
+<hr>
+<h2>TYPE_CLASS</h2>
+<p>
+<code>public static java.lang.String <strong>TYPE_CLASS</strong></code>
+</p>
+<hr>
+<h2>TYPE_DOUBLE</h2>
+<p>
+<code>public static java.lang.String <strong>TYPE_DOUBLE</strong></code>
+</p>
+<hr>
+<h2>TYPE_FLOAT</h2>
+<p>
+<code>public static java.lang.String <strong>TYPE_FLOAT</strong></code>
+</p>
+<hr>
+<h2>TYPE_INT</h2>
+<p>
+<code>public static java.lang.String <strong>TYPE_INT</strong></code>
+</p>
+<hr>
+<h2>TYPE_OBJECT</h2>
+<p>
+<code>public static java.lang.String <strong>TYPE_OBJECT</strong></code>
+</p>
+<hr>
+<h2>TYPE_STRING</h2>
+<p>
+<code>public static java.lang.String <strong>TYPE_STRING</strong></code>
+</p>
+<hr>
+<h2>TYPE_SUFFIX</h2>
+<p>
+<code>public static java.lang.String <strong>TYPE_SUFFIX</strong></code>
+</p>
+<hr>
+<h2>uri</h2>
+<p>
+<code>public java.lang.String <strong>uri</strong></code>
+</p>
+<hr>
+<h2>value</h2>
+<p>
+<code>public java.lang.String <strong>value</strong></code>
+</p>
+<hr>
+<h2>VALUE_SUFFIX</h2>
+<p>
+<code>public static java.lang.String <strong>VALUE_SUFFIX</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>LaunchAttribute</h2>
+<p>
+<code>public <strong>LaunchAttribute</strong>(java.lang.String uri
+ ,
+ java.lang.String type
+ ,
+ java.lang.String value)</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>equals</h2>
+<p>
+<code>public boolean <strong>equals</strong>(java.lang.Object obj)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>obj</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<hr>
+<h2>getResolvedValue</h2>
+<p>
+<code>public java.lang.String <strong>getResolvedValue</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>CoreException</code>
+</p>
+<hr>
+<h2>hashCode</h2>
+<p>
+<code>public int <strong>hashCode</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>int</code>
+</p>
+<hr>
+<h2>setValue</h2>
+<p>
+<code>public void <strong>setValue</strong>(java.lang.String value)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>value</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.launching.config</strong></font>
</p>
@@ -22291,7 +47591,7 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr>
-<td><code><strong>LaunchFeatures()</strong></code></td>
+<td><code><strong>LaunchFeatures</strong>()</code></td>
</tr>
</table>
<br>
@@ -22302,13 +47602,13 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.util.Set</code></td><td width="" align="left"><code>getFeatures()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>addFeature(org.eclipse.wst.xsl.launching.config.LaunchAttribute feature)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>addFeature(org.eclipse.wst.xsl.launching.config.LaunchAttribute feature)</code>
+<td width="20%" align="right"><code>public static org.eclipse.wst.xsl.launching.config.LaunchFeatures</code></td><td width="" align="left"><code>fromXML(java.io.InputStream inputStream)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@@ -22320,25 +47620,131 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>removeFeature(java.lang.String uri)</code>
+<td width="20%" align="right"><code>public java.util.Set</code></td><td width="" align="left"><code>getFeatures()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>toXML()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>removeFeature(java.lang.String uri)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static org.eclipse.wst.xsl.launching.config.LaunchFeatures</code></td><td width="" align="left"><code>fromXML(java.io.InputStream inputStream)</code>
+<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>toXML()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>LaunchFeatures</h2>
+<p>
+<code>public <strong>LaunchFeatures</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>addFeature</h2>
+<p>
+<code>public void <strong>addFeature</strong>(org.eclipse.wst.xsl.launching.config.LaunchAttribute feature)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>feature</code>
+</p>
+<hr>
+<h2>fromXML</h2>
+<p>
+<code>public org.eclipse.wst.xsl.launching.config.LaunchFeatures <strong>fromXML</strong>(java.io.InputStream inputStream)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>inputStream</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.launching.config.LaunchFeatures</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>CoreException</code>
+</p>
+<hr>
+<h2>getFeature</h2>
+<p>
+<code>public org.eclipse.wst.xsl.launching.config.LaunchAttribute <strong>getFeature</strong>(java.lang.String uri)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>uri</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.launching.config.LaunchAttribute</code>
+</p>
+<hr>
+<h2>getFeatures</h2>
+<p>
+<code>public java.util.Set <strong>getFeatures</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.util.Set</code>
+</p>
+<hr>
+<h2>removeFeature</h2>
+<p>
+<code>public void <strong>removeFeature</strong>(java.lang.String uri)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>uri</code>
+</p>
+<hr>
+<h2>toXML</h2>
+<p>
+<code>public java.lang.String <strong>toXML</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>javax.xml.parsers.ParserConfigurationException</code>
+</p>
+<p>
+<code>java.io.IOException</code>
+</p>
+<p>
+<code>javax.xml.transform.TransformerException</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.launching.config</strong></font>
</p>
@@ -22359,7 +47765,7 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr>
-<td><code><strong>LaunchHelper(ILaunchConfiguration configuration)</strong></code></td>
+<td><code><strong>LaunchHelper</strong>(ILaunchConfiguration configuration)</code></td>
</tr>
</table>
<br>
@@ -22370,10 +47776,11 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public int</code></td><td width="" align="left"><code>getRequestPort()</code>
+<td width="20%" align="right"><code>public static int</code></td><td width="" align="left"><code>findFreePort()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- </td>
+ Returns a free port number on localhost, or -1 if unable to find a free
+ port.</td>
</tr>
<tr valign="top">
<td width="20%" align="right"><code>public int</code></td><td width="" align="left"><code>getEventPort()</code>
@@ -22382,13 +47789,13 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public org.eclipse.wst.xsl.launching.config.LaunchProperties</code></td><td width="" align="left"><code>getProperties()</code>
+<td width="20%" align="right"><code>public org.eclipse.wst.xsl.launching.config.LaunchFeatures</code></td><td width="" align="left"><code>getFeatures()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public org.eclipse.wst.xsl.launching.config.LaunchFeatures</code></td><td width="" align="left"><code>getFeatures()</code>
+<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>getOpenFileOnCompletion()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@@ -22400,38 +47807,165 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.net.URL</code></td><td width="" align="left"><code>getSource()</code>
+<td width="20%" align="right"><code>public org.eclipse.wst.xsl.launching.config.LaunchProperties</code></td><td width="" align="left"><code>getProperties()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.io.File</code></td><td width="" align="left"><code>getTarget()</code>
+<td width="20%" align="right"><code>public int</code></td><td width="" align="left"><code>getRequestPort()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>save(java.io.File file)</code>
+<td width="20%" align="right"><code>public java.net.URL</code></td><td width="" align="left"><code>getSource()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static int</code></td><td width="" align="left"><code>findFreePort()</code>
+<td width="20%" align="right"><code>public java.io.File</code></td><td width="" align="left"><code>getTarget()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Returns a free port number on localhost, or -1 if unable to find a free
- port.</td>
+ </td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>getOpenFileOnCompletion()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>save(java.io.File file)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>LaunchHelper</h2>
+<p>
+<code>public <strong>LaunchHelper</strong>(ILaunchConfiguration configuration)</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>findFreePort</h2>
+<p>
+<code>public int <strong>findFreePort</strong>()</code>
+</p>
+<p>Returns a free port number on localhost, or -1 if unable to find a free
+ port.</p>
+<h3>Returns</h3>
+<p>
+<code>int</code> - a free port number on localhost, or -1 if unable to find a free port</p>
+<hr>
+<h2>getEventPort</h2>
+<p>
+<code>public int <strong>getEventPort</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>int</code>
+</p>
+<hr>
+<h2>getFeatures</h2>
+<p>
+<code>public org.eclipse.wst.xsl.launching.config.LaunchFeatures <strong>getFeatures</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.launching.config.LaunchFeatures</code>
+</p>
+<hr>
+<h2>getOpenFileOnCompletion</h2>
+<p>
+<code>public boolean <strong>getOpenFileOnCompletion</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<hr>
+<h2>getPipeline</h2>
+<p>
+<code>public org.eclipse.wst.xsl.launching.config.LaunchPipeline <strong>getPipeline</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.launching.config.LaunchPipeline</code>
+</p>
+<hr>
+<h2>getProperties</h2>
+<p>
+<code>public org.eclipse.wst.xsl.launching.config.LaunchProperties <strong>getProperties</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.launching.config.LaunchProperties</code>
+</p>
+<hr>
+<h2>getRequestPort</h2>
+<p>
+<code>public int <strong>getRequestPort</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>int</code>
+</p>
+<hr>
+<h2>getSource</h2>
+<p>
+<code>public java.net.URL <strong>getSource</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.net.URL</code>
+</p>
+<hr>
+<h2>getTarget</h2>
+<p>
+<code>public java.io.File <strong>getTarget</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.io.File</code>
+</p>
+<hr>
+<h2>save</h2>
+<p>
+<code>public void <strong>save</strong>(java.io.File file)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>file</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>CoreException</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.launching.config</strong></font>
</p>
@@ -22452,7 +47986,7 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr>
-<td><code><strong>LaunchPipeline()</strong></code></td>
+<td><code><strong>LaunchPipeline</strong>()</code></td>
</tr>
</table>
<br>
@@ -22463,33 +47997,33 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.util.Properties</code></td><td width="" align="left"><code>getOutputProperties()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>addOutputProperty(java.lang.String name
+ ,
+ java.lang.String value)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>addOutputProperty(java.lang.String name
- ,
- java.lang.String value)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>addTransformDef(org.eclipse.wst.xsl.launching.config.LaunchTransform tdef)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.util.List</code></td><td width="" align="left"><code>getTransformDefs()</code>
+<td width="20%" align="right"><code>public static org.eclipse.wst.xsl.launching.config.LaunchPipeline</code></td><td width="" align="left"><code>fromXML(java.io.InputStream inputStream)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setTransformDefs(java.util.List transforms)</code>
+<td width="20%" align="right"><code>public java.util.Properties</code></td><td width="" align="left"><code>getOutputProperties()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>addTransformDef(org.eclipse.wst.xsl.launching.config.LaunchTransform tdef)</code>
+<td width="20%" align="right"><code>public java.util.List</code></td><td width="" align="left"><code>getTransformDefs()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@@ -22501,19 +48035,140 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>toXML()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setTransformDefs(java.util.List transforms)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static org.eclipse.wst.xsl.launching.config.LaunchPipeline</code></td><td width="" align="left"><code>fromXML(java.io.InputStream inputStream)</code>
+<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>toXML()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>LaunchPipeline</h2>
+<p>
+<code>public <strong>LaunchPipeline</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>addOutputProperty</h2>
+<p>
+<code>public void <strong>addOutputProperty</strong>(java.lang.String name
+ ,
+ java.lang.String value)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>name</code>
+</p>
+<p>
+<code>value</code>
+</p>
+<hr>
+<h2>addTransformDef</h2>
+<p>
+<code>public void <strong>addTransformDef</strong>(org.eclipse.wst.xsl.launching.config.LaunchTransform tdef)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>tdef</code>
+</p>
+<hr>
+<h2>fromXML</h2>
+<p>
+<code>public org.eclipse.wst.xsl.launching.config.LaunchPipeline <strong>fromXML</strong>(java.io.InputStream inputStream)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>inputStream</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.launching.config.LaunchPipeline</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>CoreException</code>
+</p>
+<hr>
+<h2>getOutputProperties</h2>
+<p>
+<code>public java.util.Properties <strong>getOutputProperties</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.util.Properties</code>
+</p>
+<hr>
+<h2>getTransformDefs</h2>
+<p>
+<code>public java.util.List <strong>getTransformDefs</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.util.List</code>
+</p>
+<hr>
+<h2>removeTransformDef</h2>
+<p>
+<code>public void <strong>removeTransformDef</strong>(org.eclipse.wst.xsl.launching.config.LaunchTransform tdef)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>tdef</code>
+</p>
+<hr>
+<h2>setTransformDefs</h2>
+<p>
+<code>public void <strong>setTransformDefs</strong>(java.util.List transforms)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>transforms</code>
+</p>
+<hr>
+<h2>toXML</h2>
+<p>
+<code>public java.lang.String <strong>toXML</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>CoreException</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.launching.config</strong></font>
</p>
@@ -22534,7 +48189,7 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr>
-<td><code><strong>LaunchProperties()</strong></code></td>
+<td><code><strong>LaunchProperties</strong>()</code></td>
</tr>
</table>
<br>
@@ -22545,15 +48200,13 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.util.Map</code></td><td width="" align="left"><code>getProperties()</code>
+<td width="20%" align="right"><code>public static org.eclipse.wst.xsl.launching.config.LaunchProperties</code></td><td width="" align="left"><code>fromXML(java.io.InputStream inputStream)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setProperty(java.lang.String name
- ,
- java.lang.String value)</code>
+<td width="20%" align="right"><code>public java.util.Map</code></td><td width="" align="left"><code>getProperties()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@@ -22571,19 +48224,132 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>toXML()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setProperty(java.lang.String name
+ ,
+ java.lang.String value)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static org.eclipse.wst.xsl.launching.config.LaunchProperties</code></td><td width="" align="left"><code>fromXML(java.io.InputStream inputStream)</code>
+<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>toXML()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>LaunchProperties</h2>
+<p>
+<code>public <strong>LaunchProperties</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>fromXML</h2>
+<p>
+<code>public org.eclipse.wst.xsl.launching.config.LaunchProperties <strong>fromXML</strong>(java.io.InputStream inputStream)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>inputStream</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.launching.config.LaunchProperties</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>CoreException</code>
+</p>
+<hr>
+<h2>getProperties</h2>
+<p>
+<code>public java.util.Map <strong>getProperties</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.util.Map</code>
+</p>
+<hr>
+<h2>getProperty</h2>
+<p>
+<code>public java.lang.String <strong>getProperty</strong>(java.lang.String name)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>name</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
+<h2>removeProperty</h2>
+<p>
+<code>public void <strong>removeProperty</strong>(java.lang.String name)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>name</code>
+</p>
+<hr>
+<h2>setProperty</h2>
+<p>
+<code>public void <strong>setProperty</strong>(java.lang.String name
+ ,
+ java.lang.String value)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>name</code>
+</p>
+<p>
+<code>value</code>
+</p>
+<hr>
+<h2>toXML</h2>
+<p>
+<code>public java.lang.String <strong>toXML</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>javax.xml.parsers.ParserConfigurationException</code>
+</p>
+<p>
+<code>java.io.IOException</code>
+</p>
+<p>
+<code>javax.xml.transform.TransformerException</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.launching.config</strong></font>
</p>
@@ -22604,13 +48370,13 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>RESOURCE_TYPE</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>EXTERNAL_TYPE</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>EXTERNAL_TYPE</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>RESOURCE_TYPE</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@@ -22624,9 +48390,9 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr>
-<td><code><strong>LaunchTransform(java.lang.String path
+<td><code><strong>LaunchTransform</strong>(java.lang.String path
,
- java.lang.String pathType)</strong></code></td>
+ java.lang.String pathType)</code></td>
</tr>
</table>
<br>
@@ -22637,56 +48403,56 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.util.Set</code></td><td width="" align="left"><code>getParameters()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>addParameter(org.eclipse.wst.xsl.launching.config.LaunchAttribute parameter)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>addParameter(org.eclipse.wst.xsl.launching.config.LaunchAttribute parameter)</code>
+<td width="20%" align="right"><code>public org.w3c.dom.Element</code></td><td width="" align="left"><code>asXML(org.w3c.dom.Document doc)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getResolver()</code>
+<td width="20%" align="right"><code>public static org.eclipse.wst.xsl.launching.config.LaunchTransform</code></td><td width="" align="left"><code>fromXML(org.w3c.dom.Element transformEl)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setResolver(java.lang.String resolver)</code>
+<td width="20%" align="right"><code>public IPath</code></td><td width="" align="left"><code>getLocation()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- </td>
+ The full path to the file in the local file system (with any string
+ subsitutions already made).</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public IPath</code></td><td width="" align="left"><code>getPath()</code>
+<td width="20%" align="right"><code>public java.util.Set</code></td><td width="" align="left"><code>getParameters()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getPathType()</code>
+<td width="20%" align="right"><code>public IPath</code></td><td width="" align="left"><code>getPath()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public IPath</code></td><td width="" align="left"><code>getLocation()</code>
+<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getPathType()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- The full path to the file in the local file system (with any string
- subsitutions already made).</td>
+ </td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public org.w3c.dom.Element</code></td><td width="" align="left"><code>asXML(org.w3c.dom.Document doc)</code>
+<td width="20%" align="right"><code>public org.eclipse.wst.xsl.launching.config.LaunchPipeline</code></td><td width="" align="left"><code>getPipeline()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static org.eclipse.wst.xsl.launching.config.LaunchTransform</code></td><td width="" align="left"><code>fromXML(org.w3c.dom.Element transformEl)</code>
+<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getResolver()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@@ -22698,13 +48464,188 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public org.eclipse.wst.xsl.launching.config.LaunchPipeline</code></td><td width="" align="left"><code>getPipeline()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setResolver(java.lang.String resolver)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>EXTERNAL_TYPE</h2>
+<p>
+<code>public static java.lang.String <strong>EXTERNAL_TYPE</strong></code>
+</p>
+<hr>
+<h2>RESOURCE_TYPE</h2>
+<p>
+<code>public static java.lang.String <strong>RESOURCE_TYPE</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>LaunchTransform</h2>
+<p>
+<code>public <strong>LaunchTransform</strong>(java.lang.String path
+ ,
+ java.lang.String pathType)</code>
+</p>
+<p>The path may be an IResource to a file in the workspace, or an IPath to a
+ file outside of the workspace - depending on the pathType. The path
+ should be created using IPath.toPortableString(). The path may also
+ contain variables defined by the VariablePlugin.</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>addParameter</h2>
+<p>
+<code>public void <strong>addParameter</strong>(org.eclipse.wst.xsl.launching.config.LaunchAttribute parameter)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>parameter</code>
+</p>
+<hr>
+<h2>asXML</h2>
+<p>
+<code>public org.w3c.dom.Element <strong>asXML</strong>(org.w3c.dom.Document doc)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>doc</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>org.w3c.dom.Element</code>
+</p>
+<hr>
+<h2>fromXML</h2>
+<p>
+<code>public org.eclipse.wst.xsl.launching.config.LaunchTransform <strong>fromXML</strong>(org.w3c.dom.Element transformEl)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>transformEl</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.launching.config.LaunchTransform</code>
+</p>
+<hr>
+<h2>getLocation</h2>
+<p>
+<code>public IPath <strong>getLocation</strong>()</code>
+</p>
+<p>The full path to the file in the local file system (with any string
+ subsitutions already made).</p>
+<h3>Returns</h3>
+<p>
+<code>IPath</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>CoreException</code>
+</p>
+<hr>
+<h2>getParameters</h2>
+<p>
+<code>public java.util.Set <strong>getParameters</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.util.Set</code>
+</p>
+<hr>
+<h2>getPath</h2>
+<p>
+<code>public IPath <strong>getPath</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>IPath</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>CoreException</code>
+</p>
+<hr>
+<h2>getPathType</h2>
+<p>
+<code>public java.lang.String <strong>getPathType</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
+<h2>getPipeline</h2>
+<p>
+<code>public org.eclipse.wst.xsl.launching.config.LaunchPipeline <strong>getPipeline</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.launching.config.LaunchPipeline</code>
+</p>
+<hr>
+<h2>getResolver</h2>
+<p>
+<code>public java.lang.String <strong>getResolver</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
+<h2>setPipeline</h2>
+<p>
+<code>public void <strong>setPipeline</strong>(org.eclipse.wst.xsl.launching.config.LaunchPipeline pipeline)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>pipeline</code>
+</p>
+<hr>
+<h2>setResolver</h2>
+<p>
+<code>public void <strong>setResolver</strong>(java.lang.String resolver)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>resolver</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.launching.config</strong></font>
</p>
@@ -22732,6 +48673,29 @@ extends java.lang.Object</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getString</h2>
+<p>
+<code>public java.lang.String <strong>getString</strong>(java.lang.String key)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>key</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.launching.model</strong></font>
</p>
@@ -22766,6 +48730,25 @@ extends </pre>
</table>
<br>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>ID_XSL_DEBUG_MODEL</h2>
+<p>
+<code>public static java.lang.String <strong>ID_XSL_DEBUG_MODEL</strong></code>
+</p>
+<hr>
+<h2>MARKER_ID</h2>
+<p>
+<code>public static java.lang.String <strong>MARKER_ID</strong></code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.launching.model</strong></font>
</p>
@@ -22786,43 +48769,132 @@ extends </pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public org.eclipse.wst.xsl.launching.model.XSLVariable</code></td><td width="" align="left"><code>getVariable(int varId)</code>
+<td width="20%" align="right"><code>public IStackFrame[]</code></td><td width="" align="left"><code>getStackFrames()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public IStackFrame[]</code></td><td width="" align="left"><code>getStackFrames()</code>
+<td width="20%" align="right"><code>public org.eclipse.wst.xsl.launching.model.XSLVariable</code></td><td width="" align="left"><code>getVariable(int varId)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>stepInto()</code>
+<td width="20%" align="right"><code>public IValue</code></td><td width="" align="left"><code>getVariableValue(org.eclipse.wst.xsl.launching.model.XSLVariable variable)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>stepOver()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>stepInto()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>stepReturn()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>stepOver()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public IValue</code></td><td width="" align="left"><code>getVariableValue(org.eclipse.wst.xsl.launching.model.XSLVariable variable)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>stepReturn()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getStackFrames</h2>
+<p>
+<code>public IStackFrame[] <strong>getStackFrames</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>IStackFrame[]</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>DebugException</code>
+</p>
+<hr>
+<h2>getVariable</h2>
+<p>
+<code>public org.eclipse.wst.xsl.launching.model.XSLVariable <strong>getVariable</strong>(int varId)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>varId</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.launching.model.XSLVariable</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>DebugException</code>
+</p>
+<hr>
+<h2>getVariableValue</h2>
+<p>
+<code>public IValue <strong>getVariableValue</strong>(org.eclipse.wst.xsl.launching.model.XSLVariable variable)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>variable</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>IValue</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>DebugException</code>
+</p>
+<hr>
+<h2>stepInto</h2>
+<p>
+<code>public void <strong>stepInto</strong>()</code>
+</p>
+<p></p>
+<h3>Throws:</h3>
+<p>
+<code>DebugException</code>
+</p>
+<hr>
+<h2>stepOver</h2>
+<p>
+<code>public void <strong>stepOver</strong>()</code>
+</p>
+<p></p>
+<h3>Throws:</h3>
+<p>
+<code>DebugException</code>
+</p>
+<hr>
+<h2>stepReturn</h2>
+<p>
+<code>public void <strong>stepReturn</strong>()</code>
+</p>
+<p></p>
+<h3>Throws:</h3>
+<p>
+<code>DebugException</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.launching.model</strong></font>
</p>
@@ -22850,6 +48922,29 @@ extends java.lang.Object</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getString</h2>
+<p>
+<code>public java.lang.String <strong>getString</strong>(java.lang.String key)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>key</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.launching.model</strong></font>
</p>
@@ -22870,7 +48965,7 @@ extends DebugElement</pre>
</td>
</tr>
<tr>
-<td><code><strong>XSLDebugElement(IDebugTarget target)</strong></code></td>
+<td><code><strong>XSLDebugElement</strong>(IDebugTarget target)</code></td>
</tr>
</table>
<br>
@@ -22881,25 +48976,25 @@ extends DebugElement</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getModelIdentifier()</code>
+<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>canDisconnect()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.lang.Object</code></td><td width="" align="left"><code>getAdapter(java.lang.Class adapter)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>disconnect()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>canDisconnect()</code>
+<td width="20%" align="right"><code>public java.lang.Object</code></td><td width="" align="left"><code>getAdapter(java.lang.Class adapter)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>disconnect()</code>
+<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getModelIdentifier()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@@ -22912,6 +49007,84 @@ extends DebugElement</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>XSLDebugElement</h2>
+<p>
+<code>public <strong>XSLDebugElement</strong>(IDebugTarget target)</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>canDisconnect</h2>
+<p>
+<code>public boolean <strong>canDisconnect</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<hr>
+<h2>disconnect</h2>
+<p>
+<code>public void <strong>disconnect</strong>()</code>
+</p>
+<p></p>
+<h3>Throws:</h3>
+<p>
+<code>DebugException</code>
+</p>
+<hr>
+<h2>getAdapter</h2>
+<p>
+<code>public java.lang.Object <strong>getAdapter</strong>(java.lang.Class adapter)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>adapter</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.Object</code>
+</p>
+<hr>
+<h2>getModelIdentifier</h2>
+<p>
+<code>public java.lang.String <strong>getModelIdentifier</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
+<h2>isDisconnected</h2>
+<p>
+<code>public boolean <strong>isDisconnected</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.launching.model</strong></font>
</p>
@@ -22932,11 +49105,11 @@ extends org.eclipse.wst.xsl.launching.model.XSLDebugElement</pre>
</td>
</tr>
<tr>
-<td><code><strong>XSLDebugTarget(ILaunch launch
+<td><code><strong>XSLDebugTarget</strong>(ILaunch launch
,
IProcess process
,
- org.eclipse.wst.xsl.launching.config.LaunchHelper launchHelper)</strong></code></td>
+ org.eclipse.wst.xsl.launching.config.LaunchHelper launchHelper)</code></td>
</tr>
</table>
<br>
@@ -22947,187 +49120,564 @@ extends org.eclipse.wst.xsl.launching.model.XSLDebugElement</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public IProcess</code></td><td width="" align="left"><code>getProcess()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>breakpointAdded(IBreakpoint breakpoint)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public IThread[]</code></td><td width="" align="left"><code>getThreads()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>breakpointChanged(IBreakpoint breakpoint
+ ,
+ IMarkerDelta delta)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>hasThreads()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>breakpointRemoved(IBreakpoint breakpoint
+ ,
+ IMarkerDelta delta)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getName()</code>
+<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>canDisconnect()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>supportsBreakpoint(IBreakpoint breakpoint)</code>
+<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>canResume()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public IDebugTarget</code></td><td width="" align="left"><code>getDebugTarget()</code>
+<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>canSuspend()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public ILaunch</code></td><td width="" align="left"><code>getLaunch()</code>
+<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>canTerminate()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>canTerminate()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>disconnect()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>isTerminated()</code>
+<td width="20%" align="right"><code>public IDebugTarget</code></td><td width="" align="left"><code>getDebugTarget()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>terminate()</code>
+<td width="20%" align="right"><code>public ILaunch</code></td><td width="" align="left"><code>getLaunch()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>canResume()</code>
+<td width="20%" align="right"><code>public IMemoryBlock</code></td><td width="" align="left"><code>getMemoryBlock(long startAddress
+ ,
+ long length)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>canSuspend()</code>
+<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getName()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>isSuspended()</code>
+<td width="20%" align="right"><code>public IProcess</code></td><td width="" align="left"><code>getProcess()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>resume()</code>
+<td width="20%" align="right"><code>public IStackFrame[]</code></td><td width="" align="left"><code>getStackFrames()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- </td>
+ Returns the current stack frames in the target.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>suspend()</code>
+<td width="20%" align="right"><code>public IThread[]</code></td><td width="" align="left"><code>getThreads()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>breakpointAdded(IBreakpoint breakpoint)</code>
+<td width="20%" align="right"><code>public org.eclipse.wst.xsl.launching.model.XSLVariable</code></td><td width="" align="left"><code>getVariable(int varId)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>breakpointRemoved(IBreakpoint breakpoint
- ,
- IMarkerDelta delta)</code>
+<td width="20%" align="right"><code>public IValue</code></td><td width="" align="left"><code>getVariableValue(org.eclipse.wst.xsl.launching.model.XSLVariable variable)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>breakpointChanged(IBreakpoint breakpoint
- ,
- IMarkerDelta delta)</code>
+<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>hasThreads()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>canDisconnect()</code>
+<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>isDisconnected()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>disconnect()</code>
+<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>isSuspended()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>isDisconnected()</code>
+<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>isTerminated()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>supportsStorageRetrieval()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>resume()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public IMemoryBlock</code></td><td width="" align="left"><code>getMemoryBlock(long startAddress
- ,
- long length)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>stepInto()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public IStackFrame[]</code></td><td width="" align="left"><code>getStackFrames()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>stepOver()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Returns the current stack frames in the target.</td>
+ Single step the interpreter.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>stepOver()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>stepReturn()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Single step the interpreter.</td>
+ </td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>stepInto()</code>
+<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>supportsBreakpoint(IBreakpoint breakpoint)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>stepReturn()</code>
+<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>supportsStorageRetrieval()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public org.eclipse.wst.xsl.launching.model.XSLVariable</code></td><td width="" align="left"><code>getVariable(int varId)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>suspend()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public IValue</code></td><td width="" align="left"><code>getVariableValue(org.eclipse.wst.xsl.launching.model.XSLVariable variable)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>terminate()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>XSLDebugTarget</h2>
+<p>
+<code>public <strong>XSLDebugTarget</strong>(ILaunch launch
+ ,
+ IProcess process
+ ,
+ org.eclipse.wst.xsl.launching.config.LaunchHelper launchHelper)</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>breakpointAdded</h2>
+<p>
+<code>public void <strong>breakpointAdded</strong>(IBreakpoint breakpoint)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>breakpoint</code>
+</p>
+<hr>
+<h2>breakpointChanged</h2>
+<p>
+<code>public void <strong>breakpointChanged</strong>(IBreakpoint breakpoint
+ ,
+ IMarkerDelta delta)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>breakpoint</code>
+</p>
+<p>
+<code>delta</code>
+</p>
+<hr>
+<h2>breakpointRemoved</h2>
+<p>
+<code>public void <strong>breakpointRemoved</strong>(IBreakpoint breakpoint
+ ,
+ IMarkerDelta delta)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>breakpoint</code>
+</p>
+<p>
+<code>delta</code>
+</p>
+<hr>
+<h2>canDisconnect</h2>
+<p>
+<code>public boolean <strong>canDisconnect</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<hr>
+<h2>canResume</h2>
+<p>
+<code>public boolean <strong>canResume</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<hr>
+<h2>canSuspend</h2>
+<p>
+<code>public boolean <strong>canSuspend</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<hr>
+<h2>canTerminate</h2>
+<p>
+<code>public boolean <strong>canTerminate</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<hr>
+<h2>disconnect</h2>
+<p>
+<code>public void <strong>disconnect</strong>()</code>
+</p>
+<p></p>
+<h3>Throws:</h3>
+<p>
+<code>DebugException</code>
+</p>
+<hr>
+<h2>getDebugTarget</h2>
+<p>
+<code>public IDebugTarget <strong>getDebugTarget</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>IDebugTarget</code>
+</p>
+<hr>
+<h2>getLaunch</h2>
+<p>
+<code>public ILaunch <strong>getLaunch</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>ILaunch</code>
+</p>
+<hr>
+<h2>getMemoryBlock</h2>
+<p>
+<code>public IMemoryBlock <strong>getMemoryBlock</strong>(long startAddress
+ ,
+ long length)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>startAddress</code>
+</p>
+<p>
+<code>length</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>IMemoryBlock</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>DebugException</code>
+</p>
+<hr>
+<h2>getName</h2>
+<p>
+<code>public java.lang.String <strong>getName</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>DebugException</code>
+</p>
+<hr>
+<h2>getProcess</h2>
+<p>
+<code>public IProcess <strong>getProcess</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>IProcess</code>
+</p>
+<hr>
+<h2>getStackFrames</h2>
+<p>
+<code>public IStackFrame[] <strong>getStackFrames</strong>()</code>
+</p>
+<p>Returns the current stack frames in the target.</p>
+<h3>Returns</h3>
+<p>
+<code>IStackFrame[]</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>DebugException</code>
+</p>
+<hr>
+<h2>getThreads</h2>
+<p>
+<code>public IThread[] <strong>getThreads</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>IThread[]</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>DebugException</code>
+</p>
+<hr>
+<h2>getVariable</h2>
+<p>
+<code>public org.eclipse.wst.xsl.launching.model.XSLVariable <strong>getVariable</strong>(int varId)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>varId</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.launching.model.XSLVariable</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>DebugException</code>
+</p>
+<hr>
+<h2>getVariableValue</h2>
+<p>
+<code>public IValue <strong>getVariableValue</strong>(org.eclipse.wst.xsl.launching.model.XSLVariable variable)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>variable</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>IValue</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>DebugException</code>
+</p>
+<hr>
+<h2>hasThreads</h2>
+<p>
+<code>public boolean <strong>hasThreads</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>DebugException</code>
+</p>
+<hr>
+<h2>isDisconnected</h2>
+<p>
+<code>public boolean <strong>isDisconnected</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<hr>
+<h2>isSuspended</h2>
+<p>
+<code>public boolean <strong>isSuspended</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<hr>
+<h2>isTerminated</h2>
+<p>
+<code>public boolean <strong>isTerminated</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<hr>
+<h2>resume</h2>
+<p>
+<code>public void <strong>resume</strong>()</code>
+</p>
+<p></p>
+<h3>Throws:</h3>
+<p>
+<code>DebugException</code>
+</p>
+<hr>
+<h2>stepInto</h2>
+<p>
+<code>public void <strong>stepInto</strong>()</code>
+</p>
+<p></p>
+<h3>Throws:</h3>
+<p>
+<code>DebugException</code>
+</p>
+<hr>
+<h2>stepOver</h2>
+<p>
+<code>public void <strong>stepOver</strong>()</code>
+</p>
+<p>Single step the interpreter.</p>
+<h3>Throws:</h3>
+<p>
+<code>DebugException</code>
+</p>
+<hr>
+<h2>stepReturn</h2>
+<p>
+<code>public void <strong>stepReturn</strong>()</code>
+</p>
+<p></p>
+<h3>Throws:</h3>
+<p>
+<code>DebugException</code>
+</p>
+<hr>
+<h2>supportsBreakpoint</h2>
+<p>
+<code>public boolean <strong>supportsBreakpoint</strong>(IBreakpoint breakpoint)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>breakpoint</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<hr>
+<h2>supportsStorageRetrieval</h2>
+<p>
+<code>public boolean <strong>supportsStorageRetrieval</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<hr>
+<h2>suspend</h2>
+<p>
+<code>public void <strong>suspend</strong>()</code>
+</p>
+<p></p>
+<h3>Throws:</h3>
+<p>
+<code>DebugException</code>
+</p>
+<hr>
+<h2>terminate</h2>
+<p>
+<code>public void <strong>terminate</strong>()</code>
+</p>
+<p></p>
+<h3>Throws:</h3>
+<p>
+<code>DebugException</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.launching.model</strong></font>
</p>
@@ -23148,16 +49698,16 @@ extends LineBreakpoint</pre>
</td>
</tr>
<tr>
-<td><code><strong>XSLLineBreakpoint()</strong></code></td>
+<td><code><strong>XSLLineBreakpoint</strong>()</code></td>
</tr>
<tr>
-<td><code><strong>XSLLineBreakpoint(IResource resource
+<td><code><strong>XSLLineBreakpoint</strong>(IResource resource
,
int lineNumber
,
int charStart
,
- int charEnd)</strong></code></td>
+ int charEnd)</code></td>
</tr>
</table>
<br>
@@ -23174,19 +49724,93 @@ extends LineBreakpoint</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>register(boolean register)</code>
+<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getModelIdentifier()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getModelIdentifier()</code>
+<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>register(boolean register)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>XSLLineBreakpoint</h2>
+<p>
+<code>public <strong>XSLLineBreakpoint</strong>()</code>
+</p>
+<p></p>
+<hr>
+<h2>XSLLineBreakpoint</h2>
+<p>
+<code>public <strong>XSLLineBreakpoint</strong>(IResource resource
+ ,
+ int lineNumber
+ ,
+ int charStart
+ ,
+ int charEnd)</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getLineNumber</h2>
+<p>
+<code>public int <strong>getLineNumber</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>int</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>CoreException</code>
+</p>
+<hr>
+<h2>getModelIdentifier</h2>
+<p>
+<code>public java.lang.String <strong>getModelIdentifier</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
+<h2>register</h2>
+<p>
+<code>protected void <strong>register</strong>(boolean register)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>register</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>CoreException</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.launching.model</strong></font>
</p>
@@ -23206,11 +49830,11 @@ extends org.eclipse.wst.xsl.launching.model.XSLDebugElement</pre>XSL stack frame
</td>
</tr>
<tr>
-<td><code><strong>XSLStackFrame(org.eclipse.wst.xsl.launching.model.XSLThread thread
+<td><code><strong>XSLStackFrame</strong>(org.eclipse.wst.xsl.launching.model.XSLThread thread
,
java.lang.String data
,
- int index)</strong></code></td>
+ int index)</code></td>
</tr>
</table>
<br>
@@ -23221,187 +49845,551 @@ extends org.eclipse.wst.xsl.launching.model.XSLDebugElement</pre>XSL stack frame
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public IThread</code></td><td width="" align="left"><code>getThread()</code>
+<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>canResume()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public IVariable[]</code></td><td width="" align="left"><code>getVariables()</code>
+<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>canStepInto()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>hasVariables()</code>
+<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>canStepOver()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public int</code></td><td width="" align="left"><code>getLineNumber()</code>
+<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>canStepReturn()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public int</code></td><td width="" align="left"><code>getCharStart()</code>
+<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>canSuspend()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public int</code></td><td width="" align="left"><code>getCharEnd()</code>
+<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>canTerminate()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getName()</code>
+<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>equals(java.lang.Object obj)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public IRegisterGroup[]</code></td><td width="" align="left"><code>getRegisterGroups()</code>
+<td width="20%" align="right"><code>public int</code></td><td width="" align="left"><code>getCharEnd()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>hasRegisterGroups()</code>
+<td width="20%" align="right"><code>public int</code></td><td width="" align="left"><code>getCharStart()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>canStepInto()</code>
+<td width="20%" align="right"><code>protected int</code></td><td width="" align="left"><code>getIdentifier()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>canStepOver()</code>
+<td width="20%" align="right"><code>public int</code></td><td width="" align="left"><code>getLineNumber()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>canStepReturn()</code>
+<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getName()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>isStepping()</code>
+<td width="20%" align="right"><code>public IRegisterGroup[]</code></td><td width="" align="left"><code>getRegisterGroups()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>stepInto()</code>
+<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getSourceName()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- </td>
+ Returns the name of the source file this stack frame is associated with.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>stepOver()</code>
+<td width="20%" align="right"><code>public IThread</code></td><td width="" align="left"><code>getThread()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>stepReturn()</code>
+<td width="20%" align="right"><code>public IVariable[]</code></td><td width="" align="left"><code>getVariables()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>canResume()</code>
+<td width="20%" align="right"><code>public int</code></td><td width="" align="left"><code>hashCode()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>canSuspend()</code>
+<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>hasRegisterGroups()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>isSuspended()</code>
+<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>hasVariables()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>resume()</code>
+<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>isStepping()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>suspend()</code>
+<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>isSuspended()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>canTerminate()</code>
+<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>isTerminated()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>isTerminated()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>resume()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>terminate()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setLineNumber(int lineNumber)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getSourceName()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setVariables(IVariable[] variables)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Returns the name of the source file this stack frame is associated with.</td>
+ </td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>equals(java.lang.Object obj)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>stepInto()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public int</code></td><td width="" align="left"><code>hashCode()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>stepOver()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected int</code></td><td width="" align="left"><code>getIdentifier()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>stepReturn()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setLineNumber(int lineNumber)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>suspend()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setVariables(IVariable[] variables)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>terminate()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>XSLStackFrame</h2>
+<p>
+<code>public <strong>XSLStackFrame</strong>(org.eclipse.wst.xsl.launching.model.XSLThread thread
+ ,
+ java.lang.String data
+ ,
+ int index)</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>canResume</h2>
+<p>
+<code>public boolean <strong>canResume</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<hr>
+<h2>canStepInto</h2>
+<p>
+<code>public boolean <strong>canStepInto</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<hr>
+<h2>canStepOver</h2>
+<p>
+<code>public boolean <strong>canStepOver</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<hr>
+<h2>canStepReturn</h2>
+<p>
+<code>public boolean <strong>canStepReturn</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<hr>
+<h2>canSuspend</h2>
+<p>
+<code>public boolean <strong>canSuspend</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<hr>
+<h2>canTerminate</h2>
+<p>
+<code>public boolean <strong>canTerminate</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<hr>
+<h2>equals</h2>
+<p>
+<code>public boolean <strong>equals</strong>(java.lang.Object obj)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>obj</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<hr>
+<h2>getCharEnd</h2>
+<p>
+<code>public int <strong>getCharEnd</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>int</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>DebugException</code>
+</p>
+<hr>
+<h2>getCharStart</h2>
+<p>
+<code>public int <strong>getCharStart</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>int</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>DebugException</code>
+</p>
+<hr>
+<h2>getIdentifier</h2>
+<p>
+<code>protected int <strong>getIdentifier</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>int</code>
+</p>
+<hr>
+<h2>getLineNumber</h2>
+<p>
+<code>public int <strong>getLineNumber</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>int</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>DebugException</code>
+</p>
+<hr>
+<h2>getName</h2>
+<p>
+<code>public java.lang.String <strong>getName</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>DebugException</code>
+</p>
+<hr>
+<h2>getRegisterGroups</h2>
+<p>
+<code>public IRegisterGroup[] <strong>getRegisterGroups</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>IRegisterGroup[]</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>DebugException</code>
+</p>
+<hr>
+<h2>getSourceName</h2>
+<p>
+<code>public java.lang.String <strong>getSourceName</strong>()</code>
+</p>
+<p>Returns the name of the source file this stack frame is associated with.</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
+<h2>getThread</h2>
+<p>
+<code>public IThread <strong>getThread</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>IThread</code>
+</p>
+<hr>
+<h2>getVariables</h2>
+<p>
+<code>public IVariable[] <strong>getVariables</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>IVariable[]</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>DebugException</code>
+</p>
+<hr>
+<h2>hashCode</h2>
+<p>
+<code>public int <strong>hashCode</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>int</code>
+</p>
+<hr>
+<h2>hasRegisterGroups</h2>
+<p>
+<code>public boolean <strong>hasRegisterGroups</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>DebugException</code>
+</p>
+<hr>
+<h2>hasVariables</h2>
+<p>
+<code>public boolean <strong>hasVariables</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>DebugException</code>
+</p>
+<hr>
+<h2>isStepping</h2>
+<p>
+<code>public boolean <strong>isStepping</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<hr>
+<h2>isSuspended</h2>
+<p>
+<code>public boolean <strong>isSuspended</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<hr>
+<h2>isTerminated</h2>
+<p>
+<code>public boolean <strong>isTerminated</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<hr>
+<h2>resume</h2>
+<p>
+<code>public void <strong>resume</strong>()</code>
+</p>
+<p></p>
+<h3>Throws:</h3>
+<p>
+<code>DebugException</code>
+</p>
+<hr>
+<h2>setLineNumber</h2>
+<p>
+<code>public void <strong>setLineNumber</strong>(int lineNumber)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>lineNumber</code>
+</p>
+<hr>
+<h2>setVariables</h2>
+<p>
+<code>public void <strong>setVariables</strong>(IVariable[] variables)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>variables</code>
+</p>
+<hr>
+<h2>stepInto</h2>
+<p>
+<code>public void <strong>stepInto</strong>()</code>
+</p>
+<p></p>
+<h3>Throws:</h3>
+<p>
+<code>DebugException</code>
+</p>
+<hr>
+<h2>stepOver</h2>
+<p>
+<code>public void <strong>stepOver</strong>()</code>
+</p>
+<p></p>
+<h3>Throws:</h3>
+<p>
+<code>DebugException</code>
+</p>
+<hr>
+<h2>stepReturn</h2>
+<p>
+<code>public void <strong>stepReturn</strong>()</code>
+</p>
+<p></p>
+<h3>Throws:</h3>
+<p>
+<code>DebugException</code>
+</p>
+<hr>
+<h2>suspend</h2>
+<p>
+<code>public void <strong>suspend</strong>()</code>
+</p>
+<p></p>
+<h3>Throws:</h3>
+<p>
+<code>DebugException</code>
+</p>
+<hr>
+<h2>terminate</h2>
+<p>
+<code>public void <strong>terminate</strong>()</code>
+</p>
+<p></p>
+<h3>Throws:</h3>
+<p>
+<code>DebugException</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.launching.model</strong></font>
</p>
@@ -23422,7 +50410,7 @@ extends org.eclipse.wst.xsl.launching.model.XSLDebugElement</pre>
</td>
</tr>
<tr>
-<td><code><strong>XSLThread(IDebugTarget target)</strong></code></td>
+<td><code><strong>XSLThread</strong>(IDebugTarget target)</code></td>
</tr>
</table>
<br>
@@ -23433,146 +50421,420 @@ extends org.eclipse.wst.xsl.launching.model.XSLDebugElement</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public IStackFrame[]</code></td><td width="" align="left"><code>getStackFrames()</code>
+<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>canResume()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>hasStackFrames()</code>
+<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>canStepInto()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public int</code></td><td width="" align="left"><code>getPriority()</code>
+<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>canStepOver()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public IStackFrame</code></td><td width="" align="left"><code>getTopStackFrame()</code>
+<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>canStepReturn()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getName()</code>
+<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>canSuspend()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public IBreakpoint[]</code></td><td width="" align="left"><code>getBreakpoints()</code>
+<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>canTerminate()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>setBreakpoints(IBreakpoint[] breakpoints)</code>
+<td width="20%" align="right"><code>public IBreakpoint[]</code></td><td width="" align="left"><code>getBreakpoints()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Sets the breakpoints this thread is suspended at, or <code>null</code>
- if none.</td>
+ </td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>canResume()</code>
+<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getName()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>canSuspend()</code>
+<td width="20%" align="right"><code>public int</code></td><td width="" align="left"><code>getPriority()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>isSuspended()</code>
+<td width="20%" align="right"><code>public IStackFrame[]</code></td><td width="" align="left"><code>getStackFrames()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>resume()</code>
+<td width="20%" align="right"><code>public IStackFrame</code></td><td width="" align="left"><code>getTopStackFrame()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>suspend()</code>
+<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>hasStackFrames()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>canStepInto()</code>
+<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>isStepping()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>canStepOver()</code>
+<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>isSuspended()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>canStepReturn()</code>
+<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>isTerminated()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>isStepping()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>resume()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>stepInto()</code>
+<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>setBreakpoints(IBreakpoint[] breakpoints)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- </td>
+ Sets the breakpoints this thread is suspended at, or <code>null</code>
+ if none.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>stepOver()</code>
+<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>setStepping(boolean stepping)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>stepReturn()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>stepInto()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>canTerminate()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>stepOver()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>isTerminated()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>stepReturn()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>terminate()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>suspend()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>setStepping(boolean stepping)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>terminate()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>XSLThread</h2>
+<p>
+<code>public <strong>XSLThread</strong>(IDebugTarget target)</code>
+</p>
+<p>Constructs a new thread for the given target</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>canResume</h2>
+<p>
+<code>public boolean <strong>canResume</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<hr>
+<h2>canStepInto</h2>
+<p>
+<code>public boolean <strong>canStepInto</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<hr>
+<h2>canStepOver</h2>
+<p>
+<code>public boolean <strong>canStepOver</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<hr>
+<h2>canStepReturn</h2>
+<p>
+<code>public boolean <strong>canStepReturn</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<hr>
+<h2>canSuspend</h2>
+<p>
+<code>public boolean <strong>canSuspend</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<hr>
+<h2>canTerminate</h2>
+<p>
+<code>public boolean <strong>canTerminate</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<hr>
+<h2>getBreakpoints</h2>
+<p>
+<code>public IBreakpoint[] <strong>getBreakpoints</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>IBreakpoint[]</code>
+</p>
+<hr>
+<h2>getName</h2>
+<p>
+<code>public java.lang.String <strong>getName</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>DebugException</code>
+</p>
+<hr>
+<h2>getPriority</h2>
+<p>
+<code>public int <strong>getPriority</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>int</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>DebugException</code>
+</p>
+<hr>
+<h2>getStackFrames</h2>
+<p>
+<code>public IStackFrame[] <strong>getStackFrames</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>IStackFrame[]</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>DebugException</code>
+</p>
+<hr>
+<h2>getTopStackFrame</h2>
+<p>
+<code>public IStackFrame <strong>getTopStackFrame</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>IStackFrame</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>DebugException</code>
+</p>
+<hr>
+<h2>hasStackFrames</h2>
+<p>
+<code>public boolean <strong>hasStackFrames</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>DebugException</code>
+</p>
+<hr>
+<h2>isStepping</h2>
+<p>
+<code>public boolean <strong>isStepping</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<hr>
+<h2>isSuspended</h2>
+<p>
+<code>public boolean <strong>isSuspended</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<hr>
+<h2>isTerminated</h2>
+<p>
+<code>public boolean <strong>isTerminated</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<hr>
+<h2>resume</h2>
+<p>
+<code>public void <strong>resume</strong>()</code>
+</p>
+<p></p>
+<h3>Throws:</h3>
+<p>
+<code>DebugException</code>
+</p>
+<hr>
+<h2>setBreakpoints</h2>
+<p>
+<code>protected void <strong>setBreakpoints</strong>(IBreakpoint[] breakpoints)</code>
+</p>
+<p>Sets the breakpoints this thread is suspended at, or <code>null</code>
+ if none.</p>
+<h3>Parameters</h3>
+<p>
+<code>breakpoints</code> - the breakpoints this thread is suspended at, or <code>null</code> if none</p>
+<hr>
+<h2>setStepping</h2>
+<p>
+<code>protected void <strong>setStepping</strong>(boolean stepping)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>stepping</code>
+</p>
+<hr>
+<h2>stepInto</h2>
+<p>
+<code>public void <strong>stepInto</strong>()</code>
+</p>
+<p></p>
+<h3>Throws:</h3>
+<p>
+<code>DebugException</code>
+</p>
+<hr>
+<h2>stepOver</h2>
+<p>
+<code>public void <strong>stepOver</strong>()</code>
+</p>
+<p></p>
+<h3>Throws:</h3>
+<p>
+<code>DebugException</code>
+</p>
+<hr>
+<h2>stepReturn</h2>
+<p>
+<code>public void <strong>stepReturn</strong>()</code>
+</p>
+<p></p>
+<h3>Throws:</h3>
+<p>
+<code>DebugException</code>
+</p>
+<hr>
+<h2>suspend</h2>
+<p>
+<code>public void <strong>suspend</strong>()</code>
+</p>
+<p></p>
+<h3>Throws:</h3>
+<p>
+<code>DebugException</code>
+</p>
+<hr>
+<h2>terminate</h2>
+<p>
+<code>public void <strong>terminate</strong>()</code>
+</p>
+<p></p>
+<h3>Throws:</h3>
+<p>
+<code>DebugException</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.launching.model</strong></font>
</p>
@@ -23593,11 +50855,11 @@ extends org.eclipse.wst.xsl.launching.model.XSLDebugElement</pre>
</td>
</tr>
<tr>
-<td><code><strong>XSLValue(IDebugTarget target
+<td><code><strong>XSLValue</strong>(IDebugTarget target
,
java.lang.String type
,
- java.lang.String value)</strong></code></td>
+ java.lang.String value)</code></td>
</tr>
</table>
<br>
@@ -23620,25 +50882,123 @@ extends org.eclipse.wst.xsl.launching.model.XSLDebugElement</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>isAllocated()</code>
+<td width="20%" align="right"><code>public IVariable[]</code></td><td width="" align="left"><code>getVariables()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public IVariable[]</code></td><td width="" align="left"><code>getVariables()</code>
+<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>hasVariables()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>hasVariables()</code>
+<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>isAllocated()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>XSLValue</h2>
+<p>
+<code>public <strong>XSLValue</strong>(IDebugTarget target
+ ,
+ java.lang.String type
+ ,
+ java.lang.String value)</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getReferenceTypeName</h2>
+<p>
+<code>public java.lang.String <strong>getReferenceTypeName</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>DebugException</code>
+</p>
+<hr>
+<h2>getValueString</h2>
+<p>
+<code>public java.lang.String <strong>getValueString</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>DebugException</code>
+</p>
+<hr>
+<h2>getVariables</h2>
+<p>
+<code>public IVariable[] <strong>getVariables</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>IVariable[]</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>DebugException</code>
+</p>
+<hr>
+<h2>hasVariables</h2>
+<p>
+<code>public boolean <strong>hasVariables</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>DebugException</code>
+</p>
+<hr>
+<h2>isAllocated</h2>
+<p>
+<code>public boolean <strong>isAllocated</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>DebugException</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.launching.model</strong></font>
</p>
@@ -23659,19 +51019,19 @@ extends org.eclipse.wst.xsl.launching.model.XSLDebugElement</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>LOCAL_SCOPE</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>GLOBAL_SCOPE</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>TUNNEL_SCOPE</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>LOCAL_SCOPE</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>GLOBAL_SCOPE</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>TUNNEL_SCOPE</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@@ -23685,9 +51045,9 @@ extends org.eclipse.wst.xsl.launching.model.XSLDebugElement</pre>
</td>
</tr>
<tr>
-<td><code><strong>XSLVariable(IDebugTarget target
+<td><code><strong>XSLVariable</strong>(IDebugTarget target
,
- int id)</strong></code></td>
+ int id)</code></td>
</tr>
</table>
<br>
@@ -23704,25 +51064,25 @@ extends org.eclipse.wst.xsl.launching.model.XSLDebugElement</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public IValue</code></td><td width="" align="left"><code>getValue()</code>
+<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getName()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setName(java.lang.String name)</code>
+<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getReferenceTypeName()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getName()</code>
+<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getScope()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getReferenceTypeName()</code>
+<td width="20%" align="right"><code>public IValue</code></td><td width="" align="left"><code>getValue()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@@ -23734,37 +51094,225 @@ extends org.eclipse.wst.xsl.launching.model.XSLDebugElement</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setValue(java.lang.String expression)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setName(java.lang.String name)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>supportsValueModification()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setScope(java.lang.String scope)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>verifyValue(java.lang.String expression)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setValue(java.lang.String expression)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setScope(java.lang.String scope)</code>
+<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>supportsValueModification()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getScope()</code>
+<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>verifyValue(java.lang.String expression)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>GLOBAL_SCOPE</h2>
+<p>
+<code>public static java.lang.String <strong>GLOBAL_SCOPE</strong></code>
+</p>
+<hr>
+<h2>LOCAL_SCOPE</h2>
+<p>
+<code>public static java.lang.String <strong>LOCAL_SCOPE</strong></code>
+</p>
+<hr>
+<h2>TUNNEL_SCOPE</h2>
+<p>
+<code>public static java.lang.String <strong>TUNNEL_SCOPE</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>XSLVariable</h2>
+<p>
+<code>public <strong>XSLVariable</strong>(IDebugTarget target
+ ,
+ int id)</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getId</h2>
+<p>
+<code>public int <strong>getId</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>int</code>
+</p>
+<hr>
+<h2>getName</h2>
+<p>
+<code>public java.lang.String <strong>getName</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>DebugException</code>
+</p>
+<hr>
+<h2>getReferenceTypeName</h2>
+<p>
+<code>public java.lang.String <strong>getReferenceTypeName</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>DebugException</code>
+</p>
+<hr>
+<h2>getScope</h2>
+<p>
+<code>public java.lang.String <strong>getScope</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
+<h2>getValue</h2>
+<p>
+<code>public IValue <strong>getValue</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>IValue</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>DebugException</code>
+</p>
+<hr>
+<h2>hasValueChanged</h2>
+<p>
+<code>public boolean <strong>hasValueChanged</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>DebugException</code>
+</p>
+<hr>
+<h2>setName</h2>
+<p>
+<code>public void <strong>setName</strong>(java.lang.String name)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>name</code>
+</p>
+<hr>
+<h2>setScope</h2>
+<p>
+<code>public void <strong>setScope</strong>(java.lang.String scope)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>scope</code>
+</p>
+<hr>
+<h2>setValue</h2>
+<p>
+<code>public void <strong>setValue</strong>(java.lang.String expression)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>expression</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>DebugException</code>
+</p>
+<hr>
+<h2>supportsValueModification</h2>
+<p>
+<code>public boolean <strong>supportsValueModification</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<hr>
+<h2>verifyValue</h2>
+<p>
+<code>public boolean <strong>verifyValue</strong>(java.lang.String expression)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>expression</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>DebugException</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.ui.internal</strong></font>
</p>
@@ -23786,7 +51334,7 @@ extends StructuredTextViewerConfigurationXML</pre>StructuredTextViewerConfigurat
</td>
</tr>
<tr>
-<td><code><strong>StructuredTextViewerConfigurationXSL()</strong></code></td>
+<td><code><strong>StructuredTextViewerConfigurationXSL</strong>()</code></td>
</tr>
</table>
<br>
@@ -23797,6 +51345,12 @@ extends StructuredTextViewerConfigurationXML</pre>StructuredTextViewerConfigurat
</td>
</tr>
<tr valign="top">
+<td width="20%" align="right"><code>public java.lang.String[]</code></td><td width="" align="left"><code>getConfiguredContentTypes(ISourceViewer sourceViewer)</code>
+<br>
+ &nbsp;&nbsp;&nbsp;&nbsp;
+ (non-Javadoc)</td>
+</tr>
+<tr valign="top">
<td width="20%" align="right"><code>protected IContentAssistProcessor[]</code></td><td width="" align="left"><code>getContentAssistProcessors(ISourceViewer sourceViewer
,
java.lang.String partitionType)</code>
@@ -23811,10 +51365,10 @@ extends StructuredTextViewerConfigurationXML</pre>StructuredTextViewerConfigurat
(non-Javadoc)</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.lang.String[]</code></td><td width="" align="left"><code>getConfiguredContentTypes(ISourceViewer sourceViewer)</code>
+<td width="20%" align="right"><code>protected LineStyleProvider</code></td><td width="" align="left"><code>getLineStyleProviderForXSL()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- (non-Javadoc)</td>
+ </td>
</tr>
<tr valign="top">
<td width="20%" align="right"><code>public LineStyleProvider[]</code></td><td width="" align="left"><code>getLineStyleProviders(ISourceViewer sourceViewer
@@ -23824,13 +51378,107 @@ extends StructuredTextViewerConfigurationXML</pre>StructuredTextViewerConfigurat
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
-<tr valign="top">
-<td width="20%" align="right"><code>protected LineStyleProvider</code></td><td width="" align="left"><code>getLineStyleProviderForXSL()</code>
-<br>
- &nbsp;&nbsp;&nbsp;&nbsp;
- </td>
+</table>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
</tr>
</table>
+<h2>StructuredTextViewerConfigurationXSL</h2>
+<p>
+<code>public <strong>StructuredTextViewerConfigurationXSL</strong>()</code>
+</p>
+<p>Configuration for XSL Content Types</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getConfiguredContentTypes</h2>
+<p>
+<code>public java.lang.String[] <strong>getConfiguredContentTypes</strong>(ISourceViewer sourceViewer)</code>
+</p>
+<p>(non-Javadoc)</p>
+<h3>Parameters</h3>
+<p>
+<code>sourceViewer</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String[]</code>
+</p>
+<hr>
+<h2>getContentAssistProcessors</h2>
+<p>
+<code>protected IContentAssistProcessor[] <strong>getContentAssistProcessors</strong>(ISourceViewer sourceViewer
+ ,
+ java.lang.String partitionType)</code>
+</p>
+<p>Return the processors for the current content type.</p>
+<h3>Parameters</h3>
+<p>
+<code>sourceViewer</code>
+</p>
+<p>
+<code>partitionType</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>IContentAssistProcessor[]</code>
+</p>
+<hr>
+<h2>getHyperlinkDetectors</h2>
+<p>
+<code>public IHyperlinkDetector[] <strong>getHyperlinkDetectors</strong>(ISourceViewer sourceViewer)</code>
+</p>
+<p>(non-Javadoc)</p>
+<h3>Parameters</h3>
+<p>
+<code>sourceViewer</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>IHyperlinkDetector[]</code>
+</p>
+<hr>
+<h2>getLineStyleProviderForXSL</h2>
+<p>
+<code>protected LineStyleProvider <strong>getLineStyleProviderForXSL</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>LineStyleProvider</code>
+</p>
+<hr>
+<h2>getLineStyleProviders</h2>
+<p>
+<code>public LineStyleProvider[] <strong>getLineStyleProviders</strong>(ISourceViewer sourceViewer
+ ,
+ java.lang.String partitionType)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>sourceViewer</code>
+</p>
+<p>
+<code>partitionType</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>LineStyleProvider[]</code>
+</p>
<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.ui.internal</strong></font>
@@ -23852,13 +51500,13 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>TEMPLATE_CONTEXT_XSL_NEW</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>NEW_FILE_TEMPLATE_NAME</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>NEW_FILE_TEMPLATE_NAME</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>TEMPLATE_CONTEXT_XSL_NEW</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@@ -23872,7 +51520,7 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr>
-<td><code><strong>XSLUIConstants()</strong></code></td>
+<td><code><strong>XSLUIConstants</strong>()</code></td>
</tr>
</table>
<br>
@@ -23884,6 +51532,40 @@ extends java.lang.Object</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>NEW_FILE_TEMPLATE_NAME</h2>
+<p>
+<code>public static java.lang.String <strong>NEW_FILE_TEMPLATE_NAME</strong></code>
+</p>
+<hr>
+<h2>TEMPLATE_CONTEXT_XSL_NEW</h2>
+<p>
+<code>public static java.lang.String <strong>TEMPLATE_CONTEXT_XSL_NEW</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>XSLUIConstants</h2>
+<p>
+<code>public <strong>XSLUIConstants</strong>()</code>
+</p>
+<p></p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.ui.internal</strong></font>
</p>
@@ -23917,7 +51599,7 @@ extends AbstractUIPlugin</pre>The activator class controls the plug-in life cycl
</td>
</tr>
<tr>
-<td><code><strong>XSLUIPlugin()</strong></code></td>
+<td><code><strong>XSLUIPlugin</strong>()</code></td>
</tr>
</table>
<br>
@@ -23928,22 +51610,22 @@ extends AbstractUIPlugin</pre>The activator class controls the plug-in life cycl
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>start(BundleContext context)</code>
+<td width="20%" align="right"><code>public static org.eclipse.wst.xsl.ui.internal.XSLUIPlugin</code></td><td width="" align="left"><code>getDefault()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- </td>
+ Returns the shared instance</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>stop(BundleContext context)</code>
+<td width="20%" align="right"><code>public ContextTypeRegistry</code></td><td width="" align="left"><code>getTemplateContextRegistry()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- </td>
+ Returns the template context type registry for the xsl plugin.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static org.eclipse.wst.xsl.ui.internal.XSLUIPlugin</code></td><td width="" align="left"><code>getDefault()</code>
+<td width="20%" align="right"><code>public TemplateStore</code></td><td width="" align="left"><code>getTemplateStore()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Returns the shared instance</td>
+ Returns the template store for the xsl templates.</td>
</tr>
<tr valign="top">
<td width="20%" align="right"><code>public static void</code></td><td width="" align="left"><code>log(java.lang.Exception e)</code>
@@ -23952,18 +51634,126 @@ extends AbstractUIPlugin</pre>The activator class controls the plug-in life cycl
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public TemplateStore</code></td><td width="" align="left"><code>getTemplateStore()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>start(BundleContext context)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Returns the template store for the xsl templates.</td>
+ </td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public ContextTypeRegistry</code></td><td width="" align="left"><code>getTemplateContextRegistry()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>stop(BundleContext context)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Returns the template context type registry for the xsl plugin.</td>
+ </td>
+</tr>
+</table>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>PLUGIN_ID</h2>
+<p>
+<code>public static java.lang.String <strong>PLUGIN_ID</strong></code>
+</p>
+<table>
+<tr>
+<td>The plugin id for this plugin.</td>
+</tr>
+</table>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
</tr>
</table>
+<h2>XSLUIPlugin</h2>
+<p>
+<code>public <strong>XSLUIPlugin</strong>()</code>
+</p>
+<p>The constructor</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getDefault</h2>
+<p>
+<code>public org.eclipse.wst.xsl.ui.internal.XSLUIPlugin <strong>getDefault</strong>()</code>
+</p>
+<p>Returns the shared instance</p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.ui.internal.XSLUIPlugin</code> - the shared instance</p>
+<hr>
+<h2>getTemplateContextRegistry</h2>
+<p>
+<code>public ContextTypeRegistry <strong>getTemplateContextRegistry</strong>()</code>
+</p>
+<p>Returns the template context type registry for the xsl plugin.</p>
+<h3>Returns</h3>
+<p>
+<code>ContextTypeRegistry</code> - the template context type registry for the xsl plugin</p>
+<hr>
+<h2>getTemplateStore</h2>
+<p>
+<code>public TemplateStore <strong>getTemplateStore</strong>()</code>
+</p>
+<p>Returns the template store for the xsl templates.</p>
+<h3>Returns</h3>
+<p>
+<code>TemplateStore</code> - the template store for the xsl templates</p>
+<hr>
+<h2>log</h2>
+<p>
+<code>public void <strong>log</strong>(java.lang.Exception e)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>e</code>
+</p>
+<hr>
+<h2>start</h2>
+<p>
+<code>public void <strong>start</strong>(BundleContext context)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>context</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>java.lang.Exception</code>
+</p>
+<hr>
+<h2>stop</h2>
+<p>
+<code>public void <strong>stop</strong>(BundleContext context)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>context</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>java.lang.Exception</code>
+</p>
<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.ui.internal.actions</strong></font>
@@ -23985,7 +51775,7 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr>
-<td><code><strong>NewDTDFileWizardDelegate()</strong></code></td>
+<td><code><strong>NewDTDFileWizardDelegate</strong>()</code></td>
</tr>
</table>
<br>
@@ -23996,6 +51786,12 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr valign="top">
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>dispose()</code>
+<br>
+ &nbsp;&nbsp;&nbsp;&nbsp;
+ </td>
+</tr>
+<tr valign="top">
<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>init(IWorkbenchWindow window)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
@@ -24015,13 +51811,72 @@ extends java.lang.Object</pre>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
-<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>dispose()</code>
-<br>
- &nbsp;&nbsp;&nbsp;&nbsp;
- </td>
+</table>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>NewDTDFileWizardDelegate</h2>
+<p>
+<code>public <strong>NewDTDFileWizardDelegate</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
</tr>
</table>
+<h2>dispose</h2>
+<p>
+<code>public void <strong>dispose</strong>()</code>
+</p>
+<p></p>
+<hr>
+<h2>init</h2>
+<p>
+<code>public void <strong>init</strong>(IWorkbenchWindow window)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>window</code>
+</p>
+<hr>
+<h2>run</h2>
+<p>
+<code>public void <strong>run</strong>(IAction action)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>action</code>
+</p>
+<hr>
+<h2>selectionChanged</h2>
+<p>
+<code>public void <strong>selectionChanged</strong>(IAction action
+ ,
+ ISelection selection)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>action</code>
+</p>
+<p>
+<code>selection</code>
+</p>
<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.ui.internal.actions</strong></font>
@@ -24043,7 +51898,7 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr>
-<td><code><strong>NewWSDLFileWizardDelegate()</strong></code></td>
+<td><code><strong>NewWSDLFileWizardDelegate</strong>()</code></td>
</tr>
</table>
<br>
@@ -24054,6 +51909,12 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr valign="top">
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>dispose()</code>
+<br>
+ &nbsp;&nbsp;&nbsp;&nbsp;
+ </td>
+</tr>
+<tr valign="top">
<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>init(IWorkbenchWindow window)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
@@ -24073,13 +51934,72 @@ extends java.lang.Object</pre>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
-<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>dispose()</code>
-<br>
- &nbsp;&nbsp;&nbsp;&nbsp;
- </td>
+</table>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
</tr>
</table>
+<h2>NewWSDLFileWizardDelegate</h2>
+<p>
+<code>public <strong>NewWSDLFileWizardDelegate</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>dispose</h2>
+<p>
+<code>public void <strong>dispose</strong>()</code>
+</p>
+<p></p>
+<hr>
+<h2>init</h2>
+<p>
+<code>public void <strong>init</strong>(IWorkbenchWindow window)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>window</code>
+</p>
+<hr>
+<h2>run</h2>
+<p>
+<code>public void <strong>run</strong>(IAction action)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>action</code>
+</p>
+<hr>
+<h2>selectionChanged</h2>
+<p>
+<code>public void <strong>selectionChanged</strong>(IAction action
+ ,
+ ISelection selection)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>action</code>
+</p>
+<p>
+<code>selection</code>
+</p>
<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.ui.internal.actions</strong></font>
@@ -24101,7 +52021,7 @@ extends Action</pre>
</td>
</tr>
<tr>
-<td><code><strong>NewWizardAction(java.lang.String id)</strong></code></td>
+<td><code><strong>NewWizardAction</strong>(java.lang.String id)</code></td>
</tr>
</table>
<br>
@@ -24125,6 +52045,46 @@ extends Action</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>NewWizardAction</h2>
+<p>
+<code>public <strong>NewWizardAction</strong>(java.lang.String id)</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>run</h2>
+<p>
+<code>public void <strong>run</strong>()</code>
+</p>
+<p></p>
+<hr>
+<h2>setSelection</h2>
+<p>
+<code>public void <strong>setSelection</strong>(ISelection selection)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>selection</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.ui.internal.actions</strong></font>
</p>
@@ -24145,7 +52105,7 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr>
-<td><code><strong>NewXMLFileWizardDelegate()</strong></code></td>
+<td><code><strong>NewXMLFileWizardDelegate</strong>()</code></td>
</tr>
</table>
<br>
@@ -24156,6 +52116,12 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr valign="top">
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>dispose()</code>
+<br>
+ &nbsp;&nbsp;&nbsp;&nbsp;
+ </td>
+</tr>
+<tr valign="top">
<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>init(IWorkbenchWindow window)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
@@ -24175,13 +52141,72 @@ extends java.lang.Object</pre>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
-<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>dispose()</code>
-<br>
- &nbsp;&nbsp;&nbsp;&nbsp;
- </td>
+</table>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>NewXMLFileWizardDelegate</h2>
+<p>
+<code>public <strong>NewXMLFileWizardDelegate</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
</tr>
</table>
+<h2>dispose</h2>
+<p>
+<code>public void <strong>dispose</strong>()</code>
+</p>
+<p></p>
+<hr>
+<h2>init</h2>
+<p>
+<code>public void <strong>init</strong>(IWorkbenchWindow window)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>window</code>
+</p>
+<hr>
+<h2>run</h2>
+<p>
+<code>public void <strong>run</strong>(IAction action)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>action</code>
+</p>
+<hr>
+<h2>selectionChanged</h2>
+<p>
+<code>public void <strong>selectionChanged</strong>(IAction action
+ ,
+ ISelection selection)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>action</code>
+</p>
+<p>
+<code>selection</code>
+</p>
<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.ui.internal.actions</strong></font>
@@ -24203,7 +52228,7 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr>
-<td><code><strong>NewXSDFileWizardDelegate()</strong></code></td>
+<td><code><strong>NewXSDFileWizardDelegate</strong>()</code></td>
</tr>
</table>
<br>
@@ -24214,6 +52239,12 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr valign="top">
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>dispose()</code>
+<br>
+ &nbsp;&nbsp;&nbsp;&nbsp;
+ </td>
+</tr>
+<tr valign="top">
<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>init(IWorkbenchWindow window)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
@@ -24233,13 +52264,72 @@ extends java.lang.Object</pre>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
-<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>dispose()</code>
-<br>
- &nbsp;&nbsp;&nbsp;&nbsp;
- </td>
+</table>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
</tr>
</table>
+<h2>NewXSDFileWizardDelegate</h2>
+<p>
+<code>public <strong>NewXSDFileWizardDelegate</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>dispose</h2>
+<p>
+<code>public void <strong>dispose</strong>()</code>
+</p>
+<p></p>
+<hr>
+<h2>init</h2>
+<p>
+<code>public void <strong>init</strong>(IWorkbenchWindow window)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>window</code>
+</p>
+<hr>
+<h2>run</h2>
+<p>
+<code>public void <strong>run</strong>(IAction action)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>action</code>
+</p>
+<hr>
+<h2>selectionChanged</h2>
+<p>
+<code>public void <strong>selectionChanged</strong>(IAction action
+ ,
+ ISelection selection)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>action</code>
+</p>
+<p>
+<code>selection</code>
+</p>
<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.ui.internal.actions</strong></font>
@@ -24261,7 +52351,7 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr>
-<td><code><strong>NewXSLFileWizardDelegate()</strong></code></td>
+<td><code><strong>NewXSLFileWizardDelegate</strong>()</code></td>
</tr>
</table>
<br>
@@ -24272,6 +52362,12 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr valign="top">
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>dispose()</code>
+<br>
+ &nbsp;&nbsp;&nbsp;&nbsp;
+ </td>
+</tr>
+<tr valign="top">
<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>init(IWorkbenchWindow window)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
@@ -24291,13 +52387,72 @@ extends java.lang.Object</pre>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
-<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>dispose()</code>
-<br>
- &nbsp;&nbsp;&nbsp;&nbsp;
- </td>
+</table>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
</tr>
</table>
+<h2>NewXSLFileWizardDelegate</h2>
+<p>
+<code>public <strong>NewXSLFileWizardDelegate</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>dispose</h2>
+<p>
+<code>public void <strong>dispose</strong>()</code>
+</p>
+<p></p>
+<hr>
+<h2>init</h2>
+<p>
+<code>public void <strong>init</strong>(IWorkbenchWindow window)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>window</code>
+</p>
+<hr>
+<h2>run</h2>
+<p>
+<code>public void <strong>run</strong>(IAction action)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>action</code>
+</p>
+<hr>
+<h2>selectionChanged</h2>
+<p>
+<code>public void <strong>selectionChanged</strong>(IAction action
+ ,
+ ISelection selection)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>action</code>
+</p>
+<p>
+<code>selection</code>
+</p>
<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.ui.internal.contentassist</strong></font>
@@ -24326,6 +52481,29 @@ extends java.lang.Object</pre>TODO: Add Javadoc<p></p>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getString</h2>
+<p>
+<code>public java.lang.String <strong>getString</strong>(java.lang.String key)</code>
+</p>
+<p>TODO: Add Javadoc</p>
+<h3>Parameters</h3>
+<p>
+<code>key</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.ui.internal.contentassist</strong></font>
</p>
@@ -24348,7 +52526,7 @@ extends XMLContentAssistProcessor</pre>The XSL Content Assist Processor provides
</td>
</tr>
<tr>
-<td><code><strong>XSLContentAssistProcessor()</strong></code></td>
+<td><code><strong>XSLContentAssistProcessor</strong>()</code></td>
</tr>
</table>
<br>
@@ -24359,35 +52537,44 @@ extends XMLContentAssistProcessor</pre>The XSL Content Assist Processor provides
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public ICompletionProposal[]</code></td><td width="" align="left"><code>computeCompletionProposals(ITextViewer textViewer
+<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>addAttributeValueProposals(ContentAssistRequest contentAssistRequest)</code>
+<br>
+ &nbsp;&nbsp;&nbsp;&nbsp;
+ Adds Attribute proposals based on the element and the attribute where the
+ content proposal was instantiated.</td>
+</tr>
+<tr valign="top">
+<td width="20%" align="right"><code>protected ContentAssistRequest</code></td><td width="" align="left"><code>computeAttributeValueProposals(int documentPosition
,
- int documentPosition)</code>
+ java.lang.String matchString
+ ,
+ ITextRegion completionRegion
+ ,
+ IDOMNode nodeAtOffset
+ ,
+ IDOMNode node)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- TODO: Add Javadoc</td>
+ </td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>addAttributeValueProposals(ContentAssistRequest contentAssistRequest)</code>
+<td width="20%" align="right"><code>public ICompletionProposal[]</code></td><td width="" align="left"><code>computeCompletionProposals(ITextViewer textViewer
+ ,
+ int documentPosition)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Adds Attribute proposals based on the element and the attribute where the
- content proposal was instantiated.</td>
+ TODO: Add Javadoc</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected java.lang.String</code></td><td width="" align="left"><code>getMatchString(IStructuredDocumentRegion parent
+<td width="20%" align="right"><code>protected java.lang.String</code></td><td width="" align="left"><code>extractXMLMatchString(IStructuredDocumentRegion parent
,
ITextRegion aRegion
,
int offset)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- Get the Match String. This is typically the string-before the current
- offset position. For a standard XML Region this is calculated from the
- beginning of the region (i.e. element, attribute, attribute value, etc.
- For XSL, an additional check has to be made to determine if we are parsing
- within an XPath region and where we are in the XPath region, as different
- content assistance can be made available depending on where we are at. This
- primarily affects TEST, and SELECT attributes.</td>
+ An XML Match string is extracted starting from the beginning of the
+ region to the current offset.</td>
</tr>
<tr valign="top">
<td width="20%" align="right"><code>protected java.lang.String</code></td><td width="" align="left"><code>extractXPathMatchString(IDOMAttr node
@@ -24400,17 +52587,33 @@ extends XMLContentAssistProcessor</pre>The XSL Content Assist Processor provides
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected IDOMAttr</code></td><td width="" align="left"><code>isXPathRegion(IDOMNode currentNode
+<td width="20%" align="right"><code>protected IDOMAttr</code></td><td width="" align="left"><code>getAttributeAtTextRegion(java.lang.String attrName
+ ,
+ org.w3c.dom.NamedNodeMap nodeMap
+ ,
+ ITextRegion aRegion)</code>
+<br>
+ &nbsp;&nbsp;&nbsp;&nbsp;
+ </td>
+</tr>
+<tr valign="top">
+<td width="20%" align="right"><code>protected java.lang.String</code></td><td width="" align="left"><code>getMatchString(IStructuredDocumentRegion parent
,
ITextRegion aRegion
,
int offset)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- </td>
+ Get the Match String. This is typically the string-before the current
+ offset position. For a standard XML Region this is calculated from the
+ beginning of the region (i.e. element, attribute, attribute value, etc.
+ For XSL, an additional check has to be made to determine if we are parsing
+ within an XPath region and where we are in the XPath region, as different
+ content assistance can be made available depending on where we are at. This
+ primarily affects TEST, and SELECT attributes.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected IDOMAttr</code></td><td width="" align="left"><code>getXPathNode(org.w3c.dom.Node node
+<td width="20%" align="right"><code>protected int</code></td><td width="" align="left"><code>getRegionEndOffset(IStructuredDocumentRegion parent
,
ITextRegion aRegion)</code>
<br>
@@ -24418,9 +52621,7 @@ extends XMLContentAssistProcessor</pre>The XSL Content Assist Processor provides
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected boolean</code></td><td width="" align="left"><code>hasAttributeAtTextRegion(java.lang.String attrName
- ,
- org.w3c.dom.NamedNodeMap nodeMap
+<td width="20%" align="right"><code>protected IDOMAttr</code></td><td width="" align="left"><code>getXPathNode(org.w3c.dom.Node node
,
ITextRegion aRegion)</code>
<br>
@@ -24428,7 +52629,7 @@ extends XMLContentAssistProcessor</pre>The XSL Content Assist Processor provides
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected IDOMAttr</code></td><td width="" align="left"><code>getAttributeAtTextRegion(java.lang.String attrName
+<td width="20%" align="right"><code>protected boolean</code></td><td width="" align="left"><code>hasAttributeAtTextRegion(java.lang.String attrName
,
org.w3c.dom.NamedNodeMap nodeMap
,
@@ -24438,28 +52639,23 @@ extends XMLContentAssistProcessor</pre>The XSL Content Assist Processor provides
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected java.lang.String</code></td><td width="" align="left"><code>extractXMLMatchString(IStructuredDocumentRegion parent
+<td width="20%" align="right"><code>protected boolean</code></td><td width="" align="left"><code>hasXMLMatchString(IStructuredDocumentRegion parent
,
ITextRegion aRegion
,
int offset)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- An XML Match string is extracted starting from the beginning of the
- region to the current offset.</td>
+ </td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected boolean</code></td><td width="" align="left"><code>hasXMLMatchString(IStructuredDocumentRegion parent
- ,
- ITextRegion aRegion
- ,
- int offset)</code>
+<td width="20%" align="right"><code>protected boolean</code></td><td width="" align="left"><code>isAttributeEqualsRegion(java.lang.String regionType)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected boolean</code></td><td width="" align="left"><code>isOffsetAfterStart(IStructuredDocumentRegion parent
+<td width="20%" align="right"><code>protected boolean</code></td><td width="" align="left"><code>isMatchStringEmpty(IStructuredDocumentRegion parent
,
ITextRegion aRegion
,
@@ -24469,21 +52665,17 @@ extends XMLContentAssistProcessor</pre>The XSL Content Assist Processor provides
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected boolean</code></td><td width="" align="left"><code>regionHasData(IStructuredDocumentRegion parent
+<td width="20%" align="right"><code>protected boolean</code></td><td width="" align="left"><code>isOffsetAfterEndOffset(IStructuredDocumentRegion parent
,
- ITextRegion aRegion)</code>
-<br>
- &nbsp;&nbsp;&nbsp;&nbsp;
- </td>
-</tr>
-<tr valign="top">
-<td width="20%" align="right"><code>protected boolean</code></td><td width="" align="left"><code>isXMLContentRegion(java.lang.String regionType)</code>
+ ITextRegion aRegion
+ ,
+ int offset)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected boolean</code></td><td width="" align="left"><code>isOffsetAfterEndOffset(IStructuredDocumentRegion parent
+<td width="20%" align="right"><code>protected boolean</code></td><td width="" align="left"><code>isOffsetAfterStart(IStructuredDocumentRegion parent
,
ITextRegion aRegion
,
@@ -24493,27 +52685,25 @@ extends XMLContentAssistProcessor</pre>The XSL Content Assist Processor provides
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected int</code></td><td width="" align="left"><code>getRegionEndOffset(IStructuredDocumentRegion parent
- ,
- ITextRegion aRegion)</code>
+<td width="20%" align="right"><code>protected boolean</code></td><td width="" align="left"><code>isRegionNull(ITextRegion aRegion)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected boolean</code></td><td width="" align="left"><code>isXMLTagOpen(java.lang.String regionType)</code>
+<td width="20%" align="right"><code>protected boolean</code></td><td width="" align="left"><code>isXMLContentRegion(java.lang.String regionType)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected boolean</code></td><td width="" align="left"><code>isAttributeEqualsRegion(java.lang.String regionType)</code>
+<td width="20%" align="right"><code>protected boolean</code></td><td width="" align="left"><code>isXMLTagOpen(java.lang.String regionType)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected boolean</code></td><td width="" align="left"><code>isMatchStringEmpty(IStructuredDocumentRegion parent
+<td width="20%" align="right"><code>protected IDOMAttr</code></td><td width="" align="left"><code>isXPathRegion(IDOMNode currentNode
,
ITextRegion aRegion
,
@@ -24523,13 +52713,54 @@ extends XMLContentAssistProcessor</pre>The XSL Content Assist Processor provides
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected boolean</code></td><td width="" align="left"><code>isRegionNull(ITextRegion aRegion)</code>
+<td width="20%" align="right"><code>protected boolean</code></td><td width="" align="left"><code>regionHasData(IStructuredDocumentRegion parent
+ ,
+ ITextRegion aRegion)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
-<tr valign="top">
-<td width="20%" align="right"><code>protected ContentAssistRequest</code></td><td width="" align="left"><code>computeAttributeValueProposals(int documentPosition
+</table>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>XSLContentAssistProcessor</h2>
+<p>
+<code>public <strong>XSLContentAssistProcessor</strong>()</code>
+</p>
+<p>The XSL Content Assist Processor handles XSL specific functionality for
+ content assistance. It leverages several XPath selection variables to
+ help with the selection of elements and template names.</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>addAttributeValueProposals</h2>
+<p>
+<code>protected void <strong>addAttributeValueProposals</strong>(ContentAssistRequest contentAssistRequest)</code>
+</p>
+<p>Adds Attribute proposals based on the element and the attribute where the
+ content proposal was instantiated.</p>
+<h3>Parameters</h3>
+<p>
+<code>contentAssistRequest</code> - Content Assist Request that initiated the proposal request</p>
+<hr>
+<h2>computeAttributeValueProposals</h2>
+<p>
+<code>protected ContentAssistRequest <strong>computeAttributeValueProposals</strong>(int documentPosition
,
java.lang.String matchString
,
@@ -24538,11 +52769,407 @@ extends XMLContentAssistProcessor</pre>The XSL Content Assist Processor provides
IDOMNode nodeAtOffset
,
IDOMNode node)</code>
-<br>
- &nbsp;&nbsp;&nbsp;&nbsp;
- </td>
-</tr>
-</table>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>documentPosition</code>
+</p>
+<p>
+<code>matchString</code>
+</p>
+<p>
+<code>completionRegion</code>
+</p>
+<p>
+<code>nodeAtOffset</code>
+</p>
+<p>
+<code>node</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>ContentAssistRequest</code>
+</p>
+<hr>
+<h2>computeCompletionProposals</h2>
+<p>
+<code>public ICompletionProposal[] <strong>computeCompletionProposals</strong>(ITextViewer textViewer
+ ,
+ int documentPosition)</code>
+</p>
+<p>TODO: Add Javadoc</p>
+<h3>Parameters</h3>
+<p>
+<code>textViewer</code>
+</p>
+<p>
+<code>documentPosition</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>ICompletionProposal[]</code>
+</p>
+<hr>
+<h2>extractXMLMatchString</h2>
+<p>
+<code>protected java.lang.String <strong>extractXMLMatchString</strong>(IStructuredDocumentRegion parent
+ ,
+ ITextRegion aRegion
+ ,
+ int offset)</code>
+</p>
+<p>An XML Match string is extracted starting from the beginning of the
+ region to the current offset.</p>
+<h3>Parameters</h3>
+<p>
+<code>parent</code>
+</p>
+<p>
+<code>aRegion</code>
+</p>
+<p>
+<code>offset</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
+<h2>extractXPathMatchString</h2>
+<p>
+<code>protected java.lang.String <strong>extractXPathMatchString</strong>(IDOMAttr node
+ ,
+ ITextRegion aRegion
+ ,
+ int offset)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>node</code>
+</p>
+<p>
+<code>aRegion</code>
+</p>
+<p>
+<code>offset</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
+<h2>getAttributeAtTextRegion</h2>
+<p>
+<code>protected IDOMAttr <strong>getAttributeAtTextRegion</strong>(java.lang.String attrName
+ ,
+ org.w3c.dom.NamedNodeMap nodeMap
+ ,
+ ITextRegion aRegion)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>attrName</code>
+</p>
+<p>
+<code>nodeMap</code>
+</p>
+<p>
+<code>aRegion</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>IDOMAttr</code>
+</p>
+<hr>
+<h2>getMatchString</h2>
+<p>
+<code>protected java.lang.String <strong>getMatchString</strong>(IStructuredDocumentRegion parent
+ ,
+ ITextRegion aRegion
+ ,
+ int offset)</code>
+</p>
+<p>Get the Match String. This is typically the string-before the current
+ offset position. For a standard XML Region this is calculated from the
+ beginning of the region (i.e. element, attribute, attribute value, etc.
+ For XSL, an additional check has to be made to determine if we are parsing
+ within an XPath region and where we are in the XPath region, as different
+ content assistance can be made available depending on where we are at. This
+ primarily affects TEST, and SELECT attributes.</p>
+<h3>Parameters</h3>
+<p>
+<code>parent</code>
+</p>
+<p>
+<code>aRegion</code>
+</p>
+<p>
+<code>offset</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
+<h2>getRegionEndOffset</h2>
+<p>
+<code>protected int <strong>getRegionEndOffset</strong>(IStructuredDocumentRegion parent
+ ,
+ ITextRegion aRegion)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>parent</code>
+</p>
+<p>
+<code>aRegion</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>int</code>
+</p>
+<hr>
+<h2>getXPathNode</h2>
+<p>
+<code>protected IDOMAttr <strong>getXPathNode</strong>(org.w3c.dom.Node node
+ ,
+ ITextRegion aRegion)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>node</code>
+</p>
+<p>
+<code>aRegion</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>IDOMAttr</code>
+</p>
+<hr>
+<h2>hasAttributeAtTextRegion</h2>
+<p>
+<code>protected boolean <strong>hasAttributeAtTextRegion</strong>(java.lang.String attrName
+ ,
+ org.w3c.dom.NamedNodeMap nodeMap
+ ,
+ ITextRegion aRegion)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>attrName</code>
+</p>
+<p>
+<code>nodeMap</code>
+</p>
+<p>
+<code>aRegion</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<hr>
+<h2>hasXMLMatchString</h2>
+<p>
+<code>protected boolean <strong>hasXMLMatchString</strong>(IStructuredDocumentRegion parent
+ ,
+ ITextRegion aRegion
+ ,
+ int offset)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>parent</code>
+</p>
+<p>
+<code>aRegion</code>
+</p>
+<p>
+<code>offset</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<hr>
+<h2>isAttributeEqualsRegion</h2>
+<p>
+<code>protected boolean <strong>isAttributeEqualsRegion</strong>(java.lang.String regionType)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>regionType</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<hr>
+<h2>isMatchStringEmpty</h2>
+<p>
+<code>protected boolean <strong>isMatchStringEmpty</strong>(IStructuredDocumentRegion parent
+ ,
+ ITextRegion aRegion
+ ,
+ int offset)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>parent</code>
+</p>
+<p>
+<code>aRegion</code>
+</p>
+<p>
+<code>offset</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<hr>
+<h2>isOffsetAfterEndOffset</h2>
+<p>
+<code>protected boolean <strong>isOffsetAfterEndOffset</strong>(IStructuredDocumentRegion parent
+ ,
+ ITextRegion aRegion
+ ,
+ int offset)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>parent</code>
+</p>
+<p>
+<code>aRegion</code>
+</p>
+<p>
+<code>offset</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<hr>
+<h2>isOffsetAfterStart</h2>
+<p>
+<code>protected boolean <strong>isOffsetAfterStart</strong>(IStructuredDocumentRegion parent
+ ,
+ ITextRegion aRegion
+ ,
+ int offset)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>parent</code>
+</p>
+<p>
+<code>aRegion</code>
+</p>
+<p>
+<code>offset</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<hr>
+<h2>isRegionNull</h2>
+<p>
+<code>protected boolean <strong>isRegionNull</strong>(ITextRegion aRegion)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>aRegion</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<hr>
+<h2>isXMLContentRegion</h2>
+<p>
+<code>protected boolean <strong>isXMLContentRegion</strong>(java.lang.String regionType)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>regionType</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<hr>
+<h2>isXMLTagOpen</h2>
+<p>
+<code>protected boolean <strong>isXMLTagOpen</strong>(java.lang.String regionType)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>regionType</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<hr>
+<h2>isXPathRegion</h2>
+<p>
+<code>protected IDOMAttr <strong>isXPathRegion</strong>(IDOMNode currentNode
+ ,
+ ITextRegion aRegion
+ ,
+ int offset)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>currentNode</code>
+</p>
+<p>
+<code>aRegion</code>
+</p>
+<p>
+<code>offset</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>IDOMAttr</code>
+</p>
+<hr>
+<h2>regionHasData</h2>
+<p>
+<code>protected boolean <strong>regionHasData</strong>(IStructuredDocumentRegion parent
+ ,
+ ITextRegion aRegion)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>parent</code>
+</p>
+<p>
+<code>aRegion</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.ui.internal.doubleclick</strong></font>
@@ -24585,7 +53212,7 @@ extends XMLDoubleClickStrategy</pre>XSLDoubleClickStrategy extends the XMLDouble
</td>
</tr>
<tr>
-<td><code><strong>XSLDoubleClickStrategy()</strong></code></td>
+<td><code><strong>XSLDoubleClickStrategy</strong>()</code></td>
</tr>
</table>
<br>
@@ -24615,6 +53242,92 @@ extends XMLDoubleClickStrategy</pre>XSLDoubleClickStrategy extends the XMLDouble
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>XML_DELIMITERS</h2>
+<p>
+<code>protected static char[] <strong>XML_DELIMITERS</strong></code>
+</p>
+<hr>
+<h2>XML_PARENTHESIS</h2>
+<p>
+<code>protected static char[] <strong>XML_PARENTHESIS</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>XSLDoubleClickStrategy</h2>
+<p>
+<code>public <strong>XSLDoubleClickStrategy</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getWord</h2>
+<p>
+<code>protected org.eclipse.swt.graphics.Point <strong>getWord</strong>(java.lang.String string
+ ,
+ int cursor)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>string</code>
+</p>
+<p>
+<code>cursor</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.swt.graphics.Point</code>
+</p>
+<hr>
+<h2>startOfWord</h2>
+<p>
+<code>protected int <strong>startOfWord</strong>(java.lang.String string
+ ,
+ int cursor
+ ,
+ int wordStart)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>string</code>
+</p>
+<p>
+<code>cursor</code>
+</p>
+<p>
+<code>wordStart</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>int</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.ui.internal.editor</strong></font>
</p>
@@ -24635,16 +53348,16 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr>
-<td><code><strong>SourceFileHyperlink(IRegion hyperLinkRegion
+<td><code><strong>SourceFileHyperlink</strong>(IRegion hyperLinkRegion
,
- IFile linkedFile)</strong></code></td>
+ IFile linkedFile)</code></td>
</tr>
<tr>
-<td><code><strong>SourceFileHyperlink(IRegion hyperLinkRegion
+<td><code><strong>SourceFileHyperlink</strong>(IRegion hyperLinkRegion
,
IFile linkedFile
,
- org.eclipse.wst.xsl.core.internal.model.XSLNode node)</strong></code></td>
+ org.eclipse.wst.xsl.core.internal.model.XSLNode node)</code></td>
</tr>
</table>
<br>
@@ -24661,13 +53374,13 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getTypeLabel()</code>
+<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getHyperlinkText()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getHyperlinkText()</code>
+<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getTypeLabel()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@@ -24680,6 +53393,78 @@ extends java.lang.Object</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>SourceFileHyperlink</h2>
+<p>
+<code>public <strong>SourceFileHyperlink</strong>(IRegion hyperLinkRegion
+ ,
+ IFile linkedFile)</code>
+</p>
+<p></p>
+<hr>
+<h2>SourceFileHyperlink</h2>
+<p>
+<code>public <strong>SourceFileHyperlink</strong>(IRegion hyperLinkRegion
+ ,
+ IFile linkedFile
+ ,
+ org.eclipse.wst.xsl.core.internal.model.XSLNode node)</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getHyperlinkRegion</h2>
+<p>
+<code>public IRegion <strong>getHyperlinkRegion</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>IRegion</code>
+</p>
+<hr>
+<h2>getHyperlinkText</h2>
+<p>
+<code>public java.lang.String <strong>getHyperlinkText</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
+<h2>getTypeLabel</h2>
+<p>
+<code>public java.lang.String <strong>getTypeLabel</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
+<h2>open</h2>
+<p>
+<code>public void <strong>open</strong>()</code>
+</p>
+<p></p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.ui.internal.editor</strong></font>
</p>
@@ -24704,7 +53489,7 @@ extends AbstractHyperlinkDetector</pre>A hyperlink detector for XSL files.
</td>
</tr>
<tr>
-<td><code><strong>XSLHyperlinkDetector()</strong></code></td>
+<td><code><strong>XSLHyperlinkDetector</strong>()</code></td>
</tr>
</table>
<br>
@@ -24726,6 +53511,53 @@ extends AbstractHyperlinkDetector</pre>A hyperlink detector for XSL files.
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>XSLHyperlinkDetector</h2>
+<p>
+<code>public <strong>XSLHyperlinkDetector</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>detectHyperlinks</h2>
+<p>
+<code>public IHyperlink[] <strong>detectHyperlinks</strong>(ITextViewer textViewer
+ ,
+ IRegion region
+ ,
+ boolean canShowMultipleHyperlinks)</code>
+</p>
+<p>Try to create hyperlinks for viewer and region</p>
+<h3>Parameters</h3>
+<p>
+<code>textViewer</code>
+</p>
+<p>
+<code>region</code>
+</p>
+<p>
+<code>canShowMultipleHyperlinks</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>IHyperlink[]</code> - array of hyperlinks for current region</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.ui.internal.handlers</strong></font>
</p>
@@ -24746,7 +53578,7 @@ extends AbstractHandler</pre>
</td>
</tr>
<tr>
-<td><code><strong>OpenDeclarationHandler()</strong></code></td>
+<td><code><strong>OpenDeclarationHandler</strong>()</code></td>
</tr>
</table>
<br>
@@ -24764,6 +53596,48 @@ extends AbstractHandler</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>OpenDeclarationHandler</h2>
+<p>
+<code>public <strong>OpenDeclarationHandler</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>execute</h2>
+<p>
+<code>public java.lang.Object <strong>execute</strong>(ExecutionEvent event)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>event</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.Object</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>ExecutionException</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.ui.internal.perspective</strong></font>
</p>
@@ -24785,7 +53659,7 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr>
-<td><code><strong>XMLPerspectiveFactory()</strong></code></td>
+<td><code><strong>XMLPerspectiveFactory</strong>()</code></td>
</tr>
</table>
<br>
@@ -24805,6 +53679,42 @@ extends java.lang.Object</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>XMLPerspectiveFactory</h2>
+<p>
+<code>public <strong>XMLPerspectiveFactory</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>createInitialLayout</h2>
+<p>
+<code>public void <strong>createInitialLayout</strong>(IPageLayout layout)</code>
+</p>
+<p>Creates the initial layout. This is what the layout is reset to
+ when the Reset Perspective is selected. It takes as input a
+ IPageLayout object.</p>
+<h3>Parameters</h3>
+<p>
+<code>layout</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.ui.internal.preferences</strong></font>
</p>
@@ -24826,7 +53736,7 @@ extends AbstractPreferencePage</pre>Augments the SSE <code>AbstractPreferencePag
</td>
</tr>
<tr>
-<td><code><strong>AbstractXSLPreferencePage()</strong></code></td>
+<td><code><strong>AbstractXSLPreferencePage</strong>()</code></td>
</tr>
</table>
<br>
@@ -24837,7 +53747,11 @@ extends AbstractPreferencePage</pre>Augments the SSE <code>AbstractPreferencePag
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected org.eclipse.swt.widgets.Control</code></td><td width="" align="left"><code>createContents(org.eclipse.swt.widgets.Composite parent)</code>
+<td width="20%" align="right"><code>protected org.eclipse.swt.widgets.Combo</code></td><td width="" align="left"><code>createCombo(org.eclipse.swt.widgets.Composite parent
+ ,
+ java.lang.String label
+ ,
+ java.lang.String prefKey)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@@ -24849,21 +53763,17 @@ extends AbstractPreferencePage</pre>Augments the SSE <code>AbstractPreferencePag
Called by createContents and must be implemented.</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected org.eclipse.swt.widgets.Composite</code></td><td width="" align="left"><code>createTwistie(org.eclipse.swt.widgets.Composite parent
- ,
- java.lang.String label
- ,
- int cols)</code>
+<td width="20%" align="right"><code>protected org.eclipse.swt.widgets.Control</code></td><td width="" align="left"><code>createContents(org.eclipse.swt.widgets.Composite parent)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected org.eclipse.swt.widgets.Combo</code></td><td width="" align="left"><code>createCombo(org.eclipse.swt.widgets.Composite parent
+<td width="20%" align="right"><code>protected org.eclipse.swt.widgets.Composite</code></td><td width="" align="left"><code>createTwistie(org.eclipse.swt.widgets.Composite parent
,
java.lang.String label
,
- java.lang.String prefKey)</code>
+ int cols)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@@ -24888,6 +53798,131 @@ extends AbstractPreferencePage</pre>Augments the SSE <code>AbstractPreferencePag
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>AbstractXSLPreferencePage</h2>
+<p>
+<code>public <strong>AbstractXSLPreferencePage</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>createCombo</h2>
+<p>
+<code>protected org.eclipse.swt.widgets.Combo <strong>createCombo</strong>(org.eclipse.swt.widgets.Composite parent
+ ,
+ java.lang.String label
+ ,
+ java.lang.String prefKey)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>parent</code>
+</p>
+<p>
+<code>label</code>
+</p>
+<p>
+<code>prefKey</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.swt.widgets.Combo</code>
+</p>
+<hr>
+<h2>createCommonContents</h2>
+<p>
+<code>protected org.eclipse.swt.widgets.Composite <strong>createCommonContents</strong>(org.eclipse.swt.widgets.Composite parent)</code>
+</p>
+<p>Called by createContents and must be implemented.</p>
+<h3>Parameters</h3>
+<p>
+<code>parent</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.swt.widgets.Composite</code> - the composite</p>
+<hr>
+<h2>createContents</h2>
+<p>
+<code>protected org.eclipse.swt.widgets.Control <strong>createContents</strong>(org.eclipse.swt.widgets.Composite parent)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>parent</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.swt.widgets.Control</code>
+</p>
+<hr>
+<h2>createTwistie</h2>
+<p>
+<code>protected org.eclipse.swt.widgets.Composite <strong>createTwistie</strong>(org.eclipse.swt.widgets.Composite parent
+ ,
+ java.lang.String label
+ ,
+ int cols)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>parent</code>
+</p>
+<p>
+<code>label</code>
+</p>
+<p>
+<code>cols</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.swt.widgets.Composite</code>
+</p>
+<hr>
+<h2>dispose</h2>
+<p>
+<code>public void <strong>dispose</strong>()</code>
+</p>
+<p>Saves the expansion states before calling super.</p>
+<hr>
+<h2>getModelPreferences</h2>
+<p>
+<code>protected Preferences <strong>getModelPreferences</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>Preferences</code>
+</p>
+<hr>
+<h2>performOk</h2>
+<p>
+<code>public boolean <strong>performOk</strong>()</code>
+</p>
+<p>Save the preferences.</p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.ui.internal.preferences</strong></font>
</p>
@@ -24908,7 +53943,7 @@ extends PreferencePage</pre>
</td>
</tr>
<tr>
-<td><code><strong>MainPreferencePage()</strong></code></td>
+<td><code><strong>MainPreferencePage</strong>()</code></td>
</tr>
</table>
<br>
@@ -24919,16 +53954,16 @@ extends PreferencePage</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>init(IWorkbench workbench)</code>
+<td width="20%" align="right"><code>protected org.eclipse.swt.widgets.Control</code></td><td width="" align="left"><code>createContents(org.eclipse.swt.widgets.Composite ancestor)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- (non-Javadoc)</td>
+ </td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected org.eclipse.swt.widgets.Control</code></td><td width="" align="left"><code>createContents(org.eclipse.swt.widgets.Composite ancestor)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>init(IWorkbench workbench)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- </td>
+ (non-Javadoc)</td>
</tr>
<tr valign="top">
<td width="20%" align="right"><code>public boolean</code></td><td width="" align="left"><code>performOk()</code>
@@ -24938,6 +53973,64 @@ extends PreferencePage</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>MainPreferencePage</h2>
+<p>
+<code>public <strong>MainPreferencePage</strong>()</code>
+</p>
+<p>MainPreferncePage is the constructor for the XSL Preference Page</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>createContents</h2>
+<p>
+<code>protected org.eclipse.swt.widgets.Control <strong>createContents</strong>(org.eclipse.swt.widgets.Composite ancestor)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>ancestor</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.swt.widgets.Control</code>
+</p>
+<hr>
+<h2>init</h2>
+<p>
+<code>public void <strong>init</strong>(IWorkbench workbench)</code>
+</p>
+<p>(non-Javadoc)</p>
+<h3>Parameters</h3>
+<p>
+<code>workbench</code>
+</p>
+<hr>
+<h2>performOk</h2>
+<p>
+<code>public boolean <strong>performOk</strong>()</code>
+</p>
+<p>(non-Javadoc)</p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.ui.internal.preferences</strong></font>
</p>
@@ -24965,6 +54058,29 @@ extends java.lang.Object</pre>TODO: Add Javadoc<p></p>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getString</h2>
+<p>
+<code>public java.lang.String <strong>getString</strong>(java.lang.String key)</code>
+</p>
+<p>TODO: Add Javadoc</p>
+<h3>Parameters</h3>
+<p>
+<code>key</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.ui.internal.preferences</strong></font>
</p>
@@ -24985,7 +54101,7 @@ extends org.eclipse.wst.xsl.ui.internal.preferences.AbstractXSLPreferencePage</p
</td>
</tr>
<tr>
-<td><code><strong>ValidationPreferencePage()</strong></code></td>
+<td><code><strong>ValidationPreferencePage</strong>()</code></td>
</tr>
</table>
<br>
@@ -24996,12 +54112,6 @@ extends org.eclipse.wst.xsl.ui.internal.preferences.AbstractXSLPreferencePage</p
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected org.eclipse.swt.widgets.Composite</code></td><td width="" align="left"><code>createCommonContents(org.eclipse.swt.widgets.Composite parent)</code>
-<br>
- &nbsp;&nbsp;&nbsp;&nbsp;
- </td>
-</tr>
-<tr valign="top">
<td width="20%" align="right"><code>protected org.eclipse.swt.widgets.Combo</code></td><td width="" align="left"><code>createCombo(org.eclipse.swt.widgets.Composite parent
,
java.lang.String label
@@ -25012,31 +54122,123 @@ extends org.eclipse.wst.xsl.ui.internal.preferences.AbstractXSLPreferencePage</p
</td>
</tr>
<tr valign="top">
+<td width="20%" align="right"><code>protected org.eclipse.swt.widgets.Composite</code></td><td width="" align="left"><code>createCommonContents(org.eclipse.swt.widgets.Composite parent)</code>
+<br>
+ &nbsp;&nbsp;&nbsp;&nbsp;
+ </td>
+</tr>
+<tr valign="top">
<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>initializeValues()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>storeValues()</code>
+<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>performDefaults()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>validateValues()</code>
+<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>storeValues()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>performDefaults()</code>
+<td width="20%" align="right"><code>protected void</code></td><td width="" align="left"><code>validateValues()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>ValidationPreferencePage</h2>
+<p>
+<code>public <strong>ValidationPreferencePage</strong>()</code>
+</p>
+<p>Create a new instance of this.</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>createCombo</h2>
+<p>
+<code>protected org.eclipse.swt.widgets.Combo <strong>createCombo</strong>(org.eclipse.swt.widgets.Composite parent
+ ,
+ java.lang.String label
+ ,
+ java.lang.String prefKey)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>parent</code>
+</p>
+<p>
+<code>label</code>
+</p>
+<p>
+<code>prefKey</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.swt.widgets.Combo</code>
+</p>
+<hr>
+<h2>createCommonContents</h2>
+<p>
+<code>protected org.eclipse.swt.widgets.Composite <strong>createCommonContents</strong>(org.eclipse.swt.widgets.Composite parent)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>parent</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.swt.widgets.Composite</code>
+</p>
+<hr>
+<h2>initializeValues</h2>
+<p>
+<code>protected void <strong>initializeValues</strong>()</code>
+</p>
+<p></p>
+<hr>
+<h2>performDefaults</h2>
+<p>
+<code>protected void <strong>performDefaults</strong>()</code>
+</p>
+<p></p>
+<hr>
+<h2>storeValues</h2>
+<p>
+<code>protected void <strong>storeValues</strong>()</code>
+</p>
+<p></p>
+<hr>
+<h2>validateValues</h2>
+<p>
+<code>protected void <strong>validateValues</strong>()</code>
+</p>
+<p></p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.ui.internal.preferences</strong></font>
</p>
@@ -25059,7 +54261,7 @@ extends XMLTemplatePreferencePage</pre>XSLTemplatePreferencePage sets up the tem
</td>
</tr>
<tr>
-<td><code><strong>XSLTemplatePreferencePage()</strong></code></td>
+<td><code><strong>XSLTemplatePreferencePage</strong>()</code></td>
</tr>
</table>
<br>
@@ -25077,6 +54279,40 @@ extends XMLTemplatePreferencePage</pre>XSLTemplatePreferencePage sets up the tem
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>XSLTemplatePreferencePage</h2>
+<p>
+<code>public <strong>XSLTemplatePreferencePage</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>performOk</h2>
+<p>
+<code>public boolean <strong>performOk</strong>()</code>
+</p>
+<p>(non-Javadoc)</p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.ui.internal.style</strong></font>
</p>
@@ -25097,7 +54333,7 @@ extends LineStyleProviderForXML</pre>
</td>
</tr>
<tr>
-<td><code><strong>LineStyleProviderForXSL()</strong></code></td>
+<td><code><strong>LineStyleProviderForXSL</strong>()</code></td>
</tr>
</table>
<br>
@@ -25115,6 +54351,40 @@ extends LineStyleProviderForXML</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>LineStyleProviderForXSL</h2>
+<p>
+<code>public <strong>LineStyleProviderForXSL</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getColorPreferences</h2>
+<p>
+<code>protected IPreferenceStore <strong>getColorPreferences</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>IPreferenceStore</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.ui.internal.templates</strong></font>
</p>
@@ -25135,7 +54405,7 @@ extends TemplateContextType</pre>
</td>
</tr>
<tr>
-<td><code><strong>TemplateContextTypeXSL()</strong></code></td>
+<td><code><strong>TemplateContextTypeXSL</strong>()</code></td>
</tr>
</table>
<br>
@@ -25147,6 +54417,21 @@ extends TemplateContextType</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>TemplateContextTypeXSL</h2>
+<p>
+<code>public <strong>TemplateContextTypeXSL</strong>()</code>
+</p>
+<p></p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.ui.internal.templates</strong></font>
</p>
@@ -25167,7 +54452,7 @@ extends SimpleTemplateVariableResolver</pre>
</td>
</tr>
<tr>
-<td><code><strong>VersionTemplateVariableResolverXSL()</strong></code></td>
+<td><code><strong>VersionTemplateVariableResolverXSL</strong>()</code></td>
</tr>
</table>
<br>
@@ -25185,6 +54470,44 @@ extends SimpleTemplateVariableResolver</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>VersionTemplateVariableResolverXSL</h2>
+<p>
+<code>public <strong>VersionTemplateVariableResolverXSL</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>resolve</h2>
+<p>
+<code>protected java.lang.String <strong>resolve</strong>(TemplateContext context)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>context</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.ui.internal.util</strong></font>
</p>
@@ -25208,7 +54531,7 @@ extends java.lang.Object</pre>Helper class to handle images provided by this plu
</td>
</tr>
<tr>
-<td><code><strong>XSLPluginImageHelper()</strong></code></td>
+<td><code><strong>XSLPluginImageHelper</strong>()</code></td>
</tr>
</table>
<br>
@@ -25219,12 +54542,6 @@ extends java.lang.Object</pre>Helper class to handle images provided by this plu
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static org.eclipse.wst.xsl.ui.internal.util.XSLPluginImageHelper</code></td><td width="" align="left"><code>getInstance()</code>
-<br>
- &nbsp;&nbsp;&nbsp;&nbsp;
- Gets the instance.</td>
-</tr>
-<tr valign="top">
<td width="20%" align="right"><code>public org.eclipse.swt.graphics.Image</code></td><td width="" align="left"><code>getImage(java.lang.String resource)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
@@ -25241,8 +54558,76 @@ extends java.lang.Object</pre>Helper class to handle images provided by this plu
attempt to find and load the image descriptor at the location specified
in resource.</td>
</tr>
+<tr valign="top">
+<td width="20%" align="right"><code>public static org.eclipse.wst.xsl.ui.internal.util.XSLPluginImageHelper</code></td><td width="" align="left"><code>getInstance()</code>
+<br>
+ &nbsp;&nbsp;&nbsp;&nbsp;
+ Gets the instance.</td>
+</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>XSLPluginImageHelper</h2>
+<p>
+<code>public <strong>XSLPluginImageHelper</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getImage</h2>
+<p>
+<code>public org.eclipse.swt.graphics.Image <strong>getImage</strong>(java.lang.String resource)</code>
+</p>
+<p>Retrieves the image associated with resource from the image registry.
+ If the image cannot be retrieved, attempt to find and load the image at
+ the location specified in resource.</p>
+<h3>Parameters</h3>
+<p>
+<code>resource</code> - the image to retrieve</p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.swt.graphics.Image</code> - Image the image associated with resource or null if one could not be found</p>
+<hr>
+<h2>getImageDescriptor</h2>
+<p>
+<code>public ImageDescriptor <strong>getImageDescriptor</strong>(java.lang.String resource)</code>
+</p>
+<p>Retrieves the image descriptor associated with resource from the image
+ descriptor registry. If the image descriptor cannot be retrieved,
+ attempt to find and load the image descriptor at the location specified
+ in resource.</p>
+<h3>Parameters</h3>
+<p>
+<code>resource</code> - the image descriptor to retrieve</p>
+<h3>Returns</h3>
+<p>
+<code>ImageDescriptor</code> - ImageDescriptor the image descriptor assocated with resource or the default "missing" image descriptor if one could not be found</p>
+<hr>
+<h2>getInstance</h2>
+<p>
+<code>public org.eclipse.wst.xsl.ui.internal.util.XSLPluginImageHelper <strong>getInstance</strong>()</code>
+</p>
+<p>Gets the instance.</p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.ui.internal.util.XSLPluginImageHelper</code> - Returns a XMLEditorPluginImageHelper</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.ui.internal.util</strong></font>
</p>
@@ -25262,25 +54647,25 @@ extends java.lang.Object</pre>Bundle of most images used by the XSL Plugins<hr>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>IMG_XPATH_FUNCTION</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>IMG_OPERATOR</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
Path to the XPATH Images used for Content Assist</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>IMG_XPATH_AXIS</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>IMG_VARIABLES</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
Path to the XPATH Images used for Content Assist</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>IMG_VARIABLES</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>IMG_XPATH_AXIS</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
Path to the XPATH Images used for Content Assist</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>IMG_OPERATOR</code>
+<td width="20%" align="right"><code>public static java.lang.String</code></td><td width="80%" align="left"><code>IMG_XPATH_FUNCTION</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
Path to the XPATH Images used for Content Assist</td>
@@ -25294,7 +54679,7 @@ extends java.lang.Object</pre>Bundle of most images used by the XSL Plugins<hr>
</td>
</tr>
<tr>
-<td><code><strong>XSLPluginImages()</strong></code></td>
+<td><code><strong>XSLPluginImages</strong>()</code></td>
</tr>
</table>
<br>
@@ -25306,6 +54691,70 @@ extends java.lang.Object</pre>Bundle of most images used by the XSL Plugins<hr>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>IMG_OPERATOR</h2>
+<p>
+<code>public static java.lang.String <strong>IMG_OPERATOR</strong></code>
+</p>
+<table>
+<tr>
+<td>Path to the XPATH Images used for Content Assist</td>
+</tr>
+</table>
+<hr>
+<h2>IMG_VARIABLES</h2>
+<p>
+<code>public static java.lang.String <strong>IMG_VARIABLES</strong></code>
+</p>
+<table>
+<tr>
+<td>Path to the XPATH Images used for Content Assist</td>
+</tr>
+</table>
+<hr>
+<h2>IMG_XPATH_AXIS</h2>
+<p>
+<code>public static java.lang.String <strong>IMG_XPATH_AXIS</strong></code>
+</p>
+<table>
+<tr>
+<td>Path to the XPATH Images used for Content Assist</td>
+</tr>
+</table>
+<hr>
+<h2>IMG_XPATH_FUNCTION</h2>
+<p>
+<code>public static java.lang.String <strong>IMG_XPATH_FUNCTION</strong></code>
+</p>
+<table>
+<tr>
+<td>Path to the XPATH Images used for Content Assist</td>
+</tr>
+</table>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>XSLPluginImages</h2>
+<p>
+<code>public <strong>XSLPluginImages</strong>()</code>
+</p>
+<p></p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.ui.internal.validation</strong></font>
</p>
@@ -25325,7 +54774,7 @@ extends DelegatingSourceValidator</pre>This performs the as-you-type validation
</td>
</tr>
<tr>
-<td><code><strong>DelegatingSourceValidatorForXSL()</strong></code></td>
+<td><code><strong>DelegatingSourceValidatorForXSL</strong>()</code></td>
</tr>
</table>
<br>
@@ -25343,6 +54792,40 @@ extends DelegatingSourceValidator</pre>This performs the as-you-type validation
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>DelegatingSourceValidatorForXSL</h2>
+<p>
+<code>public <strong>DelegatingSourceValidatorForXSL</strong>()</code>
+</p>
+<p>Constructor</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getDelegateValidator</h2>
+<p>
+<code>protected IValidator <strong>getDelegateValidator</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>IValidator</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.ui.internal.validation</strong></font>
</p>
@@ -25362,7 +54845,7 @@ extends DelegatingSourceValidator</pre>This performs the as-you-type validation
</td>
</tr>
<tr>
-<td><code><strong>DelegatingSourceValidatorForXalanXSL()</strong></code></td>
+<td><code><strong>DelegatingSourceValidatorForXalanXSL</strong>()</code></td>
</tr>
</table>
<br>
@@ -25380,6 +54863,40 @@ extends DelegatingSourceValidator</pre>This performs the as-you-type validation
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>DelegatingSourceValidatorForXalanXSL</h2>
+<p>
+<code>public <strong>DelegatingSourceValidatorForXalanXSL</strong>()</code>
+</p>
+<p>Constructor</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getDelegateValidator</h2>
+<p>
+<code>protected IValidator <strong>getDelegateValidator</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>IValidator</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.ui.internal.validation</strong></font>
</p>
@@ -25400,7 +54917,7 @@ extends java.lang.Object</pre>This class listens for Errors tossed by a XSL Proc
</td>
</tr>
<tr>
-<td><code><strong>XSLErrorListener(java.util.logging.Logger logger)</strong></code></td>
+<td><code><strong>XSLErrorListener</strong>(java.util.logging.Logger logger)</code></td>
</tr>
</table>
<br>
@@ -25411,25 +54928,87 @@ extends java.lang.Object</pre>This class listens for Errors tossed by a XSL Proc
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>warning(javax.xml.transform.TransformerException exception)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>error(javax.xml.transform.TransformerException exception)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
(non-Javadoc)</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>error(javax.xml.transform.TransformerException exception)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>fatalError(javax.xml.transform.TransformerException exception)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
(non-Javadoc)</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>fatalError(javax.xml.transform.TransformerException exception)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>warning(javax.xml.transform.TransformerException exception)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
(non-Javadoc)</td>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>XSLErrorListener</h2>
+<p>
+<code>public <strong>XSLErrorListener</strong>(java.util.logging.Logger logger)</code>
+</p>
+<p>TODO: Add Javadoc</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>error</h2>
+<p>
+<code>public void <strong>error</strong>(javax.xml.transform.TransformerException exception)</code>
+</p>
+<p>(non-Javadoc)</p>
+<h3>Parameters</h3>
+<p>
+<code>exception</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>javax.xml.transform.TransformerException</code>
+</p>
+<hr>
+<h2>fatalError</h2>
+<p>
+<code>public void <strong>fatalError</strong>(javax.xml.transform.TransformerException exception)</code>
+</p>
+<p>(non-Javadoc)</p>
+<h3>Parameters</h3>
+<p>
+<code>exception</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>javax.xml.transform.TransformerException</code>
+</p>
+<hr>
+<h2>warning</h2>
+<p>
+<code>public void <strong>warning</strong>(javax.xml.transform.TransformerException exception)</code>
+</p>
+<p>(non-Javadoc)</p>
+<h3>Parameters</h3>
+<p>
+<code>exception</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.ui.internal.validation</strong></font>
</p>
@@ -25451,7 +55030,7 @@ extends MarkupValidator</pre>
</td>
</tr>
<tr>
-<td><code><strong>XSLMarkupValidator()</strong></code></td>
+<td><code><strong>XSLMarkupValidator</strong>()</code></td>
</tr>
</table>
<br>
@@ -25468,24 +55047,24 @@ extends MarkupValidator</pre>
(non-Javadoc)</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>validate(IValidationContext helper
- ,
- IReporter reporter)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>connect(IDocument document)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- </td>
+ (non-Javadoc)</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>connect(IDocument document)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>disconnect(IDocument document)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
(non-Javadoc)</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>disconnect(IDocument document)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>validate(IValidationContext helper
+ ,
+ IReporter reporter)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
- (non-Javadoc)</td>
+ </td>
</tr>
<tr valign="top">
<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>validate(IRegion dirtyRegion
@@ -25499,6 +55078,99 @@ extends MarkupValidator</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>XSLMarkupValidator</h2>
+<p>
+<code>public <strong>XSLMarkupValidator</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>cleanup</h2>
+<p>
+<code>public void <strong>cleanup</strong>(IReporter reporter)</code>
+</p>
+<p>(non-Javadoc)</p>
+<h3>Parameters</h3>
+<p>
+<code>reporter</code>
+</p>
+<hr>
+<h2>connect</h2>
+<p>
+<code>public void <strong>connect</strong>(IDocument document)</code>
+</p>
+<p>(non-Javadoc)</p>
+<h3>Parameters</h3>
+<p>
+<code>document</code>
+</p>
+<hr>
+<h2>disconnect</h2>
+<p>
+<code>public void <strong>disconnect</strong>(IDocument document)</code>
+</p>
+<p>(non-Javadoc)</p>
+<h3>Parameters</h3>
+<p>
+<code>document</code>
+</p>
+<hr>
+<h2>validate</h2>
+<p>
+<code>public void <strong>validate</strong>(IValidationContext helper
+ ,
+ IReporter reporter)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>helper</code>
+</p>
+<p>
+<code>reporter</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>ValidationException</code>
+</p>
+<hr>
+<h2>validate</h2>
+<p>
+<code>public void <strong>validate</strong>(IRegion dirtyRegion
+ ,
+ IValidationContext helper
+ ,
+ IReporter reporter)</code>
+</p>
+<p>(non-Javadoc)</p>
+<h3>Parameters</h3>
+<p>
+<code>dirtyRegion</code>
+</p>
+<p>
+<code>helper</code>
+</p>
+<p>
+<code>reporter</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.ui.internal.wizards</strong></font>
</p>
@@ -25519,7 +55191,7 @@ extends WizardPage</pre>
</td>
</tr>
<tr>
-<td><code><strong>NewXSLFileTemplatesWizardPage()</strong></code></td>
+<td><code><strong>NewXSLFileTemplatesWizardPage</strong>()</code></td>
</tr>
</table>
<br>
@@ -25567,6 +55239,74 @@ extends WizardPage</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>NewXSLFileTemplatesWizardPage</h2>
+<p>
+<code>public <strong>NewXSLFileTemplatesWizardPage</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>createControl</h2>
+<p>
+<code>public void <strong>createControl</strong>(org.eclipse.swt.widgets.Composite ancestor)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>ancestor</code>
+</p>
+<hr>
+<h2>enableTemplates</h2>
+<p>
+<code>package-private void <strong>enableTemplates</strong>()</code>
+</p>
+<p></p>
+<hr>
+<h2>getTemplateString</h2>
+<p>
+<code>package-private java.lang.String <strong>getTemplateString</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
+<h2>linkClicked</h2>
+<p>
+<code>package-private void <strong>linkClicked</strong>()</code>
+</p>
+<p></p>
+<hr>
+<h2>saveLastSavedPreferences</h2>
+<p>
+<code>package-private void <strong>saveLastSavedPreferences</strong>()</code>
+</p>
+<p></p>
+<hr>
+<h2>updateViewerInput</h2>
+<p>
+<code>package-private void <strong>updateViewerInput</strong>()</code>
+</p>
+<p></p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.ui.internal.wizards</strong></font>
</p>
@@ -25587,7 +55327,7 @@ extends Wizard</pre>
</td>
</tr>
<tr>
-<td><code><strong>NewXSLFileWizard()</strong></code></td>
+<td><code><strong>NewXSLFileWizard</strong>()</code></td>
</tr>
</table>
<br>
@@ -25619,6 +55359,61 @@ extends Wizard</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>NewXSLFileWizard</h2>
+<p>
+<code>public <strong>NewXSLFileWizard</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>addPages</h2>
+<p>
+<code>public void <strong>addPages</strong>()</code>
+</p>
+<p></p>
+<hr>
+<h2>init</h2>
+<p>
+<code>public void <strong>init</strong>(IWorkbench aWorkbench
+ ,
+ IStructuredSelection aSelection)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>aWorkbench</code>
+</p>
+<p>
+<code>aSelection</code>
+</p>
+<hr>
+<h2>performFinish</h2>
+<p>
+<code>public boolean <strong>performFinish</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.ui.internal.wizards</strong></font>
</p>
@@ -25639,9 +55434,9 @@ extends WizardNewFileCreationPage</pre>
</td>
</tr>
<tr>
-<td><code><strong>NewXSLFileWizardPage(java.lang.String pageName
+<td><code><strong>NewXSLFileWizardPage</strong>(java.lang.String pageName
,
- IStructuredSelection selection)</strong></code></td>
+ IStructuredSelection selection)</code></td>
</tr>
</table>
<br>
@@ -25652,19 +55447,69 @@ extends WizardNewFileCreationPage</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected boolean</code></td><td width="" align="left"><code>validatePage()</code>
+<td width="20%" align="right"><code>package-private java.lang.String</code></td><td width="" align="left"><code>addDefaultExtension(java.lang.String filename)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>package-private java.lang.String</code></td><td width="" align="left"><code>addDefaultExtension(java.lang.String filename)</code>
+<td width="20%" align="right"><code>protected boolean</code></td><td width="" align="left"><code>validatePage()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>NewXSLFileWizardPage</h2>
+<p>
+<code>public <strong>NewXSLFileWizardPage</strong>(java.lang.String pageName
+ ,
+ IStructuredSelection selection)</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>addDefaultExtension</h2>
+<p>
+<code>package-private java.lang.String <strong>addDefaultExtension</strong>(java.lang.String filename)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>filename</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
+<h2>validatePage</h2>
+<p>
+<code>protected boolean <strong>validatePage</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>boolean</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.xalan.debugger</strong></font>
</p>
@@ -25685,7 +55530,7 @@ extends org.eclipse.wst.xsl.debugger.AbstractDebugger</pre>
</td>
</tr>
<tr>
-<td><code><strong>XalanDebugger()</strong></code></td>
+<td><code><strong>XalanDebugger</strong>()</code></td>
</tr>
</table>
<br>
@@ -25696,31 +55541,99 @@ extends org.eclipse.wst.xsl.debugger.AbstractDebugger</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setTransformerFactory(javax.xml.transform.TransformerFactory factory)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>addTransformer(javax.xml.transform.Transformer transformer)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>addTransformer(javax.xml.transform.Transformer transformer)</code>
+<td width="20%" align="right"><code>public org.eclipse.wst.xsl.debugger.Variable</code></td><td width="" align="left"><code>getVariable(int id)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public org.eclipse.wst.xsl.debugger.Variable</code></td><td width="" align="left"><code>getVariable(int id)</code>
+<td width="20%" align="right"><code>package-private void</code></td><td width="" align="left"><code>setCurrentTraceListener(org.eclipse.wst.xsl.xalan.debugger.XalanTraceListener currentTraceListener)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>package-private void</code></td><td width="" align="left"><code>setCurrentTraceListener(org.eclipse.wst.xsl.xalan.debugger.XalanTraceListener currentTraceListener)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>setTransformerFactory(javax.xml.transform.TransformerFactory factory)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>XalanDebugger</h2>
+<p>
+<code>public <strong>XalanDebugger</strong>()</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>addTransformer</h2>
+<p>
+<code>public void <strong>addTransformer</strong>(javax.xml.transform.Transformer transformer)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>transformer</code>
+</p>
+<hr>
+<h2>getVariable</h2>
+<p>
+<code>public org.eclipse.wst.xsl.debugger.Variable <strong>getVariable</strong>(int id)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>id</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.debugger.Variable</code>
+</p>
+<hr>
+<h2>setCurrentTraceListener</h2>
+<p>
+<code>package-private void <strong>setCurrentTraceListener</strong>(org.eclipse.wst.xsl.xalan.debugger.XalanTraceListener currentTraceListener)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>currentTraceListener</code>
+</p>
+<hr>
+<h2>setTransformerFactory</h2>
+<p>
+<code>public void <strong>setTransformerFactory</strong>(javax.xml.transform.TransformerFactory factory)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>factory</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.xalan.debugger</strong></font>
</p>
@@ -25741,7 +55654,7 @@ extends PrintTraceListener</pre>
</td>
</tr>
<tr>
-<td><code><strong>XalanPrintTraceListener(java.io.PrintWriter pw)</strong></code></td>
+<td><code><strong>XalanPrintTraceListener</strong>(java.io.PrintWriter pw)</code></td>
</tr>
</table>
<br>
@@ -25783,6 +55696,88 @@ extends PrintTraceListener</pre>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>XalanPrintTraceListener</h2>
+<p>
+<code>public <strong>XalanPrintTraceListener</strong>(java.io.PrintWriter pw)</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>_trace</h2>
+<p>
+<code>public void <strong>_trace</strong>(TracerEvent ev)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>ev</code>
+</p>
+<hr>
+<h2>selected</h2>
+<p>
+<code>public void <strong>selected</strong>(SelectionEvent ev)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>ev</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>javax.xml.transform.TransformerException</code>
+</p>
+<hr>
+<h2>selectEnd</h2>
+<p>
+<code>public void <strong>selectEnd</strong>(EndSelectionEvent ev)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>ev</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>javax.xml.transform.TransformerException</code>
+</p>
+<hr>
+<h2>trace</h2>
+<p>
+<code>public void <strong>trace</strong>(TracerEvent ev)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>ev</code>
+</p>
+<hr>
+<h2>traceEnd</h2>
+<p>
+<code>public void <strong>traceEnd</strong>(TracerEvent ev)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>ev</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.xalan.debugger</strong></font>
</p>
@@ -25803,7 +55798,7 @@ extends org.eclipse.wst.xsl.xalan.debugger.XalanStyleFrame</pre>
</td>
</tr>
<tr>
-<td><code><strong>XalanRootStyleFrame(TracerEvent event)</strong></code></td>
+<td><code><strong>XalanRootStyleFrame</strong>(TracerEvent event)</code></td>
</tr>
</table>
<br>
@@ -25814,25 +55809,83 @@ extends org.eclipse.wst.xsl.xalan.debugger.XalanStyleFrame</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected java.util.List</code></td><td width="" align="left"><code>getGlobals()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>addVariable(org.eclipse.wst.xsl.xalan.debugger.XalanVariable xvar)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public org.eclipse.wst.xsl.debugger.Variable</code></td><td width="" align="left"><code>getVariable(int id)</code>
+<td width="20%" align="right"><code>protected java.util.List</code></td><td width="" align="left"><code>getGlobals()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>addVariable(org.eclipse.wst.xsl.xalan.debugger.XalanVariable xvar)</code>
+<td width="20%" align="right"><code>public org.eclipse.wst.xsl.debugger.Variable</code></td><td width="" align="left"><code>getVariable(int id)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>XalanRootStyleFrame</h2>
+<p>
+<code>public <strong>XalanRootStyleFrame</strong>(TracerEvent event)</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>addVariable</h2>
+<p>
+<code>public void <strong>addVariable</strong>(org.eclipse.wst.xsl.xalan.debugger.XalanVariable xvar)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>xvar</code>
+</p>
+<hr>
+<h2>getGlobals</h2>
+<p>
+<code>protected java.util.List <strong>getGlobals</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.util.List</code>
+</p>
+<hr>
+<h2>getVariable</h2>
+<p>
+<code>public org.eclipse.wst.xsl.debugger.Variable <strong>getVariable</strong>(int id)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>id</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.debugger.Variable</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.xalan.debugger</strong></font>
</p>
@@ -25867,9 +55920,9 @@ extends org.eclipse.wst.xsl.debugger.StyleFrame</pre>
</td>
</tr>
<tr>
-<td><code><strong>XalanStyleFrame(org.eclipse.wst.xsl.debugger.StyleFrame parent
+<td><code><strong>XalanStyleFrame</strong>(org.eclipse.wst.xsl.debugger.StyleFrame parent
,
- TracerEvent event)</strong></code></td>
+ TracerEvent event)</code></td>
</tr>
</table>
<br>
@@ -25880,67 +55933,207 @@ extends org.eclipse.wst.xsl.debugger.StyleFrame</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getFilename()</code>
+<td width="20%" align="right"><code>public int</code></td><td width="" align="left"><code>getCurrentLine()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getName()</code>
+<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getFilename()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.util.List</code></td><td width="" align="left"><code>getVariableStack()</code>
+<td width="20%" align="right"><code>protected java.util.List</code></td><td width="" align="left"><code>getGlobals()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public int</code></td><td width="" align="left"><code>getCurrentLine()</code>
+<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getName()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>pushElement(TracerEvent e)</code>
+<td width="20%" align="right"><code>public int</code></td><td width="" align="left"><code>getSourceCurrentLine()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public TracerEvent</code></td><td width="" align="left"><code>popElement()</code>
+<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getSourceFilename()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public TracerEvent</code></td><td width="" align="left"><code>peekElement()</code>
+<td width="20%" align="right"><code>public java.util.List</code></td><td width="" align="left"><code>getVariableStack()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>protected java.util.List</code></td><td width="" align="left"><code>getGlobals()</code>
+<td width="20%" align="right"><code>public TracerEvent</code></td><td width="" align="left"><code>peekElement()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getSourceFilename()</code>
+<td width="20%" align="right"><code>public TracerEvent</code></td><td width="" align="left"><code>popElement()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public int</code></td><td width="" align="left"><code>getSourceCurrentLine()</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>pushElement(TracerEvent e)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Field Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>event</h2>
+<p>
+<code>package-private TracerEvent <strong>event</strong></code>
+</p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>XalanStyleFrame</h2>
+<p>
+<code>public <strong>XalanStyleFrame</strong>(org.eclipse.wst.xsl.debugger.StyleFrame parent
+ ,
+ TracerEvent event)</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>getCurrentLine</h2>
+<p>
+<code>public int <strong>getCurrentLine</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>int</code>
+</p>
+<hr>
+<h2>getFilename</h2>
+<p>
+<code>public java.lang.String <strong>getFilename</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
+<h2>getGlobals</h2>
+<p>
+<code>protected java.util.List <strong>getGlobals</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.util.List</code>
+</p>
+<hr>
+<h2>getName</h2>
+<p>
+<code>public java.lang.String <strong>getName</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
+<h2>getSourceCurrentLine</h2>
+<p>
+<code>public int <strong>getSourceCurrentLine</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>int</code>
+</p>
+<hr>
+<h2>getSourceFilename</h2>
+<p>
+<code>public java.lang.String <strong>getSourceFilename</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
+<h2>getVariableStack</h2>
+<p>
+<code>public java.util.List <strong>getVariableStack</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.util.List</code>
+</p>
+<hr>
+<h2>peekElement</h2>
+<p>
+<code>public TracerEvent <strong>peekElement</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>TracerEvent</code>
+</p>
+<hr>
+<h2>popElement</h2>
+<p>
+<code>public TracerEvent <strong>popElement</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>TracerEvent</code>
+</p>
+<hr>
+<h2>pushElement</h2>
+<p>
+<code>public void <strong>pushElement</strong>(TracerEvent e)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>e</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.xalan.debugger</strong></font>
</p>
@@ -25961,7 +56154,7 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr>
-<td><code><strong>XalanTraceListener(org.eclipse.wst.xsl.xalan.debugger.XalanDebugger debugger)</strong></code></td>
+<td><code><strong>XalanTraceListener</strong>(org.eclipse.wst.xsl.xalan.debugger.XalanDebugger debugger)</code></td>
</tr>
</table>
<br>
@@ -25972,55 +56165,171 @@ extends java.lang.Object</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>trace(TracerEvent ev)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>extension(ExtensionEvent ee)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>traceEnd(TracerEvent ev)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>extensionEnd(ExtensionEvent ee)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>selected(SelectionEvent ev)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>generated(GenerateEvent ev)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>selectEnd(EndSelectionEvent ev)</code>
+<td width="20%" align="right"><code>public org.eclipse.wst.xsl.debugger.Variable</code></td><td width="" align="left"><code>getVariable(int id)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>generated(GenerateEvent ev)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>selected(SelectionEvent ev)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>extension(ExtensionEvent ee)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>selectEnd(EndSelectionEvent ev)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>extensionEnd(ExtensionEvent ee)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>trace(TracerEvent ev)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public org.eclipse.wst.xsl.debugger.Variable</code></td><td width="" align="left"><code>getVariable(int id)</code>
+<td width="20%" align="right"><code>public void</code></td><td width="" align="left"><code>traceEnd(TracerEvent ev)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>XalanTraceListener</h2>
+<p>
+<code>public <strong>XalanTraceListener</strong>(org.eclipse.wst.xsl.xalan.debugger.XalanDebugger debugger)</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>extension</h2>
+<p>
+<code>public void <strong>extension</strong>(ExtensionEvent ee)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>ee</code>
+</p>
+<hr>
+<h2>extensionEnd</h2>
+<p>
+<code>public void <strong>extensionEnd</strong>(ExtensionEvent ee)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>ee</code>
+</p>
+<hr>
+<h2>generated</h2>
+<p>
+<code>public void <strong>generated</strong>(GenerateEvent ev)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>ev</code>
+</p>
+<hr>
+<h2>getVariable</h2>
+<p>
+<code>public org.eclipse.wst.xsl.debugger.Variable <strong>getVariable</strong>(int id)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>id</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>org.eclipse.wst.xsl.debugger.Variable</code>
+</p>
+<hr>
+<h2>selected</h2>
+<p>
+<code>public void <strong>selected</strong>(SelectionEvent ev)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>ev</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>javax.xml.transform.TransformerException</code>
+</p>
+<hr>
+<h2>selectEnd</h2>
+<p>
+<code>public void <strong>selectEnd</strong>(EndSelectionEvent ev)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>ev</code>
+</p>
+<h3>Throws:</h3>
+<p>
+<code>javax.xml.transform.TransformerException</code>
+</p>
+<hr>
+<h2>trace</h2>
+<p>
+<code>public void <strong>trace</strong>(TracerEvent ev)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>ev</code>
+</p>
+<hr>
+<h2>traceEnd</h2>
+<p>
+<code>public void <strong>traceEnd</strong>(TracerEvent ev)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>ev</code>
+</p>
+<hr>
<p>
<font size="+1"><strong>Package org.eclipse.wst.xsl.xalan.debugger</strong></font>
</p>
@@ -26041,7 +56350,7 @@ extends org.eclipse.wst.xsl.debugger.Variable</pre>
</td>
</tr>
<tr>
-<td><code><strong>XalanVariable(org.eclipse.wst.xsl.xalan.debugger.XalanStyleFrame xalanStyleFrame
+<td><code><strong>XalanVariable</strong>(org.eclipse.wst.xsl.xalan.debugger.XalanStyleFrame xalanStyleFrame
,
VariableStack varStack
,
@@ -26049,7 +56358,7 @@ extends org.eclipse.wst.xsl.debugger.Variable</pre>
,
int slotNumber
,
- ElemVariable elemVariable)</strong></code></td>
+ ElemVariable elemVariable)</code></td>
</tr>
</table>
<br>
@@ -26060,24 +56369,90 @@ extends org.eclipse.wst.xsl.debugger.Variable</pre>
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getType()</code>
+<td width="20%" align="right"><code>public int</code></td><td width="" align="left"><code>compareTo(java.lang.Object arg0)</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getValue()</code>
+<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getType()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr valign="top">
-<td width="20%" align="right"><code>public int</code></td><td width="" align="left"><code>compareTo(java.lang.Object arg0)</code>
+<td width="20%" align="right"><code>public java.lang.String</code></td><td width="" align="left"><code>getValue()</code>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
</table>
<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Constructor Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>XalanVariable</h2>
+<p>
+<code>public <strong>XalanVariable</strong>(org.eclipse.wst.xsl.xalan.debugger.XalanStyleFrame xalanStyleFrame
+ ,
+ VariableStack varStack
+ ,
+ java.lang.String scope
+ ,
+ int slotNumber
+ ,
+ ElemVariable elemVariable)</code>
+</p>
+<p></p>
+<hr>
+<table cols="2" width="100%" border="1">
+<tr colspan="2" width="100%" bgcolor="#CCCCFF" align="left">
+<td>
+<h2>
+ Methods Detail
+ </h2>
+</td>
+</tr>
+</table>
+<h2>compareTo</h2>
+<p>
+<code>public int <strong>compareTo</strong>(java.lang.Object arg0)</code>
+</p>
+<p></p>
+<h3>Parameters</h3>
+<p>
+<code>arg0</code>
+</p>
+<h3>Returns</h3>
+<p>
+<code>int</code>
+</p>
+<hr>
+<h2>getType</h2>
+<p>
+<code>public java.lang.String <strong>getType</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
+<h2>getValue</h2>
+<p>
+<code>public java.lang.String <strong>getValue</strong>()</code>
+</p>
+<p></p>
+<h3>Returns</h3>
+<p>
+<code>java.lang.String</code>
+</p>
+<hr>
</body>
</html>

Back to the top