A D G I N O P R S T U X

A

AbstractTagParser<B> - Class in org.sourceprojects.xmlparser
Abstract implementation of TagDefinitionParser with basic handling of some of the needed method structures.
AbstractTagParser() - Constructor for class org.sourceprojects.xmlparser.AbstractTagParser
 
addTagDefinitionParser(TagDefinitionParser<B>) - Method in interface org.sourceprojects.xmlparser.XmlParser
Adds a TagDefinitionParser implementation to the instance of XmlParser
addTagDefinitionParsers(TagDefinitionParser<B>[]) - Method in interface org.sourceprojects.xmlparser.XmlParser
Adds a bunch of TagDefinitionParser implementations to the instance of XmlParser

D

DefinitionBuilder - Interface in org.sourceprojects.xmlparser
The interface for a DefinitionParser.

G

getContextObject() - Method in interface org.sourceprojects.xmlparser.ParserContext
Returns the context object of type T for being available while parsing
getDocument() - Method in interface org.sourceprojects.xmlparser.DefinitionBuilder
Returns the Document instance given by the XmlParser implementation
getErrorHandler() - Method in interface org.sourceprojects.xmlparser.XmlParser
Returns an instance of ErrorHandler
getInput(String, String, String, String, String) - Method in interface org.sourceprojects.xmlparser.NamespaceResolver
Returns an implementation of LSInput for the queried namespace
getNamespace() - Method in interface org.sourceprojects.xmlparser.TagDefinitionParser
Returns the namespace URI this TagDefinitionParser implementation handles
getNamespaceURI() - Method in interface org.sourceprojects.xmlparser.NamespaceResolver
Returns the namespace URI
getParserContext() - Method in interface org.sourceprojects.xmlparser.XmlParser
Returns an instance of ParserContext
getParserState() - Method in interface org.sourceprojects.xmlparser.ParserContext
Returns the state string to identify different states of parsing on same TagDefinitionParser implementations for all parsing reasons
getResourceResolver() - Method in interface org.sourceprojects.xmlparser.XmlParser
Returns an instance of ResourceResolver
getTags() - Method in interface org.sourceprojects.xmlparser.TagDefinitionParser
Returns a string array with all tags handled by this TagDefinitionParser implementation

I

isShowWarning() - Method in interface org.sourceprojects.xmlparser.ResourceResolver
Returns if warnings should be shown
isValidatingSchema() - Method in interface org.sourceprojects.xmlparser.XmlParser
Returns if XmlParser implementation should be aware of schema errors on reading Xml documents
Not all SAX parser implementations are able to do schema validation.

N

NamespaceResolver - Interface in org.sourceprojects.xmlparser
Interface for NamespaceResolver implementations to resolve namespaces to other URLs than the default ones.
newInstance() - Static method in class org.sourceprojects.xmlparser.ResourceResolverFactory
Obtain a new instance of a ResourceResolver
Implementation used for ResourceResolver is the standard one.
newInstance(ClassLoader) - Static method in class org.sourceprojects.xmlparser.ResourceResolverFactory
Obtain a new instance of a ResourceResolver
Implementation used for ResourceResolver is the standard one.
newInstance(String, ClassLoader) - Static method in class org.sourceprojects.xmlparser.ResourceResolverFactory
Obtain a new instance of a ResourceResolver
Implementation used for ResourceResolver must be given as parameter.
newInstance() - Static method in class org.sourceprojects.xmlparser.XmlParserFactory
Obtain a new instance of a XmlParser .
newInstance(ClassLoader) - Static method in class org.sourceprojects.xmlparser.XmlParserFactory
Obtain a new instance of a XmlParser .
newInstance(String, String, ClassLoader) - Static method in class org.sourceprojects.xmlparser.XmlParserFactory
Obtain a new instance of a XmlParser .
newInstance(String, String, ClassLoader, boolean) - Static method in class org.sourceprojects.xmlparser.XmlParserFactory
Obtain a new instance of a XmlParser .
newParserInstance() - Method in interface org.sourceprojects.xmlparser.XmlParserOsgiFactory
Returns a new instance of the XmlParser on OSGi environments
newResourceResolverInstance() - Method in interface org.sourceprojects.xmlparser.XmlParserOsgiFactory
Returns a new instance of the ResourceResolver on OSGi environments

O

org.sourceprojects.xmlparser - package org.sourceprojects.xmlparser
Provides classes needed for XmlParser.
org.sourceprojects.xmlparser.exceptions - package org.sourceprojects.xmlparser.exceptions
Provides classes for exceptions used in XmlParser

P

parse(Reader) - Method in interface org.sourceprojects.xmlparser.XmlParser
Starts parsing Xml data from given Reader implementation
parse(String) - Method in interface org.sourceprojects.xmlparser.XmlParser
Starts parsing Xml data from given String
parse(InputStream) - Method in interface org.sourceprojects.xmlparser.XmlParser
Starts parsing Xml data from given InputStream implementation
parse(File) - Method in interface org.sourceprojects.xmlparser.XmlParser
Starts parsing Xml data from given File
parseElement(Element, ParserContext<B>, DefinitionBuilder) - Method in class org.sourceprojects.xmlparser.AbstractTagParser
 
parseElement(Element, String, ParserContext<B>, DefinitionBuilder) - Method in class org.sourceprojects.xmlparser.AbstractTagParser
 
parseElement(Element, String, QName, ParserContext<B>, DefinitionBuilder) - Method in class org.sourceprojects.xmlparser.AbstractTagParser
 
parseElement(Element, ParserContext<B>, DefinitionBuilder) - Method in interface org.sourceprojects.xmlparser.TagDefinitionParser
Parses an element.
parseElement(Element, String, ParserContext<B>, DefinitionBuilder) - Method in interface org.sourceprojects.xmlparser.TagDefinitionParser
Parses an element.
parseElement(Element, String, QName, ParserContext<B>, DefinitionBuilder) - Method in interface org.sourceprojects.xmlparser.TagDefinitionParser
Parses an element.
ParserContext<T> - Interface in org.sourceprojects.xmlparser
Interface for ParserContext implementations.

R

registerNamespaceResolver(NamespaceResolver) - Method in interface org.sourceprojects.xmlparser.ResourceResolver
Registers a NamespaceResolver for this ResourceResolver
removeTagDefinitionParser(TagDefinitionParser<B>) - Method in interface org.sourceprojects.xmlparser.XmlParser
Removes a TagDefinitionParser implementation from the instance of XmlParser
removeTagDefinitionParsers(TagDefinitionParser<B>[]) - Method in interface org.sourceprojects.xmlparser.XmlParser
Removes a bunch of TagDefinitionParser implementations from the instance of XmlParser
ResourceResolver - Interface in org.sourceprojects.xmlparser
Interface to define ResourceResolver.
ResourceResolverFactory - Class in org.sourceprojects.xmlparser
Defines a factory API that enables applications to obtain instances of ResourceResolver either by given standard implmentation or by configuring own implementation.
ResourceResolverFactory() - Constructor for class org.sourceprojects.xmlparser.ResourceResolverFactory
 

S

setContextObject(T) - Method in interface org.sourceprojects.xmlparser.ParserContext
Sets the context object of type T for being available while parsing
setErrorHandler(ErrorHandler) - Method in interface org.sourceprojects.xmlparser.XmlParser
Sets an instance of of ErrorHandler
setParserContext(ParserContext<B>) - Method in interface org.sourceprojects.xmlparser.XmlParser
Sets an instance of ParserContext
setParserState(String) - Method in interface org.sourceprojects.xmlparser.ParserContext
Sets the state string to identify different states for parsing on same TagDefinitionParser implementations for all parsing reasons
setResourceResolver(ResourceResolver) - Method in interface org.sourceprojects.xmlparser.XmlParser
Sets an instance of ResourceResolver
setShowWarning(boolean) - Method in interface org.sourceprojects.xmlparser.ResourceResolver
Sets if warnins should be shown
setValidatingSchema(boolean) - Method in interface org.sourceprojects.xmlparser.XmlParser
Sets if XmlParser implementation should be aware of schema errors on reading Xml documents.
STANDARD_RESOURCERESOLVER_CLASS - Static variable in class org.sourceprojects.xmlparser.ResourceResolverFactory
Classname for the standard ResourceResolver class to be created if no special implementation is given
STANDARD_XMLPARSER_CLASS - Static variable in class org.sourceprojects.xmlparser.XmlParserFactory
Classname for the standard XmlParser class to be created if no special implementation is given
start(BundleContext) - Method in class org.sourceprojects.xmlparser.XmlParserActivator
 
stop(BundleContext) - Method in class org.sourceprojects.xmlparser.XmlParserActivator
 

T

TagDefinitionParser<B> - Interface in org.sourceprojects.xmlparser
Interface for TagDefinitionParsers to implement.
transform(Reader) - Method in interface org.sourceprojects.xmlparser.XmlParser
Starts transforming Xml data from given Reader to new Document instance
transform(String) - Method in interface org.sourceprojects.xmlparser.XmlParser
Starts transforming Xml data from given String to new Document instance
transform(InputStream) - Method in interface org.sourceprojects.xmlparser.XmlParser
Starts transforming Xml data from given InputStream to new Document instance
transform(File) - Method in interface org.sourceprojects.xmlparser.XmlParser
Starts transforming Xml data from given File to new Document instance
transformElement(Element, ParserContext<B>, DefinitionBuilder) - Method in class org.sourceprojects.xmlparser.AbstractTagParser
 
transformElement(Element, String, ParserContext<B>, DefinitionBuilder) - Method in class org.sourceprojects.xmlparser.AbstractTagParser
 
transformElement(Element, String, QName, ParserContext<B>, DefinitionBuilder) - Method in class org.sourceprojects.xmlparser.AbstractTagParser
 
transformElement(Element, ParserContext<B>, DefinitionBuilder) - Method in interface org.sourceprojects.xmlparser.TagDefinitionParser
Transforms an element.
transformElement(Element, String, ParserContext<B>, DefinitionBuilder) - Method in interface org.sourceprojects.xmlparser.TagDefinitionParser
Transforms an element.
transformElement(Element, String, QName, ParserContext<B>, DefinitionBuilder) - Method in interface org.sourceprojects.xmlparser.TagDefinitionParser
Transforms an element.

U

unregisterNamespaceResolver(NamespaceResolver) - Method in interface org.sourceprojects.xmlparser.ResourceResolver
Removes a NamespaceResolver by given instance
unregisterNamespaceResolver(String) - Method in interface org.sourceprojects.xmlparser.ResourceResolver
Removes a NamespaceResolver by given namespace URI

X

XmlParser<B> - Interface in org.sourceprojects.xmlparser
Interface definition of XmlParser.
XmlParserActivator - Class in org.sourceprojects.xmlparser
OSGi BundleActivator implementation for using XmlParser in OSGi environments.
XmlParserActivator() - Constructor for class org.sourceprojects.xmlparser.XmlParserActivator
 
XmlParserFactory - Class in org.sourceprojects.xmlparser
Defines a factory API that enables applications to obtain instances of the XmlParser either by given standard implementations or by configuring own implementations.
XmlParserFactory() - Constructor for class org.sourceprojects.xmlparser.XmlParserFactory
 
XmlParserInitializationException - Exception in org.sourceprojects.xmlparser.exceptions
An exception class that is thrown as wrapped exception on instantiation of ResourceResolver and XmlParser if some exception occurs
XmlParserInitializationException() - Constructor for exception org.sourceprojects.xmlparser.exceptions.XmlParserInitializationException
 
XmlParserInitializationException(String, Throwable) - Constructor for exception org.sourceprojects.xmlparser.exceptions.XmlParserInitializationException
 
XmlParserInitializationException(String) - Constructor for exception org.sourceprojects.xmlparser.exceptions.XmlParserInitializationException
 
XmlParserInitializationException(Throwable) - Constructor for exception org.sourceprojects.xmlparser.exceptions.XmlParserInitializationException
 
XmlParserOsgiFactory - Interface in org.sourceprojects.xmlparser
Service interface for factory service in OSGi environments.
XmlParserParsingException - Exception in org.sourceprojects.xmlparser.exceptions
An exception class that is thrown as wrapped exception on parsing / transforming xml Documents on XmlParser implementations
XmlParserParsingException() - Constructor for exception org.sourceprojects.xmlparser.exceptions.XmlParserParsingException
 
XmlParserParsingException(String, Throwable) - Constructor for exception org.sourceprojects.xmlparser.exceptions.XmlParserParsingException
 
XmlParserParsingException(String) - Constructor for exception org.sourceprojects.xmlparser.exceptions.XmlParserParsingException
 
XmlParserParsingException(Throwable) - Constructor for exception org.sourceprojects.xmlparser.exceptions.XmlParserParsingException
 

A D G I N O P R S T U X

Copyright © 2010. All Rights Reserved.