Uses of Interface
org.jdom2.JDOMFactory
-
Packages that use JDOMFactory Package Description org.jdom2 Classes representing the components of an XML document.org.jdom2.input Classes to build JDOM documents from various sources.org.jdom2.input.sax Support classes for building JDOM documents and content using SAX parsers.org.jdom2.input.stax Support classes for building JDOM documents and content using StAX readers.org.jdom2.located Extended JDOM Content Classes that contain location coordinates.org.jdom2.transform Classes to help with transformations, based on the JAXP TrAX classes. -
-
Uses of JDOMFactory in org.jdom2
Classes in org.jdom2 that implement JDOMFactory Modifier and Type Class Description classDefaultJDOMFactoryCreates the standard top-level JDOM classes (Element, Document, Comment, etc).classSlimJDOMFactoryThis JDOMFactory instance reduces the amount of memory used by JDOM content.classUncheckedJDOMFactorySpecial factory for building documents without any content or structure checking. -
Uses of JDOMFactory in org.jdom2.input
Methods in org.jdom2.input that return JDOMFactory Modifier and Type Method Description JDOMFactoryDOMBuilder. getFactory()Returns the currentJDOMFactoryin use.JDOMFactorySAXBuilder. getFactory()Deprecated.as it is replaced bySAXBuilder.getJDOMFactory()JDOMFactoryStAXEventBuilder. getFactory()Returns the currentJDOMFactoryin use.JDOMFactoryStAXStreamBuilder. getFactory()Returns the currentJDOMFactoryin use.JDOMFactorySAXBuilder. getJDOMFactory()Returns the currentJDOMFactoryin use.Methods in org.jdom2.input with parameters of type JDOMFactory Modifier and Type Method Description voidDOMBuilder. setFactory(JDOMFactory factory)This sets a custom JDOMFactory for the builder.voidSAXBuilder. setFactory(JDOMFactory factory)Deprecated.as it is replaced bySAXBuilder.setJDOMFactory(JDOMFactory)voidStAXEventBuilder. setFactory(JDOMFactory factory)This sets a custom JDOMFactory for the builder.voidStAXStreamBuilder. setFactory(JDOMFactory factory)This sets a custom JDOMFactory for the builder.voidSAXBuilder. setJDOMFactory(JDOMFactory factory)This sets a custom JDOMFactory for the builder.Constructors in org.jdom2.input with parameters of type JDOMFactory Constructor Description SAXBuilder(XMLReaderJDOMFactory xmlreaderfactory, SAXHandlerFactory handlerfactory, JDOMFactory jdomfactory)Creates a new SAXBuilder. -
Uses of JDOMFactory in org.jdom2.input.sax
Methods in org.jdom2.input.sax that return JDOMFactory Modifier and Type Method Description JDOMFactorySAXHandler. getFactory()Returns the factory used for constructing objects.JDOMFactorySAXBuilderEngine. getJDOMFactory()JDOMFactorySAXEngine. getJDOMFactory()Returns the currentJDOMFactoryin use.Methods in org.jdom2.input.sax with parameters of type JDOMFactory Modifier and Type Method Description SAXHandlerDefaultSAXHandlerFactory. createSAXHandler(JDOMFactory factory)SAXHandlerSAXHandlerFactory. createSAXHandler(JDOMFactory factory)Create a new SAXHandler instance for SAXBuilder to use.Constructors in org.jdom2.input.sax with parameters of type JDOMFactory Constructor Description SAXHandler(JDOMFactory factory)This will create a newSAXHandlerthat listens to SAX events and creates a JDOM Document. -
Uses of JDOMFactory in org.jdom2.input.stax
Methods in org.jdom2.input.stax with parameters of type JDOMFactory Modifier and Type Method Description static DocTypeDTDParser. parse(java.lang.String input, JDOMFactory factory)Parse out a DOCTYPE declaration as supplied by the standard StAX readers. -
Uses of JDOMFactory in org.jdom2.located
Classes in org.jdom2.located that implement JDOMFactory Modifier and Type Class Description classLocatedJDOMFactoryAll Content instances (Element, Comment, CDATA, DocType, Text, EntityRef, and ProcessingInstruction) will implementLocated, and will have the values set appropriately. -
Uses of JDOMFactory in org.jdom2.transform
Methods in org.jdom2.transform that return JDOMFactory Modifier and Type Method Description JDOMFactoryJDOMResult. getFactory()Returns the custom JDOMFactory used to build the transformation result.JDOMFactoryXSLTransformer. getFactory()Returns the custom JDOMFactory used to build the transformation result.Methods in org.jdom2.transform with parameters of type JDOMFactory Modifier and Type Method Description voidJDOMResult. setFactory(JDOMFactory factory)Sets a custom JDOMFactory to use when building the transformation result.voidXSLTransformer. setFactory(JDOMFactory factory)Sets a custom JDOMFactory to use when building the transformation result.
-