diff --git a/src/org/apache/xalan/extensions/MethodResolver.java b/src/org/apache/xalan/extensions/MethodResolver.java index 72844f0e9..921b9a484 100644 --- a/src/org/apache/xalan/extensions/MethodResolver.java +++ b/src/org/apache/xalan/extensions/MethodResolver.java @@ -539,7 +539,7 @@ static class ConversionInfo * given set of Java parameters. * If any invocations of this function for a method with * the same name return the same positive value, then a conflict - * has occured, and an error should be signaled. + * has occurred, and an error should be signaled. * @param javaParamTypes Must be filled with valid class names, and * of the same length as xsltArgs. * @param xsltArgs Must be filled with valid object instances, and diff --git a/src/org/apache/xalan/lib/sql/SQLDocument.java b/src/org/apache/xalan/lib/sql/SQLDocument.java index d88747907..16c5d7eef 100644 --- a/src/org/apache/xalan/lib/sql/SQLDocument.java +++ b/src/org/apache/xalan/lib/sql/SQLDocument.java @@ -281,7 +281,7 @@ public class SQLDocument extends DTMDocument private boolean m_MultipleResults = false; /** - * Flag to detect if an error occured during an operation + * Flag to detect if an error occurred during an operation * Defines how errors are handled and how the SQL Connection * is closed. */ diff --git a/src/org/apache/xalan/processor/ProcessorCharacters.java b/src/org/apache/xalan/processor/ProcessorCharacters.java index 9bfb8e26f..286313c3b 100644 --- a/src/org/apache/xalan/processor/ProcessorCharacters.java +++ b/src/org/apache/xalan/processor/ProcessorCharacters.java @@ -155,7 +155,7 @@ public void endElement( /** * Accumulate characters, until a non-whitespace event has - * occured. + * occurred. */ private StringBuffer m_accumulator = new StringBuffer(); diff --git a/src/org/apache/xalan/serialize/Serializer.java b/src/org/apache/xalan/serialize/Serializer.java index 5986eb29e..85a92ec34 100644 --- a/src/org/apache/xalan/serialize/Serializer.java +++ b/src/org/apache/xalan/serialize/Serializer.java @@ -110,7 +110,7 @@ public interface Serializer * * @return A {@link ContentHandler} interface into this serializer, * or null if the serializer is not SAX 2 capable - * @throws IOException An I/O exception occured + * @throws IOException An I/O exception occurred * @deprecated Use org.apache.xml.serializer.Serializer */ public ContentHandler asContentHandler() throws IOException; @@ -122,7 +122,7 @@ public interface Serializer * * @return A {@link DOMSerializer} interface into this serializer, * or null if the serializer is not DOM capable - * @throws IOException An I/O exception occured + * @throws IOException An I/O exception occurred * @deprecated Use org.apache.xml.serializer.Serializer */ public DOMSerializer asDOMSerializer() throws IOException; diff --git a/src/org/apache/xalan/templates/ElemLiteralResult.java b/src/org/apache/xalan/templates/ElemLiteralResult.java index 246fb0556..87a2375e3 100644 --- a/src/org/apache/xalan/templates/ElemLiteralResult.java +++ b/src/org/apache/xalan/templates/ElemLiteralResult.java @@ -1477,7 +1477,7 @@ protected void callChildVisitors(XSLTVisitor visitor, boolean callAttrs) /** * Throw a DOMException * - * @param msg key of the error that occured. + * @param msg key of the error that occurred. */ public void throwDOMException(short code, String msg) { diff --git a/src/org/apache/xalan/templates/ElemTemplateElement.java b/src/org/apache/xalan/templates/ElemTemplateElement.java index 807c0b72d..dae953794 100644 --- a/src/org/apache/xalan/templates/ElemTemplateElement.java +++ b/src/org/apache/xalan/templates/ElemTemplateElement.java @@ -212,7 +212,7 @@ public void endCompose(StylesheetRoot sroot) throws TransformerException /** * Throw a template element runtime error. (Note: should we throw a TransformerException instead?) * - * @param msg key of the error that occured. + * @param msg key of the error that occurred. * @param args Arguments to be used in the message */ public void error(String msg, Object[] args) diff --git a/src/org/apache/xalan/xsltc/compiler/ApplyImports.java b/src/org/apache/xalan/xsltc/compiler/ApplyImports.java index 8477b1976..3504ddc63 100644 --- a/src/org/apache/xalan/xsltc/compiler/ApplyImports.java +++ b/src/org/apache/xalan/xsltc/compiler/ApplyImports.java @@ -55,8 +55,8 @@ public boolean hasWithParams() { /** * Determine the lowest import precedence for any stylesheet imported * or included by the stylesheet in which this - * element occured. The templates that are imported by the stylesheet in - * which this element occured will all have higher import precedence than + * element occurred. The templates that are imported by the stylesheet in + * which this element occurred will all have higher import precedence than * the integer returned by this method. */ private int getMinPrecedence(int max) { diff --git a/src/org/apache/xalan/xsltc/compiler/LocationPathPattern.java b/src/org/apache/xalan/xsltc/compiler/LocationPathPattern.java index ae90f0e77..cf88e1c6a 100644 --- a/src/org/apache/xalan/xsltc/compiler/LocationPathPattern.java +++ b/src/org/apache/xalan/xsltc/compiler/LocationPathPattern.java @@ -71,7 +71,7 @@ public double getDefaultPriority() { * mode and that match on the same core pattern. The rules used are: * o) first check precedence - highest precedence wins * o) then check priority - highest priority wins - * o) then check the position - the template that occured last wins + * o) then check the position - the template that occurred last wins */ public boolean noSmallerThan(LocationPathPattern other) { if (_importPrecedence > other._importPrecedence) { diff --git a/src/org/apache/xalan/xsltc/compiler/Mode.java b/src/org/apache/xalan/xsltc/compiler/Mode.java index 107255205..0a8a4cadc 100644 --- a/src/org/apache/xalan/xsltc/compiler/Mode.java +++ b/src/org/apache/xalan/xsltc/compiler/Mode.java @@ -168,7 +168,7 @@ final class Mode implements Constants { * Creates a new Mode. * * @param name A textual representation of the mode's QName - * @param stylesheet The Stylesheet in which the mode occured + * @param stylesheet The Stylesheet in which the mode occurred * @param suffix A suffix to append to the method name for this mode * (normally a sequence number - still in a String). */ diff --git a/src/org/apache/xalan/xsltc/compiler/Parser.java b/src/org/apache/xalan/xsltc/compiler/Parser.java index 3552d0c4e..ad262cbd7 100644 --- a/src/org/apache/xalan/xsltc/compiler/Parser.java +++ b/src/org/apache/xalan/xsltc/compiler/Parser.java @@ -1039,7 +1039,7 @@ private void checkForSuperfluousAttributes(SyntaxTreeNode node, /** * Parse an XPath expression: - * @param parent - XSL element where the expression occured + * @param parent - XSL element where the expression occurred * @param exp - textual representation of the expression */ public Expression parseExpression(SyntaxTreeNode parent, String exp) { @@ -1048,7 +1048,7 @@ public Expression parseExpression(SyntaxTreeNode parent, String exp) { /** * Parse an XPath expression: - * @param parent - XSL element where the expression occured + * @param parent - XSL element where the expression occurred * @param attr - name of this element's attribute to get expression from * @param def - default expression (if the attribute was not found) */ @@ -1064,7 +1064,7 @@ public Expression parseExpression(SyntaxTreeNode parent, /** * Parse an XPath pattern: - * @param parent - XSL element where the pattern occured + * @param parent - XSL element where the pattern occurred * @param pattern - textual representation of the pattern */ public Pattern parsePattern(SyntaxTreeNode parent, String pattern) { @@ -1073,7 +1073,7 @@ public Pattern parsePattern(SyntaxTreeNode parent, String pattern) { /** * Parse an XPath pattern: - * @param parent - XSL element where the pattern occured + * @param parent - XSL element where the pattern occurred * @param attr - name of this element's attribute to get pattern from * @param def - default pattern (if the attribute was not found) */ diff --git a/src/org/apache/xalan/xsltc/compiler/SyntaxTreeNode.java b/src/org/apache/xalan/xsltc/compiler/SyntaxTreeNode.java index 54206b644..ada33b0c6 100644 --- a/src/org/apache/xalan/xsltc/compiler/SyntaxTreeNode.java +++ b/src/org/apache/xalan/xsltc/compiler/SyntaxTreeNode.java @@ -344,7 +344,7 @@ protected final boolean isDummy() { /** * Get the import precedence of this element. The import precedence equals - * the import precedence of the stylesheet in which this element occured. + * the import precedence of the stylesheet in which this element occurred. * @return The import precedence of this syntax tree node. */ protected int getImportPrecedence() { @@ -355,7 +355,7 @@ protected int getImportPrecedence() { /** * Get the Stylesheet node that represents the element - * that this node occured under. + * that this node occurred under. * @return The Stylesheet ancestor node of this node. */ public Stylesheet getStylesheet() { @@ -373,7 +373,7 @@ public Stylesheet getStylesheet() { /** * Get the Template node that represents the element - * that this node occured under. Note that this method will return 'null' + * that this node occurred under. Note that this method will return 'null' * for nodes that represent top-level elements. * @return The Template ancestor node of this node or 'null'. */ @@ -913,7 +913,7 @@ protected final void indent(int indent) { /** * Report an error to the parser. - * @param element The element in which the error occured (normally 'this' + * @param element The element in which the error occurred (normally 'this' * but it could also be an expression/pattern/etc.) * @param parser The XSLT parser to report the error to. * @param error The error code (from util/ErrorMsg). @@ -927,7 +927,7 @@ protected void reportError(SyntaxTreeNode element, Parser parser, /** * Report a recoverable error to the parser. - * @param element The element in which the error occured (normally 'this' + * @param element The element in which the error occurred (normally 'this' * but it could also be an expression/pattern/etc.) * @param parser The XSLT parser to report the error to. * @param error The error code (from util/ErrorMsg). diff --git a/src/org/apache/xalan/xsltc/compiler/TestSeq.java b/src/org/apache/xalan/xsltc/compiler/TestSeq.java index d8821d857..aabbf68cc 100644 --- a/src/org/apache/xalan/xsltc/compiler/TestSeq.java +++ b/src/org/apache/xalan/xsltc/compiler/TestSeq.java @@ -33,7 +33,7 @@ /** * A test sequence is a sequence of patterns that * - * (1) occured in templates in the same mode + * (1) occurred in templates in the same mode * (2) share the same kernel node type (e.g. A/B and C/C/B) * (3) may also contain patterns matching "*" and "node()" * (element sequence only) or matching "@*" (attribute diff --git a/src/org/apache/xml/dtm/DTMException.java b/src/org/apache/xml/dtm/DTMException.java index 8ac7dda78..d8745a729 100644 --- a/src/org/apache/xml/dtm/DTMException.java +++ b/src/org/apache/xml/dtm/DTMException.java @@ -31,19 +31,19 @@ /** - * This class specifies an exceptional condition that occured + * This class specifies an exceptional condition that occurred * in the DTM module. */ public class DTMException extends RuntimeException { static final long serialVersionUID = -775576419181334734L; - /** Field locator specifies where the error occured. + /** Field locator specifies where the error occurred. * @serial */ SourceLocator locator; /** * Method getLocator retrieves an instance of a SourceLocator - * object that specifies where an error occured. + * object that specifies where an error occurred. * * @return A SourceLocator object, or null if none was specified. */ @@ -53,7 +53,7 @@ public SourceLocator getLocator() { /** * Method setLocator sets an instance of a SourceLocator - * object that specifies where an error occured. + * object that specifies where an error occurred. * * @param location A SourceLocator object, or null to clear the location. */ diff --git a/src/org/apache/xml/dtm/ref/DTMDefaultBaseTraversers.java b/src/org/apache/xml/dtm/ref/DTMDefaultBaseTraversers.java index a91a84c2e..19735d633 100644 --- a/src/org/apache/xml/dtm/ref/DTMDefaultBaseTraversers.java +++ b/src/org/apache/xml/dtm/ref/DTMDefaultBaseTraversers.java @@ -362,7 +362,7 @@ protected int getNextIndexed(int axisRoot, int nextPotential, if(parentID == axisRoot) return nextID; - // If the parent occured before the subtree root, then + // If the parent occurred before the subtree root, then // we know it is past the child axis. if(parentID < axisRoot) return NULL; diff --git a/src/org/apache/xml/dtm/ref/sax2dtm/SAX2DTM.java b/src/org/apache/xml/dtm/ref/sax2dtm/SAX2DTM.java index 535d1b71a..97d0f9ec3 100644 --- a/src/org/apache/xml/dtm/ref/sax2dtm/SAX2DTM.java +++ b/src/org/apache/xml/dtm/ref/sax2dtm/SAX2DTM.java @@ -134,7 +134,7 @@ public class SAX2DTM extends DTMDefaultBaseIterators /** End document has been reached. * Made protected rather than private so SAX2RTFDTM can access it. */ - protected boolean m_endDocumentOccured = false; + protected boolean m_endDocumentOccurred = false; /** Data or qualified name values, one array element for each node. */ protected SuballocatedIntVector m_dataOrQName; @@ -777,7 +777,7 @@ protected boolean nextNode() if (null == m_incrementalSAXSource) return false; - if (m_endDocumentOccured) + if (m_endDocumentOccurred) { clearCoRoutine(); @@ -1370,7 +1370,7 @@ public int getElementById(String elementId) if (null != intObj) return makeNodeHandle(intObj.intValue()); - if (!isMore || m_endDocumentOccured) + if (!isMore || m_endDocumentOccurred) break; isMore = nextNode(); @@ -1726,7 +1726,7 @@ public void endDocument() throws SAXException m_prefixMappings = null; m_contextIndexes = null; - m_endDocumentOccured = true; + m_endDocumentOccurred = true; // Bugzilla 4858: throw away m_locator. we cache m_systemId m_locator = null; diff --git a/src/org/apache/xml/dtm/ref/sax2dtm/SAX2RTFDTM.java b/src/org/apache/xml/dtm/ref/sax2dtm/SAX2RTFDTM.java index 6d0be92d2..4aa367447 100644 --- a/src/org/apache/xml/dtm/ref/sax2dtm/SAX2RTFDTM.java +++ b/src/org/apache/xml/dtm/ref/sax2dtm/SAX2RTFDTM.java @@ -223,7 +223,7 @@ protected int _documentRoot(int nodeIdentifier) public void startDocument() throws SAXException { // Re-initialize the tree append process - m_endDocumentOccured = false; + m_endDocumentOccurred = false; m_prefixMappings = new java.util.Vector(); m_contextIndexes = new IntStack(); m_parents = new IntStack(); @@ -261,7 +261,7 @@ public void endDocument() throws SAXException m_contextIndexes = null; m_currentDocumentNode= NULL; // no longer open - m_endDocumentOccured = true; + m_endDocumentOccurred = true; } @@ -357,6 +357,6 @@ public boolean popRewindMark() * */ public boolean isTreeIncomplete() { - return !m_endDocumentOccured; + return !m_endDocumentOccurred; } } diff --git a/src/org/apache/xml/serializer/DOM3Serializer.java b/src/org/apache/xml/serializer/DOM3Serializer.java index 82e6470da..7fe848814 100644 --- a/src/org/apache/xml/serializer/DOM3Serializer.java +++ b/src/org/apache/xml/serializer/DOM3Serializer.java @@ -115,12 +115,12 @@ public interface DOM3Serializer { /** * Serializes the Level 3 DOM node. Throws an exception only if an I/O - * exception occured while serializing. + * exception occurred while serializing. * * This interface is a public API. * * @param node the Level 3 DOM node to serialize - * @throws IOException if an I/O exception occured while serializing + * @throws IOException if an I/O exception occurred while serializing */ public void serializeDOM3(Node node) throws IOException; diff --git a/src/org/apache/xml/serializer/DOMSerializer.java b/src/org/apache/xml/serializer/DOMSerializer.java index 7ba011c5f..16420aa0b 100644 --- a/src/org/apache/xml/serializer/DOMSerializer.java +++ b/src/org/apache/xml/serializer/DOMSerializer.java @@ -63,12 +63,12 @@ public interface DOMSerializer { /** * Serializes the DOM node. Throws an exception only if an I/O - * exception occured while serializing. + * exception occurred while serializing. * * This interface is a public API. * * @param node the DOM node to serialize - * @throws IOException if an I/O exception occured while serializing + * @throws IOException if an I/O exception occurred while serializing */ public void serialize(Node node) throws IOException; } diff --git a/src/org/apache/xml/serializer/OutputPropertiesFactory.java b/src/org/apache/xml/serializer/OutputPropertiesFactory.java index 65ef5a5b0..8f1d2b462 100644 --- a/src/org/apache/xml/serializer/OutputPropertiesFactory.java +++ b/src/org/apache/xml/serializer/OutputPropertiesFactory.java @@ -489,7 +489,7 @@ public Object run() * the rules of {@link #loadPropertiesFile}. * * @param s non-null reference to string that may need to be fixed up. - * @return A new string if fixup occured, otherwise the s argument. + * @return A new string if fixup occurred, otherwise the s argument. */ static private String fixupPropertyString(String s, boolean doClipping) { diff --git a/src/org/apache/xml/serializer/Serializer.java b/src/org/apache/xml/serializer/Serializer.java index 933d1c6ef..51de1c5d0 100644 --- a/src/org/apache/xml/serializer/Serializer.java +++ b/src/org/apache/xml/serializer/Serializer.java @@ -187,7 +187,7 @@ public interface Serializer { * * @return A {@link ContentHandler} interface into this serializer, * or null if the serializer is not SAX 2 capable - * @throws IOException An I/O exception occured + * @throws IOException An I/O exception occurred */ public ContentHandler asContentHandler() throws IOException; @@ -203,7 +203,7 @@ public interface Serializer { * * @return A {@link DOMSerializer} interface into this serializer, * or null if the serializer is not DOM capable - * @throws IOException An I/O exception occured + * @throws IOException An I/O exception occurred */ public DOMSerializer asDOMSerializer() throws IOException; @@ -231,7 +231,7 @@ public interface Serializer { * * @return An Object to be cast to a DOM3Serializer interface into this serializer, * or null if the serializer is not DOM capable - * @throws IOException An I/O exception occured + * @throws IOException An I/O exception occurred */ public Object asDOM3Serializer() throws IOException; } diff --git a/src/org/apache/xml/serializer/SerializerBase.java b/src/org/apache/xml/serializer/SerializerBase.java index 1df30014e..00b9af480 100644 --- a/src/org/apache/xml/serializer/SerializerBase.java +++ b/src/org/apache/xml/serializer/SerializerBase.java @@ -347,7 +347,7 @@ public void setDocumentLocator(Locator locator) * there is a currently open element. * * An element is currently open if a startElement() notification has - * occured but the start of the element has not yet been written to the + * occurred but the start of the element has not yet been written to the * output. In the stream case this means that we have not yet been forced * to close the elements opening tag by another notification, such as a * character notification. @@ -508,7 +508,7 @@ public void addAttributes(Attributes atts) throws SAXException * * @return A {@link ContentHandler} interface into this serializer, * or null if the serializer is not SAX 2 capable - * @throws IOException An I/O exception occured + * @throws IOException An I/O exception occurred */ public ContentHandler asContentHandler() throws IOException { @@ -786,7 +786,7 @@ public void namespaceAfterStartElement(String uri, String prefix) * * @return A {@link DOMSerializer} interface into this serializer, or null * if the serializer is not DOM capable - * @throws IOException An I/O exception occured + * @throws IOException An I/O exception occurred * @see Serializer#asDOMSerializer() */ public DOMSerializer asDOMSerializer() throws IOException @@ -1576,7 +1576,7 @@ public String getOutputPropertyNonDefault(String name ) * * @return A {@link DOM3Serializer} interface into this serializer, or null * if the serializer is not DOM capable - * @throws IOException An I/O exception occured + * @throws IOException An I/O exception occurred * @see org.apache.xml.serializer.Serializer#asDOM3Serializer() */ public Object asDOM3Serializer() throws IOException diff --git a/src/org/apache/xml/serializer/ToStream.java b/src/org/apache/xml/serializer/ToStream.java index 1134eb7ee..e55594b15 100644 --- a/src/org/apache/xml/serializer/ToStream.java +++ b/src/org/apache/xml/serializer/ToStream.java @@ -204,10 +204,10 @@ protected void closeCDATA() throws org.xml.sax.SAXException /** * Serializes the DOM node. Throws an exception only if an I/O - * exception occured while serializing. + * exception occurred while serializing. * * @param node Node to serialize. - * @throws IOException An I/O exception occured while serializing + * @throws IOException An I/O exception occurred while serializing */ public void serialize(Node node) throws IOException { diff --git a/src/org/apache/xml/serializer/dom3/DOM3SerializerImpl.java b/src/org/apache/xml/serializer/dom3/DOM3SerializerImpl.java index 3f765d9e6..d79ec9e29 100644 --- a/src/org/apache/xml/serializer/dom3/DOM3SerializerImpl.java +++ b/src/org/apache/xml/serializer/dom3/DOM3SerializerImpl.java @@ -96,12 +96,12 @@ public char[] getNewLine() { /** * Serializes the Level 3 DOM node by creating an instance of DOM3TreeWalker * which traverses the DOM tree and invokes handler events to serialize - * the DOM NOde. Throws an exception only if an I/O exception occured + * the DOM NOde. Throws an exception only if an I/O exception occurred * while serializing. * This interface is a public API. * * @param node the Level 3 DOM node to serialize - * @throws IOException if an I/O exception occured while serializing + * @throws IOException if an I/O exception occurred while serializing */ public void serializeDOM3(Node node) throws IOException { try { diff --git a/src/org/apache/xml/serializer/dom3/DOMLocatorImpl.java b/src/org/apache/xml/serializer/dom3/DOMLocatorImpl.java index f73789b2d..d6bd680a9 100644 --- a/src/org/apache/xml/serializer/dom3/DOMLocatorImpl.java +++ b/src/org/apache/xml/serializer/dom3/DOMLocatorImpl.java @@ -27,7 +27,7 @@ /** * DOMLocatorImpl is an implementaion that describes a location (e.g. - * where an error occured). + * where an error occurred). *

See also the Document Object Model (DOM) Level 3 Core Specification. * This class is a copy of the Xerces-2J class org.apache.xerces.dom.DOMLocatorImpl.java v 1.10 * @@ -43,13 +43,13 @@ final class DOMLocatorImpl implements DOMLocator { // /** - * The column number where the error occured, + * The column number where the error occurred, * or -1 if there is no column number available. */ private final int fColumnNumber; /** - * The line number where the error occured, + * The line number where the error occurred, * or -1 if there is no line number available. */ private final int fLineNumber; @@ -58,7 +58,7 @@ final class DOMLocatorImpl implements DOMLocator { private final Node fRelatedNode; /** - * The URI where the error occured, + * The URI where the error occurred, * or null if there is no URI available. */ private final String fUri; @@ -131,7 +131,7 @@ final class DOMLocatorImpl implements DOMLocator { /** - * The line number where the error occured, or -1 if there is no line + * The line number where the error occurred, or -1 if there is no line * number available. */ public int getLineNumber(){ @@ -139,7 +139,7 @@ public int getLineNumber(){ } /** - * The column number where the error occured, or -1 if there is no column + * The column number where the error occurred, or -1 if there is no column * number available. */ public int getColumnNumber(){ @@ -148,7 +148,7 @@ public int getColumnNumber(){ /** - * The URI where the error occured, or null if there is no URI available. + * The URI where the error occurred, or null if there is no URI available. */ public String getUri(){ return fUri; diff --git a/src/org/apache/xml/serializer/utils/SerializerMessages.java b/src/org/apache/xml/serializer/utils/SerializerMessages.java index f9049d601..e21dfa402 100644 --- a/src/org/apache/xml/serializer/utils/SerializerMessages.java +++ b/src/org/apache/xml/serializer/utils/SerializerMessages.java @@ -287,7 +287,7 @@ public Object[][] getContents() { }, { MsgKey.ER_WRITING_INTERNAL_SUBSET, - "An error occured while writing the internal subset." + "An error occurred while writing the internal subset." }, }; diff --git a/src/org/apache/xpath/res/XPATHErrorResources.java b/src/org/apache/xpath/res/XPATHErrorResources.java index 2c8a443a0..a66f38ab6 100644 --- a/src/org/apache/xpath/res/XPATHErrorResources.java +++ b/src/org/apache/xpath/res/XPATHErrorResources.java @@ -163,7 +163,7 @@ public class XPATHErrorResources extends ListResourceBundle "ER_DIDNOT_FIND_XPATH_SELECT_EXP"; public static final String ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH = "ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH"; - public static final String ER_ERROR_OCCURED = "ER_ERROR_OCCURED"; + public static final String ER_ERROR_OCCURRED = "ER_ERROR_OCCURRED"; public static final String ER_ILLEGAL_VARIABLE_REFERENCE = "ER_ILLEGAL_VARIABLE_REFERENCE"; public static final String ER_AXES_NOT_ALLOWED = "ER_AXES_NOT_ALLOWED"; @@ -490,8 +490,8 @@ public Object[][] getContents() { ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH, "ERROR! Could not find ENDOP after OP_LOCATIONPATH"}, - { ER_ERROR_OCCURED, - "Error occured!"}, + { ER_ERROR_OCCURRED, + "Error occurred!"}, { ER_ILLEGAL_VARIABLE_REFERENCE, "VariableReference given for variable out of context or without definition! Name = {0}"}, @@ -512,7 +512,7 @@ public Object[][] getContents() "Unsupported encoding: {0}"}, { ER_PROBLEM_IN_DTM_NEXTSIBLING, - "Problem occured in DTM in getNextSibling... trying to recover"}, + "Problem occurred in DTM in getNextSibling... trying to recover"}, { ER_CANNOT_WRITE_TO_EMPTYNODELISTIMPL, "Programmer error: EmptyNodeList can not be written to."}, diff --git a/src/org/apache/xpath/res/XPATHErrorResources_ca.java b/src/org/apache/xpath/res/XPATHErrorResources_ca.java index a5b02e7d9..71cf96251 100644 --- a/src/org/apache/xpath/res/XPATHErrorResources_ca.java +++ b/src/org/apache/xpath/res/XPATHErrorResources_ca.java @@ -163,7 +163,7 @@ public class XPATHErrorResources_ca extends ListResourceBundle "ER_DIDNOT_FIND_XPATH_SELECT_EXP"; public static final String ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH = "ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH"; - public static final String ER_ERROR_OCCURED = "ER_ERROR_OCCURED"; + public static final String ER_ERROR_OCCURRED = "ER_ERROR_OCCURRED"; public static final String ER_ILLEGAL_VARIABLE_REFERENCE = "ER_ILLEGAL_VARIABLE_REFERENCE"; public static final String ER_AXES_NOT_ALLOWED = "ER_AXES_NOT_ALLOWED"; @@ -491,7 +491,7 @@ public Object[][] getContents() { ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH, "ERROR. No s'ha trobat ENDOP despr\u00e9s d'OP_LOCATIONPATH."}, - { ER_ERROR_OCCURED, + { ER_ERROR_OCCURRED, "S'ha produ\u00eft un error."}, { ER_ILLEGAL_VARIABLE_REFERENCE, diff --git a/src/org/apache/xpath/res/XPATHErrorResources_cs.java b/src/org/apache/xpath/res/XPATHErrorResources_cs.java index afc7ee75d..9ff194c11 100644 --- a/src/org/apache/xpath/res/XPATHErrorResources_cs.java +++ b/src/org/apache/xpath/res/XPATHErrorResources_cs.java @@ -163,7 +163,7 @@ public class XPATHErrorResources_cs extends ListResourceBundle "ER_DIDNOT_FIND_XPATH_SELECT_EXP"; public static final String ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH = "ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH"; - public static final String ER_ERROR_OCCURED = "ER_ERROR_OCCURED"; + public static final String ER_ERROR_OCCURRED = "ER_ERROR_OCCURRED"; public static final String ER_ILLEGAL_VARIABLE_REFERENCE = "ER_ILLEGAL_VARIABLE_REFERENCE"; public static final String ER_AXES_NOT_ALLOWED = "ER_AXES_NOT_ALLOWED"; @@ -491,7 +491,7 @@ public Object[][] getContents() { ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH, "Chyba! Nebyl nalezen v\u00fdraz ENDOP po OP_LOCATIONPATH"}, - { ER_ERROR_OCCURED, + { ER_ERROR_OCCURRED, "Do\u0161lo k chyb\u011b!"}, { ER_ILLEGAL_VARIABLE_REFERENCE, diff --git a/src/org/apache/xpath/res/XPATHErrorResources_de.java b/src/org/apache/xpath/res/XPATHErrorResources_de.java index 2033abe05..dc3416c0e 100644 --- a/src/org/apache/xpath/res/XPATHErrorResources_de.java +++ b/src/org/apache/xpath/res/XPATHErrorResources_de.java @@ -163,7 +163,7 @@ public class XPATHErrorResources_de extends ListResourceBundle "ER_DIDNOT_FIND_XPATH_SELECT_EXP"; public static final String ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH = "ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH"; - public static final String ER_ERROR_OCCURED = "ER_ERROR_OCCURED"; + public static final String ER_ERROR_OCCURRED = "ER_ERROR_OCCURRED"; public static final String ER_ILLEGAL_VARIABLE_REFERENCE = "ER_ILLEGAL_VARIABLE_REFERENCE"; public static final String ER_AXES_NOT_ALLOWED = "ER_AXES_NOT_ALLOWED"; @@ -491,7 +491,7 @@ public Object[][] getContents() { ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH, "FEHLER! ENDOP konnte nach OP_LOCATIONPATH nicht gefunden werden."}, - { ER_ERROR_OCCURED, + { ER_ERROR_OCCURRED, "Es ist ein Fehler aufgetreten!"}, { ER_ILLEGAL_VARIABLE_REFERENCE, diff --git a/src/org/apache/xpath/res/XPATHErrorResources_es.java b/src/org/apache/xpath/res/XPATHErrorResources_es.java index 04aff8424..bc410b164 100644 --- a/src/org/apache/xpath/res/XPATHErrorResources_es.java +++ b/src/org/apache/xpath/res/XPATHErrorResources_es.java @@ -163,7 +163,7 @@ public class XPATHErrorResources_es extends ListResourceBundle "ER_DIDNOT_FIND_XPATH_SELECT_EXP"; public static final String ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH = "ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH"; - public static final String ER_ERROR_OCCURED = "ER_ERROR_OCCURED"; + public static final String ER_ERROR_OCCURRED = "ER_ERROR_OCCURRED"; public static final String ER_ILLEGAL_VARIABLE_REFERENCE = "ER_ILLEGAL_VARIABLE_REFERENCE"; public static final String ER_AXES_NOT_ALLOWED = "ER_AXES_NOT_ALLOWED"; @@ -491,7 +491,7 @@ public Object[][] getContents() { ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH, "ERROR. No se ha podido encontrar ENDOP despu\u00e9s de OP_LOCATIONPATH"}, - { ER_ERROR_OCCURED, + { ER_ERROR_OCCURRED, "Se ha producido un error."}, { ER_ILLEGAL_VARIABLE_REFERENCE, diff --git a/src/org/apache/xpath/res/XPATHErrorResources_fr.java b/src/org/apache/xpath/res/XPATHErrorResources_fr.java index 354f53456..d70cd1f08 100644 --- a/src/org/apache/xpath/res/XPATHErrorResources_fr.java +++ b/src/org/apache/xpath/res/XPATHErrorResources_fr.java @@ -163,7 +163,7 @@ public class XPATHErrorResources_fr extends ListResourceBundle "ER_DIDNOT_FIND_XPATH_SELECT_EXP"; public static final String ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH = "ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH"; - public static final String ER_ERROR_OCCURED = "ER_ERROR_OCCURED"; + public static final String ER_ERROR_OCCURRED = "ER_ERROR_OCCURRED"; public static final String ER_ILLEGAL_VARIABLE_REFERENCE = "ER_ILLEGAL_VARIABLE_REFERENCE"; public static final String ER_AXES_NOT_ALLOWED = "ER_AXES_NOT_ALLOWED"; @@ -491,7 +491,7 @@ public Object[][] getContents() { ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH, "ERREUR ! Impossible de trouver ENDOP apr\u00e8s OP_LOCATIONPATH"}, - { ER_ERROR_OCCURED, + { ER_ERROR_OCCURRED, "Une erreur s'est produite !"}, { ER_ILLEGAL_VARIABLE_REFERENCE, diff --git a/src/org/apache/xpath/res/XPATHErrorResources_hu.java b/src/org/apache/xpath/res/XPATHErrorResources_hu.java index 9e2d332ed..71a54c86e 100644 --- a/src/org/apache/xpath/res/XPATHErrorResources_hu.java +++ b/src/org/apache/xpath/res/XPATHErrorResources_hu.java @@ -163,7 +163,7 @@ public class XPATHErrorResources_hu extends ListResourceBundle "ER_DIDNOT_FIND_XPATH_SELECT_EXP"; public static final String ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH = "ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH"; - public static final String ER_ERROR_OCCURED = "ER_ERROR_OCCURED"; + public static final String ER_ERROR_OCCURRED = "ER_ERROR_OCCURRED"; public static final String ER_ILLEGAL_VARIABLE_REFERENCE = "ER_ILLEGAL_VARIABLE_REFERENCE"; public static final String ER_AXES_NOT_ALLOWED = "ER_AXES_NOT_ALLOWED"; @@ -491,7 +491,7 @@ public Object[][] getContents() { ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH, "HIBA! Nem tal\u00e1lhat\u00f3 ENDOP az OP_LOCATIONPATH ut\u00e1n"}, - { ER_ERROR_OCCURED, + { ER_ERROR_OCCURRED, "Hiba t\u00f6rt\u00e9nt!"}, { ER_ILLEGAL_VARIABLE_REFERENCE, diff --git a/src/org/apache/xpath/res/XPATHErrorResources_it.java b/src/org/apache/xpath/res/XPATHErrorResources_it.java index e4a9fe9a9..ab21a8d5f 100644 --- a/src/org/apache/xpath/res/XPATHErrorResources_it.java +++ b/src/org/apache/xpath/res/XPATHErrorResources_it.java @@ -163,7 +163,7 @@ public class XPATHErrorResources_it extends ListResourceBundle "ER_DIDNOT_FIND_XPATH_SELECT_EXP"; public static final String ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH = "ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH"; - public static final String ER_ERROR_OCCURED = "ER_ERROR_OCCURED"; + public static final String ER_ERROR_OCCURRED = "ER_ERROR_OCCURRED"; public static final String ER_ILLEGAL_VARIABLE_REFERENCE = "ER_ILLEGAL_VARIABLE_REFERENCE"; public static final String ER_AXES_NOT_ALLOWED = "ER_AXES_NOT_ALLOWED"; @@ -491,7 +491,7 @@ public Object[][] getContents() { ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH, "ERRORE! Impossibile trovare ENDOP dopo OP_LOCATIONPATH"}, - { ER_ERROR_OCCURED, + { ER_ERROR_OCCURRED, "Si \u00e8 verificato un errore."}, { ER_ILLEGAL_VARIABLE_REFERENCE, diff --git a/src/org/apache/xpath/res/XPATHErrorResources_ja.java b/src/org/apache/xpath/res/XPATHErrorResources_ja.java index 61176bff7..79995bde1 100644 --- a/src/org/apache/xpath/res/XPATHErrorResources_ja.java +++ b/src/org/apache/xpath/res/XPATHErrorResources_ja.java @@ -163,7 +163,7 @@ public class XPATHErrorResources_ja extends ListResourceBundle "ER_DIDNOT_FIND_XPATH_SELECT_EXP"; public static final String ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH = "ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH"; - public static final String ER_ERROR_OCCURED = "ER_ERROR_OCCURED"; + public static final String ER_ERROR_OCCURRED = "ER_ERROR_OCCURRED"; public static final String ER_ILLEGAL_VARIABLE_REFERENCE = "ER_ILLEGAL_VARIABLE_REFERENCE"; public static final String ER_AXES_NOT_ALLOWED = "ER_AXES_NOT_ALLOWED"; @@ -491,7 +491,7 @@ public Object[][] getContents() { ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH, "\u30a8\u30e9\u30fc: OP_LOCATIONPATH \u306e\u5f8c\u306b ENDOP \u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3067\u3057\u305f"}, - { ER_ERROR_OCCURED, + { ER_ERROR_OCCURRED, "\u30a8\u30e9\u30fc\u304c\u8d77\u3053\u308a\u307e\u3057\u305f\u3002"}, { ER_ILLEGAL_VARIABLE_REFERENCE, diff --git a/src/org/apache/xpath/res/XPATHErrorResources_ko.java b/src/org/apache/xpath/res/XPATHErrorResources_ko.java index 690f094bc..9b3ad4880 100644 --- a/src/org/apache/xpath/res/XPATHErrorResources_ko.java +++ b/src/org/apache/xpath/res/XPATHErrorResources_ko.java @@ -163,7 +163,7 @@ public class XPATHErrorResources_ko extends ListResourceBundle "ER_DIDNOT_FIND_XPATH_SELECT_EXP"; public static final String ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH = "ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH"; - public static final String ER_ERROR_OCCURED = "ER_ERROR_OCCURED"; + public static final String ER_ERROR_OCCURRED = "ER_ERROR_OCCURRED"; public static final String ER_ILLEGAL_VARIABLE_REFERENCE = "ER_ILLEGAL_VARIABLE_REFERENCE"; public static final String ER_AXES_NOT_ALLOWED = "ER_AXES_NOT_ALLOWED"; @@ -491,7 +491,7 @@ public Object[][] getContents() { ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH, "\uc624\ub958. OP_LOCATIONPATH \ub4a4\uc5d0 ENDOP\ub97c \ucc3e\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."}, - { ER_ERROR_OCCURED, + { ER_ERROR_OCCURRED, "\uc624\ub958\uac00 \ubc1c\uc0dd\ud588\uc2b5\ub2c8\ub2e4."}, { ER_ILLEGAL_VARIABLE_REFERENCE, diff --git a/src/org/apache/xpath/res/XPATHErrorResources_pl.java b/src/org/apache/xpath/res/XPATHErrorResources_pl.java index e2b436663..c8e4af814 100644 --- a/src/org/apache/xpath/res/XPATHErrorResources_pl.java +++ b/src/org/apache/xpath/res/XPATHErrorResources_pl.java @@ -163,7 +163,7 @@ public class XPATHErrorResources_pl extends ListResourceBundle "ER_DIDNOT_FIND_XPATH_SELECT_EXP"; public static final String ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH = "ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH"; - public static final String ER_ERROR_OCCURED = "ER_ERROR_OCCURED"; + public static final String ER_ERROR_OCCURRED = "ER_ERROR_OCCURRED"; public static final String ER_ILLEGAL_VARIABLE_REFERENCE = "ER_ILLEGAL_VARIABLE_REFERENCE"; public static final String ER_AXES_NOT_ALLOWED = "ER_AXES_NOT_ALLOWED"; @@ -491,7 +491,7 @@ public Object[][] getContents() { ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH, "B\u0141\u0104D! Nie mo\u017cna znale\u017a\u0107 ENDOP po OP_LOCATIONPATH"}, - { ER_ERROR_OCCURED, + { ER_ERROR_OCCURRED, "Wyst\u0105pi\u0142 b\u0142\u0105d!"}, { ER_ILLEGAL_VARIABLE_REFERENCE, diff --git a/src/org/apache/xpath/res/XPATHErrorResources_pt_BR.java b/src/org/apache/xpath/res/XPATHErrorResources_pt_BR.java index 04c4f9dba..6d7f49fe4 100644 --- a/src/org/apache/xpath/res/XPATHErrorResources_pt_BR.java +++ b/src/org/apache/xpath/res/XPATHErrorResources_pt_BR.java @@ -163,7 +163,7 @@ public class XPATHErrorResources_pt_BR extends ListResourceBundle "ER_DIDNOT_FIND_XPATH_SELECT_EXP"; public static final String ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH = "ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH"; - public static final String ER_ERROR_OCCURED = "ER_ERROR_OCCURED"; + public static final String ER_ERROR_OCCURRED = "ER_ERROR_OCCURRED"; public static final String ER_ILLEGAL_VARIABLE_REFERENCE = "ER_ILLEGAL_VARIABLE_REFERENCE"; public static final String ER_AXES_NOT_ALLOWED = "ER_AXES_NOT_ALLOWED"; @@ -492,7 +492,7 @@ public Object[][] getContents() { ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH, "ERRO! N\u00e3o foi poss\u00edvel encontrar ENDOP ap\u00f3s OP_LOCATIONPATH"}, - { ER_ERROR_OCCURED, + { ER_ERROR_OCCURRED, "Ocorreu um erro!"}, { ER_ILLEGAL_VARIABLE_REFERENCE, diff --git a/src/org/apache/xpath/res/XPATHErrorResources_ru.java b/src/org/apache/xpath/res/XPATHErrorResources_ru.java index e3369c00a..306ddd038 100644 --- a/src/org/apache/xpath/res/XPATHErrorResources_ru.java +++ b/src/org/apache/xpath/res/XPATHErrorResources_ru.java @@ -163,7 +163,7 @@ public class XPATHErrorResources_ru extends ListResourceBundle "ER_DIDNOT_FIND_XPATH_SELECT_EXP"; public static final String ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH = "ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH"; - public static final String ER_ERROR_OCCURED = "ER_ERROR_OCCURED"; + public static final String ER_ERROR_OCCURRED = "ER_ERROR_OCCURRED"; public static final String ER_ILLEGAL_VARIABLE_REFERENCE = "ER_ILLEGAL_VARIABLE_REFERENCE"; public static final String ER_AXES_NOT_ALLOWED = "ER_AXES_NOT_ALLOWED"; @@ -491,7 +491,7 @@ public Object[][] getContents() { ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH, "\u041e\u0448\u0438\u0431\u043a\u0430! \u041f\u043e\u0441\u043b\u0435 OP_LOCATIONPATH \u043e\u0442\u0441\u0443\u0442\u0441\u0442\u0432\u0443\u0435\u0442 ENDOP"}, - { ER_ERROR_OCCURED, + { ER_ERROR_OCCURRED, "\u041e\u0448\u0438\u0431\u043a\u0430!"}, { ER_ILLEGAL_VARIABLE_REFERENCE, diff --git a/src/org/apache/xpath/res/XPATHErrorResources_sk.java b/src/org/apache/xpath/res/XPATHErrorResources_sk.java index b3cd544f7..7ba694a27 100644 --- a/src/org/apache/xpath/res/XPATHErrorResources_sk.java +++ b/src/org/apache/xpath/res/XPATHErrorResources_sk.java @@ -163,7 +163,7 @@ public class XPATHErrorResources_sk extends ListResourceBundle "ER_DIDNOT_FIND_XPATH_SELECT_EXP"; public static final String ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH = "ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH"; - public static final String ER_ERROR_OCCURED = "ER_ERROR_OCCURED"; + public static final String ER_ERROR_OCCURRED = "ER_ERROR_OCCURRED"; public static final String ER_ILLEGAL_VARIABLE_REFERENCE = "ER_ILLEGAL_VARIABLE_REFERENCE"; public static final String ER_AXES_NOT_ALLOWED = "ER_AXES_NOT_ALLOWED"; @@ -491,7 +491,7 @@ public Object[][] getContents() { ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH, "CHYBA! Nebolo mo\u017en\u00e9 n\u00e1js\u0165 ENDOP po OP_LOCATIONPATH"}, - { ER_ERROR_OCCURED, + { ER_ERROR_OCCURRED, "Vyskytla sa chyba!"}, { ER_ILLEGAL_VARIABLE_REFERENCE, diff --git a/src/org/apache/xpath/res/XPATHErrorResources_sl.java b/src/org/apache/xpath/res/XPATHErrorResources_sl.java index afe4790df..f1aee801b 100644 --- a/src/org/apache/xpath/res/XPATHErrorResources_sl.java +++ b/src/org/apache/xpath/res/XPATHErrorResources_sl.java @@ -164,7 +164,7 @@ public class XPATHErrorResources_sl extends ListResourceBundle "ER_DIDNOT_FIND_XPATH_SELECT_EXP"; public static final String ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH = "ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH"; - public static final String ER_ERROR_OCCURED = "ER_ERROR_OCCURED"; + public static final String ER_ERROR_OCCURRED = "ER_ERROR_OCCURRED"; public static final String ER_ILLEGAL_VARIABLE_REFERENCE = "ER_ILLEGAL_VARIABLE_REFERENCE"; public static final String ER_AXES_NOT_ALLOWED = "ER_AXES_NOT_ALLOWED"; @@ -492,7 +492,7 @@ public Object[][] getContents() { ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH, "NAPAKA! Ne najdem ENDOP po OP_LOCATIONPATH"}, - { ER_ERROR_OCCURED, + { ER_ERROR_OCCURRED, "Pri\u0161lo je do napake!"}, { ER_ILLEGAL_VARIABLE_REFERENCE, diff --git a/src/org/apache/xpath/res/XPATHErrorResources_sv.java b/src/org/apache/xpath/res/XPATHErrorResources_sv.java index 68a7802bd..042826756 100644 --- a/src/org/apache/xpath/res/XPATHErrorResources_sv.java +++ b/src/org/apache/xpath/res/XPATHErrorResources_sv.java @@ -425,12 +425,12 @@ public Object[][] getContents() "FEL! Hittade inte ENDOP efter OP_LOCATIONPATH"}, - /** Field ER_ERROR_OCCURED */ - //public static final int ER_ERROR_OCCURED = 42; + /** Field ER_ERROR_OCCURRED */ + //public static final int ER_ERROR_OCCURRED = 42; { - ER_ERROR_OCCURED, "Fel intr\u00e4ffade!"}, + ER_ERROR_OCCURRED, "Fel intr\u00e4ffade!"}, /** Field ER_ILLEGAL_VARIABLE_REFERENCE */ diff --git a/src/org/apache/xpath/res/XPATHErrorResources_tr.java b/src/org/apache/xpath/res/XPATHErrorResources_tr.java index e7f4e8f32..81c8a0383 100644 --- a/src/org/apache/xpath/res/XPATHErrorResources_tr.java +++ b/src/org/apache/xpath/res/XPATHErrorResources_tr.java @@ -163,7 +163,7 @@ public class XPATHErrorResources_tr extends ListResourceBundle "ER_DIDNOT_FIND_XPATH_SELECT_EXP"; public static final String ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH = "ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH"; - public static final String ER_ERROR_OCCURED = "ER_ERROR_OCCURED"; + public static final String ER_ERROR_OCCURRED = "ER_ERROR_OCCURRED"; public static final String ER_ILLEGAL_VARIABLE_REFERENCE = "ER_ILLEGAL_VARIABLE_REFERENCE"; public static final String ER_AXES_NOT_ALLOWED = "ER_AXES_NOT_ALLOWED"; @@ -491,7 +491,7 @@ public Object[][] getContents() { ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH, "HATA! OP_LOCATIONPATH sonras\u0131nda ENDOP bulunamad\u0131."}, - { ER_ERROR_OCCURED, + { ER_ERROR_OCCURRED, "Hata olu\u015ftu!"}, { ER_ILLEGAL_VARIABLE_REFERENCE, diff --git a/src/org/apache/xpath/res/XPATHErrorResources_zh.java b/src/org/apache/xpath/res/XPATHErrorResources_zh.java index 6a353f5ea..f1cdb844f 100644 --- a/src/org/apache/xpath/res/XPATHErrorResources_zh.java +++ b/src/org/apache/xpath/res/XPATHErrorResources_zh.java @@ -163,7 +163,7 @@ public class XPATHErrorResources_zh extends ListResourceBundle "ER_DIDNOT_FIND_XPATH_SELECT_EXP"; public static final String ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH = "ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH"; - public static final String ER_ERROR_OCCURED = "ER_ERROR_OCCURED"; + public static final String ER_ERROR_OCCURRED = "ER_ERROR_OCCURRED"; public static final String ER_ILLEGAL_VARIABLE_REFERENCE = "ER_ILLEGAL_VARIABLE_REFERENCE"; public static final String ER_AXES_NOT_ALLOWED = "ER_AXES_NOT_ALLOWED"; @@ -491,7 +491,7 @@ public Object[][] getContents() { ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH, "\u9519\u8bef\uff01\u5728 OP_LOCATIONPATH \u4e4b\u540e\u627e\u4e0d\u5230 ENDOP"}, - { ER_ERROR_OCCURED, + { ER_ERROR_OCCURRED, "\u51fa\u73b0\u9519\u8bef\uff01"}, { ER_ILLEGAL_VARIABLE_REFERENCE, diff --git a/src/org/apache/xpath/res/XPATHErrorResources_zh_TW.java b/src/org/apache/xpath/res/XPATHErrorResources_zh_TW.java index 99baaaab8..ad3a37123 100644 --- a/src/org/apache/xpath/res/XPATHErrorResources_zh_TW.java +++ b/src/org/apache/xpath/res/XPATHErrorResources_zh_TW.java @@ -163,7 +163,7 @@ public class XPATHErrorResources_zh_TW extends ListResourceBundle "ER_DIDNOT_FIND_XPATH_SELECT_EXP"; public static final String ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH = "ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH"; - public static final String ER_ERROR_OCCURED = "ER_ERROR_OCCURED"; + public static final String ER_ERROR_OCCURRED = "ER_ERROR_OCCURRED"; public static final String ER_ILLEGAL_VARIABLE_REFERENCE = "ER_ILLEGAL_VARIABLE_REFERENCE"; public static final String ER_AXES_NOT_ALLOWED = "ER_AXES_NOT_ALLOWED"; @@ -491,7 +491,7 @@ public Object[][] getContents() { ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH, "\u932f\u8aa4\uff01\u5728 OP_LOCATIONPATH \u4e4b\u5f8c\u627e\u4e0d\u5230 ENDOP"}, - { ER_ERROR_OCCURED, + { ER_ERROR_OCCURRED, "\u767c\u751f\u932f\u8aa4\uff01"}, { ER_ILLEGAL_VARIABLE_REFERENCE, diff --git a/xdocs/sources/xalan/history.xml b/xdocs/sources/xalan/history.xml index d39e0cbdc..c998a6a01 100644 --- a/xdocs/sources/xalan/history.xml +++ b/xdocs/sources/xalan/history.xml @@ -5040,7 +5040,7 @@ rely selfdoc for this and a few other newer options.

  • Committed by sboag@apache.org on 11/28/2001
    Modified: java/src/org/apache/xalan/transformer ResultTreeHandler.java
    Committer's log entry: Catch exceptions from the output content handler in flush(), and throw a SAXParseException with line numbers filled in. If we don't do this, and the exception is a RuntimeException, - good line numbers of where the exception occured in the stylesheet + good line numbers of where the exception occurred in the stylesheet won't get reported. I tried just catching RuntimeException, but for whatever reason it didn't seem to catch. Fix for Christina's DOMException error problem.

  • Committed by jkesselm@apache.org on 11/29/2001
    Modified: java/src/org/apache/xml/dtm/ref/dom2dtm DOM2DTM.java
    Added: java/src/org/apache/xml/dtm/ref/dom2dtm @@ -5342,7 +5342,7 @@ xsl:apply-template

  • Committed by sboag@apache.org
  • Committed by johng@apache.org on 08/24/2001
    Modified: java/src/org/apache/xalan/lib/sql SQLDocument.java
    Committer's log entry: Removed debug flag @@ -6088,7 +6088,7 @@ The DTM has many features, including direct character dispatch to SAX2, native DTM iterators and "traversers", multiple document management, etc.

  • Joe Kesselman's CoRoutine parsers, which are in a threaded SAX flavor and in a Xerces parseMore() flavor (no threads). These do away with the -"race" conditions that occured in the original code, and should make Xalan +"race" conditions that occurred in the original code, and should make Xalan much more robust.

  • *Much* more robust XPath itteration. The "waiting" iterators of old are no more, and good riddance. There is stil lots more we want to do with diff --git a/xdocs/sources/xalan/xsltc_history.xml b/xdocs/sources/xalan/xsltc_history.xml index eec9ca771..2e1270d18 100644 --- a/xdocs/sources/xalan/xsltc_history.xml +++ b/xdocs/sources/xalan/xsltc_history.xml @@ -4646,7 +4646,7 @@ any). Submitted by: morten@xml.apache.org Reviewed by: morten@xml.apache.org

  • Committed by morten@apache.org on 06/12/2001
    Modified: java/src/org/apache/xalan/xsltc/compiler AttributeSet.java
    Committer's log entry: Final fix (for now) for attribute sets. In cases where multiple <xsl:attribute-set.../> elements make up one attribute set (ie. they share - the same name) attributes that occured last in the stylesheet will take + the same name) attributes that occurred last in the stylesheet will take precedence. PR: n/a Obtained from: n/a