|
|
|
|
|
|
|
*/ |
|
/* |
|
* Licensed to the Apache Software Foundation (ASF) under one or more |
|
* contributor license agreements. See the NOTICE file distributed with |
|
* this work for additional information regarding copyright ownership. |
|
* The ASF licenses this file to You under the Apache License, Version 2.0 |
|
* (the "License"); you may not use this file except in compliance with |
|
* the License. You may obtain a copy of the License at |
|
* |
|
* http://www.apache.org/licenses/LICENSE-2.0 |
|
* |
|
* Unless required by applicable law or agreed to in writing, software |
|
* distributed under the License is distributed on an "AS IS" BASIS, |
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|
* See the License for the specific language governing permissions and |
|
* limitations under the License. |
|
*/ |
|
|
|
package com.sun.org.apache.xerces.internal.dom; |
|
|
|
import org.w3c.dom.DOMLocator; |
|
import org.w3c.dom.Node; |
|
|
|
|
|
/** |
|
* <code>DOMLocatorImpl</code> is an implementaion that describes a location (e.g. |
|
* where an error occured). |
|
* <p>See also the <a href='http://www.w3.org/TR/2001/WD-DOM-Level-3-Core-20010913'>Document Object Model (DOM) Level 3 Core Specification</a>. |
|
* |
|
* @xerces.internal |
|
* |
|
* @author Gopal Sharma, SUN Microsystems Inc. |
|
*/ |
|
|
|
public class DOMLocatorImpl implements DOMLocator { |
|
|
|
// |
|
// Data |
|
// |
|
|
|
|
|
|
|
|
|
*/ |
|
public int fColumnNumber = -1; |
|
|
|
|
|
|
|
|
|
*/ |
|
public int fLineNumber = -1; |
|
|
|
|
|
public Node fRelatedNode = null; |
|
|
|
|
|
|
|
|
|
*/ |
|
public String fUri = null; |
|
|
|
|
|
|
|
|
|
*/ |
|
public int fByteOffset = -1; |
|
|
|
|
|
|
|
|
|
|
|
*/ |
|
public int fUtf16Offset = -1; |
|
|
|
// |
|
// Constructors |
|
// |
|
|
|
public DOMLocatorImpl(){ |
|
} |
|
|
|
public DOMLocatorImpl (int lineNumber, int columnNumber, String uri ){ |
|
fLineNumber = lineNumber ; |
|
fColumnNumber = columnNumber ; |
|
fUri = uri; |
|
} // DOMLocatorImpl (int lineNumber, int columnNumber, String uri ) |
|
|
|
public DOMLocatorImpl (int lineNumber, int columnNumber, int utf16Offset, String uri ){ |
|
fLineNumber = lineNumber ; |
|
fColumnNumber = columnNumber ; |
|
fUri = uri; |
|
fUtf16Offset = utf16Offset; |
|
} // DOMLocatorImpl (int lineNumber, int columnNumber, int utf16Offset, String uri ) |
|
|
|
public DOMLocatorImpl (int lineNumber, int columnNumber, int byteoffset, Node relatedData, String uri ){ |
|
fLineNumber = lineNumber ; |
|
fColumnNumber = columnNumber ; |
|
fByteOffset = byteoffset ; |
|
fRelatedNode = relatedData ; |
|
fUri = uri; |
|
} // DOMLocatorImpl (int lineNumber, int columnNumber, int offset, Node errorNode, String uri ) |
|
|
|
public DOMLocatorImpl (int lineNumber, int columnNumber, int byteoffset, Node relatedData, String uri, int utf16Offset ){ |
|
fLineNumber = lineNumber ; |
|
fColumnNumber = columnNumber ; |
|
fByteOffset = byteoffset ; |
|
fRelatedNode = relatedData ; |
|
fUri = uri; |
|
fUtf16Offset = utf16Offset; |
|
} // DOMLocatorImpl (int lineNumber, int columnNumber, int offset, Node errorNode, String uri ) |
|
|
|
|
|
|
|
|
|
|
|
*/ |
|
public int getLineNumber(){ |
|
return fLineNumber; |
|
} |
|
|
|
|
|
|
|
|
|
*/ |
|
public int getColumnNumber(){ |
|
return fColumnNumber; |
|
} |
|
|
|
|
|
|
|
|
|
*/ |
|
public String getUri(){ |
|
return fUri; |
|
} |
|
|
|
|
|
public Node getRelatedNode(){ |
|
return fRelatedNode; |
|
} |
|
|
|
|
|
|
|
|
|
|
|
*/ |
|
public int getByteOffset(){ |
|
return fByteOffset; |
|
} |
|
|
|
|
|
|
|
|
|
|
|
*/ |
|
public int getUtf16Offset(){ |
|
return fUtf16Offset; |
|
} |
|
|
|
}// class DOMLocatorImpl |