|
Oxygen XML Editor 12.2 Author API | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface XMLUtilAccess
XML Utilities
Field Summary | |
---|---|
static int |
TRANSFORMER_SAXON_6
Saxon 6 transformer |
static int |
TRANSFORMER_SAXON_ENTERPRISE_EDITION
Saxon 9 Enterprise Edition transformer type (full extensions support + schema aware). |
static int |
TRANSFORMER_SAXON_HOME_EDITION
Saxon 9 Home Edition transformer type (no extensions support). |
static int |
TRANSFORMER_SAXON_PROFESSIONAL_EDITION
Saxon 9 Professional Edition transformer type (full extensions support). |
static int |
TRANSFORMER_XALAN
Xalan transformer |
Method Summary | |
---|---|
javax.xml.transform.Transformer |
createSaxon9HEXSLTTransformerWithExtensions(javax.xml.transform.Source styleSource,
ExtensionFunctionDefinition[] saxonExtensions)
Create a Saxon 9 Home Edition transformer with the specified extension functions. |
javax.xml.transform.Transformer |
createXQueryTransformer(javax.xml.transform.Source xquerySource,
java.net.URL[] extensionJars,
int transformerType)
Create a new XQuery transformer. |
javax.xml.transform.Transformer |
createXQueryTransformer(javax.xml.transform.Source xquerySource,
java.net.URL[] extensionJars,
int transformerType,
boolean useOxygenOptions)
Create a new XQuery transformer. |
javax.xml.transform.Transformer |
createXSLTTransformer(javax.xml.transform.Source styleSource,
java.net.URL[] extensionJars,
int transformerType)
Create a new XSLT transformer. |
javax.xml.transform.Transformer |
createXSLTTransformer(javax.xml.transform.Source styleSource,
java.net.URL[] extensionJars,
int transformerType,
boolean useOxygenOptions)
Create a new XSLT transformer. |
java.lang.String |
escapeAttributeValue(java.lang.String attributeValue)
Escape an attribute value so that the XML document remains well-formed. |
org.xml.sax.EntityResolver |
getEntityResolver()
Get the same entity resolver Oxygen sets to its constructed SAX Parsers (which looks into the Oxygen options and document types for catalogs). |
javax.xml.transform.URIResolver |
getURIResolver()
Get the same URI resolver Oxygen sets to its constructed XSLT transformers (which looks into the Oxygen options and document types for catalogs). |
org.xml.sax.XMLReader |
newNonValidatingXMLReader()
Creates an XMLReader without validation. |
XMLReaderWithGrammar |
newNonValidatingXMLReader(java.lang.Object grammarCacheToken)
Creates an XMLReader without validation and with the possibility to reuse the grammar pool. |
void |
resetXMLCatalogs()
Reset the loaded XML catalogs. |
java.net.URL |
resolvePathThroughCatalogs(java.net.URL baseURL,
java.lang.String relativeLocation,
boolean entityResolve,
boolean uriResolve)
Try to resolve a relative location to an absolute path by using the XML catalogs. |
Field Detail |
---|
static final int TRANSFORMER_XALAN
static final int TRANSFORMER_SAXON_6
static final int TRANSFORMER_SAXON_HOME_EDITION
static final int TRANSFORMER_SAXON_PROFESSIONAL_EDITION
static final int TRANSFORMER_SAXON_ENTERPRISE_EDITION
Method Detail |
---|
javax.xml.transform.Transformer createXSLTTransformer(javax.xml.transform.Source styleSource, java.net.URL[] extensionJars, int transformerType) throws javax.xml.transform.TransformerConfigurationException
styleSource
- The source XSLextensionJars
- Jars with extension libraries which can be used by the transformer, can be null
transformerType
- The type of the transformer to create, one of the constants defined in this class starting with TRANSFORMER_
javax.xml.transform.TransformerConfigurationException
- An Exception
is thrown if an error occurs during parsing of the
source
.javax.xml.transform.Transformer createXSLTTransformer(javax.xml.transform.Source styleSource, java.net.URL[] extensionJars, int transformerType, boolean useOxygenOptions) throws javax.xml.transform.TransformerConfigurationException
styleSource
- The source XSLextensionJars
- Jars with extension libraries which can be used by the transformer. Can be null
.transformerType
- The type of the transformer to create, one of the constants defined in this class starting with TRANSFORMER_useOxygenOptions
- If true
the options set in the oXygen preferences are used. Otherwise no options are set to the transformers.
javax.xml.transform.TransformerConfigurationException
- An Exception
is thrown if an error
occurs during parsing of the source
.Please note that this API is not marked as final and it can change in one of the next versions of the application. If you have suggestions, comments about it, please let us know.
javax.xml.transform.Transformer createSaxon9HEXSLTTransformerWithExtensions(javax.xml.transform.Source styleSource, ExtensionFunctionDefinition[] saxonExtensions) throws javax.xml.transform.TransformerConfigurationException
Create a Saxon 9 Home Edition transformer with the specified extension functions. This is necessary when the extension functions cannot be called by reflection because there is no license for the commercial version of Saxon 9.
The Saxon 9 options set in the oXygen preferences are not used.
styleSource
- The source XSLsaxonExtensions
- The list of Saxon 9 extensions.
javax.xml.transform.TransformerConfigurationException
- An Exception
is thrown if an error
occurs during parsing of the source
.Please note that this API is not marked as final and it can change in one of the next versions of the application. If you have suggestions, comments about it, please let us know.
javax.xml.transform.Transformer createXQueryTransformer(javax.xml.transform.Source xquerySource, java.net.URL[] extensionJars, int transformerType) throws javax.xml.transform.TransformerConfigurationException
xquerySource
- The source XQuery fileextensionJars
- Jars with extension libraries which can be used by the transformer, can be null
transformerType
- The type of the transformer to create, one of the constants:
javax.xml.transform.TransformerConfigurationException
- An Exception
is thrown if an error
occurs during parsing of the source
.javax.xml.transform.Transformer createXQueryTransformer(javax.xml.transform.Source xquerySource, java.net.URL[] extensionJars, int transformerType, boolean useOxygenOptions) throws javax.xml.transform.TransformerConfigurationException
xquerySource
- The source XQuery fileextensionJars
- Jars with extension libraries which can be used by the transformer.
Can be null
.transformerType
- The type of the transformer to create, one of the constants:
TRANSFORMER_SAXON_HOME_EDITION
,
TRANSFORMER_SAXON_PROFESSIONAL_EDITION
or
TRANSFORMER_SAXON_ENTERPRISE_EDITION
useOxygenOptions
- If true
the options set in the oXygen preferences are used.
Otherwise no options are set to the transformers.
javax.xml.transform.TransformerConfigurationException
- An Exception
is thrown if an error
occurs during parsing of the source
.Please note that this API is not marked as final and it can change in one of the next versions of the application. If you have suggestions, comments about it, please let us know.
void resetXMLCatalogs()
java.net.URL resolvePathThroughCatalogs(java.net.URL baseURL, java.lang.String relativeLocation, boolean entityResolve, boolean uriResolve)
baseURL
- The URL of the current opened XML file.relativeLocation
- The relative location to be resolved.entityResolve
- true
if the catalog entity resolver should be used.uriResolve
- true
if the catalog URI resolver should be used.
java.lang.String escapeAttributeValue(java.lang.String attributeValue)
attributeValue
- The attribute value.
null
.org.xml.sax.XMLReader newNonValidatingXMLReader()
XMLReader
without validation.
XMLReaderWithGrammar newNonValidatingXMLReader(java.lang.Object grammarCacheToken)
XMLReader
without validation and with the possibility to reuse the grammar pool.
If you are parsing XML fragments with DOCTYPE many times in your operation this method will be faster than
the newNonValidatingXMLReader()
method.
String xml = new String("<!DOCTYPE map PUBLIC \"-//OASIS//DTD DITA Map//EN\" \"map.dtd\">\n" +
"<map/>");
Object grammarToken = null;
for (int i = 0; i < 100000; i++) {
XMLReaderWithGrammar readerAndCache = authorAccess.getXMLUtilAccess().newNonValidatingXMLReader(grammarToken);
XMLReader reader = readerAndCache.getXmlReader();
grammarToken = readerAndCache.getGrammarCache();
reader.parse(new InputSource(new StringReader(xml)));
}
grammarCacheToken
- The grammar cache token, if not null, it will be used to cache the grammar pool.
org.xml.sax.EntityResolver getEntityResolver()
Please note that this API is not marked as final and it can change in one of the next versions of the application. If you have suggestions, comments about it, please let us know.
javax.xml.transform.URIResolver getURIResolver()
Please note that this API is not marked as final and it can change in one of the next versions of the application. If you have suggestions, comments about it, please let us know.
|
Oxygen XML Editor 12.2 Author API | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |