You are viewing a plain text version of this content. The canonical link for it is here.
Posted to woden-dev@ws.apache.org by lm...@apache.org on 2005/12/07 00:03:46 UTC

svn commit: r354603 - /incubator/woden/java/src/org/apache/woden/internal/ErrorLocatorImpl.java

Author: lmandel
Date: Tue Dec  6 15:03:43 2005
New Revision: 354603

URL: http://svn.apache.org/viewcvs?rev=354603&view=rev
Log:
Added setters.

Modified:
    incubator/woden/java/src/org/apache/woden/internal/ErrorLocatorImpl.java

Modified: incubator/woden/java/src/org/apache/woden/internal/ErrorLocatorImpl.java
URL: http://svn.apache.org/viewcvs/incubator/woden/java/src/org/apache/woden/internal/ErrorLocatorImpl.java?rev=354603&r1=354602&r2=354603&view=diff
==============================================================================
--- incubator/woden/java/src/org/apache/woden/internal/ErrorLocatorImpl.java (original)
+++ incubator/woden/java/src/org/apache/woden/internal/ErrorLocatorImpl.java Tue Dec  6 15:03:43 2005
@@ -50,12 +50,48 @@
     public int getLineNumber() {
         return fLineNumber;
     }
-
+    
     /* (non-Javadoc)
      * @see org.apache.woden.ErrorLocator#getColumnNumber()
      */
     public int getColumnNumber() {
         return fColumnNumber;
+    }
+
+    /**
+     * Set the column number of this locator.
+     * 
+     * @param col The column number to set.
+     */
+    public void setColumnNumber(int col) {
+        fColumnNumber = col;
+    }
+    
+    /**
+     * Set the base URI of this locator.
+     * 
+     * @param uri The URI of the base location to set.
+     */
+    public void getDocumentBaseURI(String uri) {
+        // TODO required?
+    }
+
+    /**
+     * Set the location URI of this locator.
+     * 
+     * @param uri The URI of the location to set.
+     */
+    public void getLocationURI(String uri) {
+        // TODO required?
+    }
+
+    /**
+     * Set the line number of this locator.
+     * 
+     * @param line The line number to set.
+     */
+    public void setLineNumber(int line) {
+        fLineNumber = line;
     }
 
 }



---------------------------------------------------------------------
To unsubscribe, e-mail: woden-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: woden-dev-help@ws.apache.org