Package net.sf.saxon.event
Class PIGrabber
java.lang.Object
net.sf.saxon.event.SequenceReceiver
net.sf.saxon.event.ProxyReceiver
net.sf.saxon.event.PIGrabber
The
PIGrabber class is a ProxyReceiver that looks for xml-stylesheet processing
instructions and tests whether they match specified criteria; for those that do, it creates
a Source object referring to the relevant stylesheet-
Field Summary
Fields inherited from class net.sf.saxon.event.ProxyReceiver
nextReceiverFields inherited from class net.sf.saxon.event.SequenceReceiver
pipelineConfiguration, previousAtomic, systemIdFields inherited from interface javax.xml.transform.Result
PI_DISABLE_OUTPUT_ESCAPING, PI_ENABLE_OUTPUT_ESCAPING -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionSource[]Return list of stylesheets that matched, as an array of Source objectsbooleanDetermine whether the parse terminated because the first start element tag was foundvoidprocessingInstruction(String target, UnicodeString data, Location locationId, int properties) Handle xml-stylesheet PIvoidsetBaseURI(String uri) Set the base URIvoidsetCriteria(String media, String title) Define the matching criteriavoidsetFactory(Configuration config) voidsetResourceResolver(ResourceResolver resolver) Set the URI resolver to be used for the href attributevoidstartElement(NodeName elemName, SchemaType type, AttributeMap attributes, NamespaceMap namespaces, Location location, int properties) Abort the parse when the first start element tag is foundMethods inherited from class net.sf.saxon.event.ProxyReceiver
append, characters, close, comment, endDocument, endElement, getNamePool, getNextReceiver, open, setPipelineConfiguration, setSystemId, setUnderlyingReceiver, setUnparsedEntity, startDocument, usesTypeAnnotationsMethods inherited from class net.sf.saxon.event.SequenceReceiver
append, decompose, flatten, getConfiguration, getErrorCodeForDecomposingFunctionItems, getPipelineConfiguration, getSystemId, handlesAppend
-
Constructor Details
-
PIGrabber
-
-
Method Details
-
setFactory
-
setCriteria
Define the matching criteria- Parameters:
media- the required media. Note that Saxon does not implement the complex CSS3-based syntax for media queries. By default, the media value is simply ignored. An algorithm for comparing the requested media with the declared media can be defined using the methodConfiguration.setMediaQueryEvaluator(Comparator).title- the required title
-
setBaseURI
Set the base URI- Parameters:
uri- the base URI
-
setResourceResolver
Set the URI resolver to be used for the href attribute- Parameters:
resolver- the URI resolver
-
startElement
public void startElement(NodeName elemName, SchemaType type, AttributeMap attributes, NamespaceMap namespaces, Location location, int properties) throws XPathException Abort the parse when the first start element tag is found- Specified by:
startElementin interfaceReceiver- Overrides:
startElementin classProxyReceiver- Parameters:
elemName- the name of the element.type- the type annotation of the element.attributes- the attributes of this elementnamespaces- the in-scope namespaces of this element: generally this is all the in-scope namespaces, without relying on inheriting namespaces from parent elementslocation- an object providing information about the module, line, and column where the node originatedproperties- bit-significant properties of the element node. If there are no relevant properties, zero is supplied. The definitions of the bits are in classReceiverOption- Throws:
XPathException- if an error occurs
-
isTerminated
public boolean isTerminated()Determine whether the parse terminated because the first start element tag was found- Returns:
- true if the parse was terminated when the document element was encountered (as distinct from being terminated because of some exception condition, for example a parse error)
-
processingInstruction
public void processingInstruction(String target, UnicodeString data, Location locationId, int properties) throws XPathException Handle xml-stylesheet PI- Specified by:
processingInstructionin interfaceReceiver- Overrides:
processingInstructionin classProxyReceiver- Parameters:
target- The PI name. This must be a legal name (it will not be checked).data- The data portion of the processing instructionlocationId- provides information such as line number and system ID.properties- Additional information about the PI.- Throws:
XPathException- if an error occurs
-
getAssociatedStylesheets
Return list of stylesheets that matched, as an array of Source objects- Returns:
- null if there were no matching stylesheets.
- Throws:
XPathException- if a URI cannot be resolvedTransformerException
-