| java.lang.Object javax.xml.bind.helpers.ValidationEventLocatorImpl
ValidationEventLocatorImpl | public ValidationEventLocatorImpl()(Code) | | Creates an object with all fields unavailable.
|
ValidationEventLocatorImpl | public ValidationEventLocatorImpl(Locator loc)(Code) | | Constructs an object from an org.xml.sax.Locator.
The object's ColumnNumber, LineNumber, and URL become available from the
values returned by the locator's getColumnNumber(), getLineNumber(), and
getSystemId() methods respectively. Node, Object, and Offset are not
available.
Parameters: loc - the SAX Locator object that will be used to populate thisevent locator. throws: IllegalArgumentException - if the Locator is null |
ValidationEventLocatorImpl | public ValidationEventLocatorImpl(SAXParseException e)(Code) | | Constructs an object from the location information of a SAXParseException.
The object's ColumnNumber, LineNumber, and URL become available from the
values returned by the locator's getColumnNumber(), getLineNumber(), and
getSystemId() methods respectively. Node, Object, and Offset are not
available.
Parameters: e - the SAXParseException object that will be used to populate thisevent locator. throws: IllegalArgumentException - if the SAXParseException is null |
ValidationEventLocatorImpl | public ValidationEventLocatorImpl(Node _node)(Code) | | Constructs an object that points to a DOM Node.
The object's Node becomes available. ColumnNumber, LineNumber, Object,
Offset, and URL are not available.
Parameters: _node - the DOM Node object that will be used to populate thisevent locator. throws: IllegalArgumentException - if the Node is null |
ValidationEventLocatorImpl | public ValidationEventLocatorImpl(Object _object)(Code) | | Constructs an object that points to a JAXB content object.
The object's Object becomes available. ColumnNumber, LineNumber, Node,
Offset, and URL are not available.
Parameters: _object - the Object that will be used to populate thisevent locator. throws: IllegalArgumentException - if the Object is null |
setColumnNumber | public void setColumnNumber(int _columnNumber)(Code) | | Set the columnNumber field on this event locator.
Parameters: _columnNumber - the column number |
setLineNumber | public void setLineNumber(int _lineNumber)(Code) | | Set the lineNumber field on this event locator.
Parameters: _lineNumber - the line number |
setNode | public void setNode(Node _node)(Code) | | Set the Node field on this event locator. Null values are allowed.
Parameters: _node - the Node |
setObject | public void setObject(Object _object)(Code) | | Set the Object field on this event locator. Null values are allowed.
Parameters: _object - the java content object |
setOffset | public void setOffset(int _offset)(Code) | | Set the offset field on this event locator.
Parameters: _offset - the offset |
setURL | public void setURL(URL _url)(Code) | | Set the URL field on this event locator. Null values are allowed.
Parameters: _url - the url |
|
|