| java.lang.Object net.sf.saxon.om.VirtualCopy net.sf.saxon.om.VirtualDocumentCopy
Method Summary | |
public String[] | getUnparsedEntity(String name) Get the unparsed entity with a given name
Parameters: name - the name of the entity if the entity exists, return an array of two Strings, the firstholding the system ID of the entity, the second holding the publicID if there is one, or null if not. | public NodeInfo | selectID(String id) | public void | setConfiguration(Configuration config) Set the configuration, which defines the name pool used for all names in this document. |
getUnparsedEntity | public String[] getUnparsedEntity(String name)(Code) | | Get the unparsed entity with a given name
Parameters: name - the name of the entity if the entity exists, return an array of two Strings, the firstholding the system ID of the entity, the second holding the publicID if there is one, or null if not. If the entity does not exist,return null. |
selectID | public NodeInfo selectID(String id)(Code) | | Get the element with a given ID, if any
Parameters: id - the required ID value the element with the given ID, or null if there is no such IDpresent (or if the parser has not notified attributes as being oftype ID) |
setConfiguration | public void setConfiguration(Configuration config)(Code) | | Set the configuration, which defines the name pool used for all names in this document.
This is always called after a new document has been created.
Parameters: config - The configuration to be used |
|
|