Package net.sf.saxon.event
Class PipelineConfiguration
java.lang.Object
net.sf.saxon.event.PipelineConfiguration
A PipelineConfiguration sets options that apply to all the operations in a pipeline.
Unlike the global Configuration, these options are always local to a process.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionGet the controller associated with this pipelineConfigurationint
Get the user-defined SchemaURIResolver for resolving URIs used in "import schema" declarations; returns null if none has been explicitly set.boolean
void
setConfiguration
(Configuration config) void
setController
(Controller controller) void
setErrorListener
(ErrorListener errorListener) void
setHostLanguage
(int language) void
setLocationProvider
(LocationProvider locationProvider) void
setSchemaURIResolver
(SchemaURIResolver resolver) Set a user-defined SchemaURIResolver for resolving URIs used in "import schema" declarations.void
setSerializing
(boolean isSerializing) void
setURIResolver
(URIResolver uriResolver)
-
Constructor Details
-
PipelineConfiguration
public PipelineConfiguration() -
PipelineConfiguration
-
-
Method Details
-
getConfiguration
-
setConfiguration
-
getLocationProvider
-
setLocationProvider
-
getErrorListener
-
setErrorListener
-
getURIResolver
-
setURIResolver
-
setSchemaURIResolver
Set a user-defined SchemaURIResolver for resolving URIs used in "import schema" declarations. -
getSchemaURIResolver
Get the user-defined SchemaURIResolver for resolving URIs used in "import schema" declarations; returns null if none has been explicitly set. -
setController
-
setHostLanguage
public void setHostLanguage(int language) -
getHostLanguage
public int getHostLanguage() -
setSerializing
public void setSerializing(boolean isSerializing) -
isSerializing
public boolean isSerializing() -
getController
Get the controller associated with this pipelineConfiguration- Returns:
- the controller if it is known; otherwise null.
-