diff options
Diffstat (limited to 'plugins')
19 files changed, 49 insertions, 56 deletions
diff --git a/plugins/org.eclipse.jet.core/src/org/eclipse/jet/core/compiler/JETCompilerOptions.java b/plugins/org.eclipse.jet.core/src/org/eclipse/jet/core/compiler/JETCompilerOptions.java index 8dcb125..3e08378 100644 --- a/plugins/org.eclipse.jet.core/src/org/eclipse/jet/core/compiler/JETCompilerOptions.java +++ b/plugins/org.eclipse.jet.core/src/org/eclipse/jet/core/compiler/JETCompilerOptions.java @@ -12,7 +12,7 @@ * * </copyright> * - * $Id: JETCompilerOptions.java,v 1.1 2007/04/04 14:53:53 pelder Exp $ + * $Id: JETCompilerOptions.java,v 1.2 2007/04/04 17:27:56 pelder Exp $ */ package org.eclipse.jet.core.compiler; @@ -111,7 +111,7 @@ public final class JETCompilerOptions { + "v1CompileBaseTemplates"; //$NON-NLS-1$ /** - * Default value for {@link #OPTION_V1_COMPILE_BASE_TEMPLATES}; value {@value #DEFAULT_V1_COMPILE_BASE_TEMPLATES}. + * Default value for {@link #OPTION_V1_COMPILE_BASE_TEMPLATES}; value: {@link Boolean#FALSE}. */ public static final Boolean DEFAULT_V1_COMPILE_BASE_TEMPLATES = Boolean.FALSE; diff --git a/plugins/org.eclipse.jet.core/src/org/eclipse/jet/core/parser/IProblem.java b/plugins/org.eclipse.jet.core/src/org/eclipse/jet/core/parser/IProblem.java index fe99132..0aeda7e 100644 --- a/plugins/org.eclipse.jet.core/src/org/eclipse/jet/core/parser/IProblem.java +++ b/plugins/org.eclipse.jet.core/src/org/eclipse/jet/core/parser/IProblem.java @@ -18,31 +18,26 @@ package org.eclipse.jet.core.parser; public interface IProblem { /** * Error Id for an XML end tag that has no corresponding start tag. - * @see #getId() */ public static final int MissingXmlStartTag = 1; /** * Error Id for an XML start tag that has no corresponding end tag. - * @see #getId() */ public static final int MissingXmlEndTag = 2; /** * Error Id for an XML tag or JET directive that is missing a required attribute - * @see #getId() */ public static final int MissingRequiredAttribute = 3; /** * Error Id for taglib directive that defines a prefix defined by a preceding taglib directive - * @see #getId() */ public static final int DuplicateXMLNamespacePrefix = 4; /** * Error Id for taglib directive that defines references an unknown tag library id - * @see #getId() */ public static final int UnknownTagLibrary = 5; @@ -109,27 +104,27 @@ public interface IProblem { public static final int TagInterpretedAsEmptyTag = 17; /** - * An &at;include directive could not resolve a referenced file. + * An %@include directive could not resolve a referenced file. */ public static final int MissingFile = 18; /** - * A <%&at; start %> directive was found other than after a <%&at; include fail="alternative" %> directive. + * A <%%@ start %> directive was found other than after a <%%@ include fail="alternative" %> directive. */ public static final int StartDirectiveOutOfContext = 19; /** - * A <%&at; end %> directive was found other than after a <%&at; include fail="alternative" %> and <%&at; start %> directive. + * A <%%@ end %> directive was found other than after a <%%@ include fail="alternative" %> and <%%@ start %> directive. */ public static final int EndDirectiveOutOfContext = 20; /** - * An <%&at; include fail="alternative" %> directive has a <%&at; start %> directive, but no <%&at; end %> directive. + * An <%%@ include fail="alternative" %> directive has a <%%@ start %> directive, but no <%%@ end %> directive. */ public static final int MissingEndDirective = 21; /** - * An <%&at; include fail="alternative" %> directive has not <%&at; start %> and <%&at; end %> directives. + * An <%%@ include fail="alternative" %> directive has not <%%@ start %> and <%%@ end %> directives. */ public static final int MissingIncludeAlternative = 22; diff --git a/plugins/org.eclipse.jet.core/src/org/eclipse/jet/core/parser/ast/Comment.java b/plugins/org.eclipse.jet.core/src/org/eclipse/jet/core/parser/ast/Comment.java index 24dc3d5..370eb4d 100644 --- a/plugins/org.eclipse.jet.core/src/org/eclipse/jet/core/parser/ast/Comment.java +++ b/plugins/org.eclipse.jet.core/src/org/eclipse/jet/core/parser/ast/Comment.java @@ -12,7 +12,7 @@ * * </copyright> * - * $Id: Comment.java,v 1.1 2007/04/04 14:53:54 pelder Exp $ + * $Id: Comment.java,v 1.2 2007/04/04 17:27:56 pelder Exp $ */ package org.eclipse.jet.core.parser.ast; @@ -48,7 +48,7 @@ public final class Comment extends BodyElement { } /** - * @see org.eclipse.jet.compiler.JETASTElement#accept0(JETASTVisitor) + * @see org.eclipse.jet.core.parser.ast.JETASTElement#accept0(JETASTVisitor) */ protected final void accept0(JETASTVisitor visitor) { visitor.visit(this); diff --git a/plugins/org.eclipse.jet.core/src/org/eclipse/jet/core/parser/ast/JETAST.java b/plugins/org.eclipse.jet.core/src/org/eclipse/jet/core/parser/ast/JETAST.java index 2c038c7..a586ae3 100644 --- a/plugins/org.eclipse.jet.core/src/org/eclipse/jet/core/parser/ast/JETAST.java +++ b/plugins/org.eclipse.jet.core/src/org/eclipse/jet/core/parser/ast/JETAST.java @@ -12,7 +12,7 @@ * * </copyright> * - * $Id: JETAST.java,v 1.1 2007/04/04 14:53:54 pelder Exp $ + * $Id: JETAST.java,v 1.2 2007/04/04 17:27:56 pelder Exp $ */ package org.eclipse.jet.core.parser.ast; @@ -215,13 +215,12 @@ public final class JETAST { /** * Create a new XML end element corresponding to the end of a XMLBodyElement. - * @param line - * @param col - * @param start - * @param end - * @param tagName - * @param startTag - * @return + * @param line the start line of the element + * @param colOffset the offset within the line of the element's start. + * @param start the start offset of the element (doc relative) + * @param end the end offset of the element (doc relative) + * @param tagName the fully qualified tag name + * @return the new XML BodyElementEnd */ public XMLBodyElementEnd newXMLBodyElementEnd(int line, int col, int start, int end, String tagName) { diff --git a/plugins/org.eclipse.jet.core/src/org/eclipse/jet/core/parser/ast/JETCompilationUnit.java b/plugins/org.eclipse.jet.core/src/org/eclipse/jet/core/parser/ast/JETCompilationUnit.java index 73fead1..f5140db 100644 --- a/plugins/org.eclipse.jet.core/src/org/eclipse/jet/core/parser/ast/JETCompilationUnit.java +++ b/plugins/org.eclipse.jet.core/src/org/eclipse/jet/core/parser/ast/JETCompilationUnit.java @@ -12,7 +12,7 @@ * * </copyright> * - * $Id: JETCompilationUnit.java,v 1.1 2007/04/04 14:53:53 pelder Exp $ + * $Id: JETCompilationUnit.java,v 1.2 2007/04/04 17:27:56 pelder Exp $ */ package org.eclipse.jet.core.parser.ast; @@ -119,7 +119,7 @@ public final class JETCompilationUnit extends JETASTElement { } /** - * @see org.eclipse.jet.compiler.JETASTElement#accept0(JETASTVisitor) + * @see org.eclipse.jet.core.parser.ast.JETASsTElement#accept0(JETASTVisitor) */ protected final void accept0(JETASTVisitor visitor) { final boolean visitChildren = visitor.visit(this); diff --git a/plugins/org.eclipse.jet.core/src/org/eclipse/jet/core/parser/ast/JETDirective.java b/plugins/org.eclipse.jet.core/src/org/eclipse/jet/core/parser/ast/JETDirective.java index cb8761f..caf7175 100644 --- a/plugins/org.eclipse.jet.core/src/org/eclipse/jet/core/parser/ast/JETDirective.java +++ b/plugins/org.eclipse.jet.core/src/org/eclipse/jet/core/parser/ast/JETDirective.java @@ -12,7 +12,7 @@ * * </copyright> * - * $Id: JETDirective.java,v 1.1 2007/04/04 14:53:54 pelder Exp $ + * $Id: JETDirective.java,v 1.2 2007/04/04 17:27:55 pelder Exp $ */ package org.eclipse.jet.core.parser.ast; @@ -76,7 +76,7 @@ public final class JETDirective extends BodyElement { } /** - * @see org.eclipse.jet.compiler.JETASTElement#accept0(JETASTVisitor) + * @see org.eclipse.jet.core.parser.ast.JETASTElement#accept0(JETASTVisitor) */ protected void accept0(JETASTVisitor visitor) { visitor.visit(this); diff --git a/plugins/org.eclipse.jet.core/src/org/eclipse/jet/core/parser/ast/JavaDeclaration.java b/plugins/org.eclipse.jet.core/src/org/eclipse/jet/core/parser/ast/JavaDeclaration.java index 1a70a0d..f2f106e 100644 --- a/plugins/org.eclipse.jet.core/src/org/eclipse/jet/core/parser/ast/JavaDeclaration.java +++ b/plugins/org.eclipse.jet.core/src/org/eclipse/jet/core/parser/ast/JavaDeclaration.java @@ -12,7 +12,7 @@ * * </copyright> * - * $Id: JavaDeclaration.java,v 1.1 2007/04/04 14:53:54 pelder Exp $ + * $Id: JavaDeclaration.java,v 1.2 2007/04/04 17:27:56 pelder Exp $ */ package org.eclipse.jet.core.parser.ast; @@ -40,7 +40,7 @@ public final class JavaDeclaration extends JavaElement { } /** - * @see org.eclipse.jet.compiler.JETASTElement#accept0(JETASTVisitor) + * @see org.eclipse.jet.core.parser.ast.JETASTElement#accept0(JETASTVisitor) */ protected final void accept0(JETASTVisitor visitor) { visitor.visit(this); diff --git a/plugins/org.eclipse.jet.core/src/org/eclipse/jet/core/parser/ast/JavaExpression.java b/plugins/org.eclipse.jet.core/src/org/eclipse/jet/core/parser/ast/JavaExpression.java index 40e4085..aebde9c 100644 --- a/plugins/org.eclipse.jet.core/src/org/eclipse/jet/core/parser/ast/JavaExpression.java +++ b/plugins/org.eclipse.jet.core/src/org/eclipse/jet/core/parser/ast/JavaExpression.java @@ -12,7 +12,7 @@ * * </copyright> * - * $Id: JavaExpression.java,v 1.1 2007/04/04 14:53:53 pelder Exp $ + * $Id: JavaExpression.java,v 1.2 2007/04/04 17:27:55 pelder Exp $ */ package org.eclipse.jet.core.parser.ast; @@ -41,7 +41,7 @@ public final class JavaExpression extends JavaElement { } /** - * @see org.eclipse.jet.compiler.JETASTElement#accept0(JETASTVisitor) + * @see org.eclipse.jet.core.parser.ast.JETASTElement#accept0(JETASTVisitor) */ protected void accept0(JETASTVisitor visitor) { visitor.visit(this); diff --git a/plugins/org.eclipse.jet.core/src/org/eclipse/jet/core/parser/ast/JavaScriptlet.java b/plugins/org.eclipse.jet.core/src/org/eclipse/jet/core/parser/ast/JavaScriptlet.java index 07bb580..a84b1b4 100644 --- a/plugins/org.eclipse.jet.core/src/org/eclipse/jet/core/parser/ast/JavaScriptlet.java +++ b/plugins/org.eclipse.jet.core/src/org/eclipse/jet/core/parser/ast/JavaScriptlet.java @@ -12,7 +12,7 @@ * * </copyright> * - * $Id: JavaScriptlet.java,v 1.1 2007/04/04 14:53:53 pelder Exp $ + * $Id: JavaScriptlet.java,v 1.2 2007/04/04 17:27:55 pelder Exp $ */ package org.eclipse.jet.core.parser.ast; @@ -49,7 +49,7 @@ public final class JavaScriptlet extends JavaElement { } /** - * @see org.eclipse.jet.compiler.JETASTElement#accept0(JETASTVisitor) + * @see org.eclipse.jet.core.parser.ast.JETASTElement#accept0(JETASTVisitor) */ protected void accept0(JETASTVisitor visitor) { visitor.visit(this); diff --git a/plugins/org.eclipse.jet.core/src/org/eclipse/jet/core/parser/ast/Problem.java b/plugins/org.eclipse.jet.core/src/org/eclipse/jet/core/parser/ast/Problem.java index 10a9f96..bcd90d4 100644 --- a/plugins/org.eclipse.jet.core/src/org/eclipse/jet/core/parser/ast/Problem.java +++ b/plugins/org.eclipse.jet.core/src/org/eclipse/jet/core/parser/ast/Problem.java @@ -12,7 +12,7 @@ * * </copyright> * - * $Id: Problem.java,v 1.1 2007/04/04 14:53:53 pelder Exp $ + * $Id: Problem.java,v 1.2 2007/04/04 17:27:56 pelder Exp $ */ package org.eclipse.jet.core.parser.ast; @@ -163,14 +163,14 @@ public final class Problem { * Create an new instance * @param baseLocation the base location from which the template path is resolved. * @param templatePath the file name from which the problem originates - * @param problemSeverity the problemSeverity + * @param severity the problem severity * @param id the problem id. See static constants declared on this class * @param message the error message in {@link MessageFormat} style * @param messageArgs the error message arguments * @param start the start offset of the problem (doc relative) * @param end the end offset of the problem (doc relative) * @param lineNumber the start line of the problem - * @param colOffset TODO + * @param colOffset the column position (one based) of the problem start */ public Problem(URI baseLocation, String templatePath, ProblemSeverity severity, int id, String message, diff --git a/plugins/org.eclipse.jet.core/src/org/eclipse/jet/core/parser/ast/TextElement.java b/plugins/org.eclipse.jet.core/src/org/eclipse/jet/core/parser/ast/TextElement.java index 04f1215..b9566fb 100644 --- a/plugins/org.eclipse.jet.core/src/org/eclipse/jet/core/parser/ast/TextElement.java +++ b/plugins/org.eclipse.jet.core/src/org/eclipse/jet/core/parser/ast/TextElement.java @@ -12,7 +12,7 @@ * * </copyright> * - * $Id: TextElement.java,v 1.1 2007/04/04 14:53:53 pelder Exp $ + * $Id: TextElement.java,v 1.2 2007/04/04 17:27:55 pelder Exp $ */ package org.eclipse.jet.core.parser.ast; @@ -67,7 +67,7 @@ public final class TextElement extends BodyElement { } /** - * @see org.eclipse.jet.compiler.JETASTElement#accept0(JETASTVisitor) + * @see org.eclipse.jet.core.parser.ast.JETASTElement#accept0(JETASTVisitor) */ protected void accept0(JETASTVisitor visitor) { visitor.visit(this); diff --git a/plugins/org.eclipse.jet.core/src/org/eclipse/jet/core/parser/ast/XMLBodyElement.java b/plugins/org.eclipse.jet.core/src/org/eclipse/jet/core/parser/ast/XMLBodyElement.java index f2d8081..5d888a0 100644 --- a/plugins/org.eclipse.jet.core/src/org/eclipse/jet/core/parser/ast/XMLBodyElement.java +++ b/plugins/org.eclipse.jet.core/src/org/eclipse/jet/core/parser/ast/XMLBodyElement.java @@ -12,7 +12,7 @@ * * </copyright> * - * $Id: XMLBodyElement.java,v 1.1 2007/04/04 14:53:54 pelder Exp $ + * $Id: XMLBodyElement.java,v 1.2 2007/04/04 17:27:56 pelder Exp $ */ package org.eclipse.jet.core.parser.ast; @@ -89,7 +89,7 @@ public final class XMLBodyElement extends XMLElement { } /** - * @see org.eclipse.jet.compiler.JETASTElement#accept0(JETASTVisitor) + * @see org.eclipse.jet.core.parser.ast.JETASTElement#accept0(JETASTVisitor) */ protected final void accept0(JETASTVisitor visitor) { final boolean visitChildren = visitor.visit(this); diff --git a/plugins/org.eclipse.jet.core/src/org/eclipse/jet/core/parser/ast/XMLEmptyElement.java b/plugins/org.eclipse.jet.core/src/org/eclipse/jet/core/parser/ast/XMLEmptyElement.java index d53220c..b0a3487 100644 --- a/plugins/org.eclipse.jet.core/src/org/eclipse/jet/core/parser/ast/XMLEmptyElement.java +++ b/plugins/org.eclipse.jet.core/src/org/eclipse/jet/core/parser/ast/XMLEmptyElement.java @@ -12,7 +12,7 @@ * * </copyright> * - * $Id: XMLEmptyElement.java,v 1.1 2007/04/04 14:53:54 pelder Exp $ + * $Id: XMLEmptyElement.java,v 1.2 2007/04/04 17:27:56 pelder Exp $ */ package org.eclipse.jet.core.parser.ast; @@ -45,7 +45,7 @@ public final class XMLEmptyElement extends XMLElement { } /** - * @see org.eclipse.jet.compiler.JETASTElement#accept0(JETASTVisitor) + * @see org.eclipse.jet.core.parser.ast.JETASTElement#accept0(JETASTVisitor) */ protected void accept0(JETASTVisitor visitor) { visitor.visit(this); diff --git a/plugins/org.eclipse.jet.core/src/org/eclipse/jet/internal/core/parser/IncludeAlternativesTracker.java b/plugins/org.eclipse.jet.core/src/org/eclipse/jet/internal/core/parser/IncludeAlternativesTracker.java index afa448b..888e34a 100644 --- a/plugins/org.eclipse.jet.core/src/org/eclipse/jet/internal/core/parser/IncludeAlternativesTracker.java +++ b/plugins/org.eclipse.jet.core/src/org/eclipse/jet/internal/core/parser/IncludeAlternativesTracker.java @@ -12,14 +12,14 @@ * * </copyright> * - * $Id: IncludeAlternativesTracker.java,v 1.1 2007/04/04 14:53:53 pelder Exp $ + * $Id: IncludeAlternativesTracker.java,v 1.2 2007/04/04 17:27:56 pelder Exp $ */ package org.eclipse.jet.internal.core.parser; import java.util.Stack; /** - * Track processing and nesting of &at;include's with &at;start and &at;end directives for the JET compiler. + * Track processing and nesting of @include's with @start and @end directives for the JET compiler. */ public class IncludeAlternativesTracker { private final Stack stack = new Stack(); @@ -120,9 +120,9 @@ public class IncludeAlternativesTracker { } /** - * Start tracking an <code><%&at;include fail="alternative" ... %></code> directive + * Start tracking an <code><%@include fail="alternative" ... %></code> directive * @param directive the include directive - * @param processAlternative true if the content between &at;start and &at;end directives should be processed by the compiler. + * @param processAlternative true if the content between @start and @end directives should be processed by the compiler. */ public void addIncludeWithAlternative(Object directive, boolean processAlternative) { @@ -131,7 +131,7 @@ public class IncludeAlternativesTracker { } /** - * Mark the beginning of an include alternative, a <code><%&at;start%></code> directive. + * Mark the beginning of an include alternative, a <code><%@start%></code> directive. * @param directive the Start directive * @throws IllegalStateException if there is no preceeding <code>at;include fail="alternative"</code> directive. */ @@ -145,7 +145,7 @@ public class IncludeAlternativesTracker { } /** - * Mark the end of an include alternative, a <code><%&at;end%></code> directive. + * Mark the end of an include alternative, a <code><%@end%></code> directive. * @param directive * @throws IllegalStateException */ diff --git a/plugins/org.eclipse.jet/src/org/eclipse/jet/compiler/JET2CompilationUnit.java b/plugins/org.eclipse.jet/src/org/eclipse/jet/compiler/JET2CompilationUnit.java index 62d8469..2ea7a57 100644 --- a/plugins/org.eclipse.jet/src/org/eclipse/jet/compiler/JET2CompilationUnit.java +++ b/plugins/org.eclipse.jet/src/org/eclipse/jet/compiler/JET2CompilationUnit.java @@ -74,7 +74,6 @@ public final class JET2CompilationUnit extends JET2ASTElement private final String encoding; /** - * @deprecated Use {@link JETAST#newJETCompilationUnit()} instead. * */ public JET2CompilationUnit() @@ -91,7 +90,6 @@ public final class JET2CompilationUnit extends JET2ASTElement /** * @param file - * @deprecated Use {@link JETAST#newJETCompilationUnit(URI, String)} instead. */ public JET2CompilationUnit(IFile file) { diff --git a/plugins/org.eclipse.jet/src/org/eclipse/jet/compiler/Problem.java b/plugins/org.eclipse.jet/src/org/eclipse/jet/compiler/Problem.java index 53f8cf4..2fb5bdb 100644 --- a/plugins/org.eclipse.jet/src/org/eclipse/jet/compiler/Problem.java +++ b/plugins/org.eclipse.jet/src/org/eclipse/jet/compiler/Problem.java @@ -187,7 +187,7 @@ public final class Problem * Create an new instance * @param baseLocation the base location from which the template path is resolved. * @param templatePath the file name from which the problem originates - * @param problemSeverity the problemSeverity + * @param severity the problemSeverity * @param id the problem id. See static constants declared on this class * @param message the error message in {@link java.text.MessageFormat} style * @param messageArgs the error message arguments diff --git a/plugins/org.eclipse.jet/src/org/eclipse/jet/compiler/XMLBodyElement.java b/plugins/org.eclipse.jet/src/org/eclipse/jet/compiler/XMLBodyElement.java index a89d73c..6e1cceb 100644 --- a/plugins/org.eclipse.jet/src/org/eclipse/jet/compiler/XMLBodyElement.java +++ b/plugins/org.eclipse.jet/src/org/eclipse/jet/compiler/XMLBodyElement.java @@ -44,7 +44,7 @@ public final class XMLBodyElement extends XMLElement /** * Return a read-only list of JET2 elements contained by this element. - * @return a List of {@link JETASTElement} instances. The empty list is returned if there are no elements. + * @return a List of {@link JET2ASTElement} instances. The empty list is returned if there are no elements. */ public final List getBodyElements() { diff --git a/plugins/org.eclipse.jet/src/org/eclipse/jet/taglib/workspace/ActionsUtil.java b/plugins/org.eclipse.jet/src/org/eclipse/jet/taglib/workspace/ActionsUtil.java index 4a41a1d..3cdabd1 100644 --- a/plugins/org.eclipse.jet/src/org/eclipse/jet/taglib/workspace/ActionsUtil.java +++ b/plugins/org.eclipse.jet/src/org/eclipse/jet/taglib/workspace/ActionsUtil.java @@ -83,8 +83,9 @@ public final class ActionsUtil * Write the file with the specified options from a JET writer. * <p> * This method delegates to {@link #writeTextFile(IFile, boolean, String, boolean, String, IProgressMonitor) writeTextFile} - * after finalizing the writer's content via {@link JET2Writer#finalizeContent(Object)}. - * If the content is written, then the writer is informed of this after the write via {@link JET2Writer#contentCommitted(Object)}. + * after finalizing the writer's content and notifying writer listeners via {@link IWriterListener#finalizeContent(JET2Writer, Object)}. + * If the content is written, then the writer listeners are informed of this after the write via + * {@link IWriterListener#postCommitContent(JET2Writer, Object)}. * </p> * @param file the file to write * @param replace <code>true</code> if existing verions of the file should be overwritten. @@ -95,8 +96,8 @@ public final class ActionsUtil * @return <code>true</code> if the file was written, <code>false</code> if <code>replace</code> is <code>true</code> * and the file already exists.. * @throws JET2TagException if the file cannot be created or written, or the encoding is invalid. - * @see JET2Writer#finalizeContent(Object) - * @see JET2Writer#contentCommitted(Object) + * @see IWriterListener#finalizeContent(JET2Writer, Object) + * @see IWriterListener#postCommitContent(JET2Writer, Object) */ public static boolean writeTextFileFromWriter( IFile file, diff --git a/plugins/org.eclipse.jet/src/org/eclipse/jet/xpath/XPathExpression.java b/plugins/org.eclipse.jet/src/org/eclipse/jet/xpath/XPathExpression.java index 68cc1cb..ce70903 100644 --- a/plugins/org.eclipse.jet/src/org/eclipse/jet/xpath/XPathExpression.java +++ b/plugins/org.eclipse.jet/src/org/eclipse/jet/xpath/XPathExpression.java @@ -30,7 +30,7 @@ public interface XPathExpression * @param contextObject the context object for the expression * @return the expression result. * @throws XPathRuntimeException if an evaluation error occures - * @see link XPathUtil#xpathString(Object) + * @see XPathUtil#xpathString(Object) */ String evaluateAsString(Object contextObject) throws XPathRuntimeException; |