< prev index next >

src/java.xml/share/classes/com/sun/org/apache/xerces/internal/util/LocatorWrapper.java

Print this page




  11  * the License.  You may obtain a copy of the License at
  12  *
  13  *      http://www.apache.org/licenses/LICENSE-2.0
  14  *
  15  * Unless required by applicable law or agreed to in writing, software
  16  * distributed under the License is distributed on an "AS IS" BASIS,
  17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  18  * See the License for the specific language governing permissions and
  19  * limitations under the License.
  20  */
  21 
  22 package com.sun.org.apache.xerces.internal.util;
  23 
  24 import com.sun.org.apache.xerces.internal.xni.XMLLocator;
  25 import org.xml.sax.Locator;
  26 
  27 /**
  28  * Wraps SAX {@link Locator} into Xerces {@link XMLLocator}.
  29  *
  30  * @author
  31  *     Kohsuke Kawaguchi (kohsuke.kawaguchi@sun.com)
  32  */
  33 public class LocatorWrapper implements XMLLocator {
  34 
  35     private final Locator locator;
  36 
  37     public LocatorWrapper( Locator _loc ) { this.locator=_loc; }
  38 
  39     public int getColumnNumber()  { return locator.getColumnNumber(); }
  40     public int getLineNumber()    { return locator.getLineNumber(); }
  41     public String getBaseSystemId() { return null; }
  42     public String getExpandedSystemId() { return locator.getSystemId(); }
  43     public String getLiteralSystemId() { return locator.getSystemId(); }
  44     public String getPublicId()   { return locator.getPublicId(); }
  45     public String getEncoding() { return null; }
  46 
  47     /**
  48      * <p>Returns the character offset,
  49      * or <code>-1</code>,
  50      * if no character offset is available.<p>
  51      *


  11  * the License.  You may obtain a copy of the License at
  12  *
  13  *      http://www.apache.org/licenses/LICENSE-2.0
  14  *
  15  * Unless required by applicable law or agreed to in writing, software
  16  * distributed under the License is distributed on an "AS IS" BASIS,
  17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  18  * See the License for the specific language governing permissions and
  19  * limitations under the License.
  20  */
  21 
  22 package com.sun.org.apache.xerces.internal.util;
  23 
  24 import com.sun.org.apache.xerces.internal.xni.XMLLocator;
  25 import org.xml.sax.Locator;
  26 
  27 /**
  28  * Wraps SAX {@link Locator} into Xerces {@link XMLLocator}.
  29  *
  30  * @author
  31  *     Kohsuke Kawaguchi
  32  */
  33 public class LocatorWrapper implements XMLLocator {
  34 
  35     private final Locator locator;
  36 
  37     public LocatorWrapper( Locator _loc ) { this.locator=_loc; }
  38 
  39     public int getColumnNumber()  { return locator.getColumnNumber(); }
  40     public int getLineNumber()    { return locator.getLineNumber(); }
  41     public String getBaseSystemId() { return null; }
  42     public String getExpandedSystemId() { return locator.getSystemId(); }
  43     public String getLiteralSystemId() { return locator.getSystemId(); }
  44     public String getPublicId()   { return locator.getPublicId(); }
  45     public String getEncoding() { return null; }
  46 
  47     /**
  48      * <p>Returns the character offset,
  49      * or <code>-1</code>,
  50      * if no character offset is available.<p>
  51      *
< prev index next >