Uses of Interface
org.dom4j.ProcessingInstruction
-
Packages that use ProcessingInstruction Package Description org.dom4j Defines the XML Document Object Model in Java interfaces together with some helper classes.org.dom4j.dom An implementation of the dom4j API which also supports the W3C object model.org.dom4j.io Provides input and output via SAX and DOM together with writing dom4j objects to streams as XML text.org.dom4j.tree Contains the default implementations of the dom4j Document Object Model together with some helpful base classes for those wishing to implement their own document object model.org.dom4j.util A collection of utility classes for the dom4j API. -
-
Uses of ProcessingInstruction in org.dom4j
Methods in org.dom4j that return ProcessingInstruction Modifier and Type Method Description ProcessingInstructionDocumentFactory. createProcessingInstruction(String target, String data)ProcessingInstructionDocumentFactory. createProcessingInstruction(String target, Map<String,String> data)static ProcessingInstructionDocumentHelper. createProcessingInstruction(String pi, String d)static ProcessingInstructionDocumentHelper. createProcessingInstruction(String pi, Map<String,String> data)ProcessingInstructionBranch. processingInstruction(String target)DOCUMENT ME!Methods in org.dom4j that return types with arguments of type ProcessingInstruction Modifier and Type Method Description List<ProcessingInstruction>Branch. processingInstructions()Returns a list of all the processing instructions in this branch.List<ProcessingInstruction>Branch. processingInstructions(String target)Returns a list of the processing instructions for the given target.Methods in org.dom4j with parameters of type ProcessingInstruction Modifier and Type Method Description voidBranch. add(ProcessingInstruction pi)Adds the givenProcessingInstructionto this branch.booleanBranch. remove(ProcessingInstruction pi)Removes the givenProcessingInstructionif the node is an immediate child of this branch.voidVisitor. visit(ProcessingInstruction node)Visits the givenProcessingInstructionvoidVisitorSupport. visit(ProcessingInstruction node)Method parameters in org.dom4j with type arguments of type ProcessingInstruction Modifier and Type Method Description voidBranch. setProcessingInstructions(List<ProcessingInstruction> listOfPIs)Sets all the processing instructions for this branch -
Uses of ProcessingInstruction in org.dom4j.dom
Classes in org.dom4j.dom that implement ProcessingInstruction Modifier and Type Class Description classDOMProcessingInstructionDOMProcessingInstructionimplements a ProcessingInstruction node which supports the W3C DOM API.Methods in org.dom4j.dom that return ProcessingInstruction Modifier and Type Method Description ProcessingInstructionDOMDocumentFactory. createProcessingInstruction(String target, String data)ProcessingInstructionDOMDocumentFactory. createProcessingInstruction(String target, Map<String,String> data) -
Uses of ProcessingInstruction in org.dom4j.io
Methods in org.dom4j.io that return ProcessingInstruction Modifier and Type Method Description ProcessingInstructionSTAXEventReader. createProcessingInstruction(ProcessingInstruction pi)Constructs a new DOM4J ProcessingInstruction from the provided StAX ProcessingInstruction event.ProcessingInstructionSTAXEventReader. readProcessingInstruction(XMLEventReader reader)Constructs a DOM4J ProcessingInstruction from the provided event stream.Methods in org.dom4j.io with parameters of type ProcessingInstruction Modifier and Type Method Description protected voidDOMWriter. appendDOMTree(Document domDoc, Node domCurrent, ProcessingInstruction pi)ProcessingInstructionSTAXEventWriter. createProcessingInstruction(ProcessingInstruction pi)Constructs a STAXProcessingInstructionevent from a DOM4JProcessingInstruction.voidSAXWriter. write(ProcessingInstruction pi)Generates SAX events for the given ProcessingInstructionvoidXMLWriter. write(ProcessingInstruction processingInstruction)Writes the givenProcessingInstruction.voidSTAXEventWriter. writeProcessingInstruction(ProcessingInstruction pi)Writes a DOM4JProcessingInstructionto the stream.protected voidXMLWriter. writeProcessingInstruction(ProcessingInstruction pi) -
Uses of ProcessingInstruction in org.dom4j.tree
Classes in org.dom4j.tree that implement ProcessingInstruction Modifier and Type Class Description classAbstractProcessingInstructionAbstractProcessingInstructionis an abstract base class for tree implementors to use for implementation inheritence.classDefaultProcessingInstructionDefaultProcessingInstructionis the default Processing Instruction implementation.classFlyweightProcessingInstructionFlyweightProcessingInstructionis a Flyweight pattern implementation of a singly linked, read-only XML Processing Instruction.Methods in org.dom4j.tree that return ProcessingInstruction Modifier and Type Method Description ProcessingInstructionAbstractElement. processingInstruction(String target)ProcessingInstructionDefaultDocument. processingInstruction(String target)ProcessingInstructionDefaultElement. processingInstruction(String target)Methods in org.dom4j.tree that return types with arguments of type ProcessingInstruction Modifier and Type Method Description List<ProcessingInstruction>AbstractElement. processingInstructions()List<ProcessingInstruction>AbstractElement. processingInstructions(String target)List<ProcessingInstruction>DefaultDocument. processingInstructions()List<ProcessingInstruction>DefaultDocument. processingInstructions(String target)List<ProcessingInstruction>DefaultElement. processingInstructions()List<ProcessingInstruction>DefaultElement. processingInstructions(String target)Methods in org.dom4j.tree with parameters of type ProcessingInstruction Modifier and Type Method Description voidAbstractBranch. add(ProcessingInstruction pi)voidAbstractElement. add(ProcessingInstruction pi)booleanAbstractBranch. remove(ProcessingInstruction pi)booleanAbstractElement. remove(ProcessingInstruction pi)Method parameters in org.dom4j.tree with type arguments of type ProcessingInstruction Modifier and Type Method Description voidAbstractBranch. setProcessingInstructions(List<ProcessingInstruction> listOfPIs) -
Uses of ProcessingInstruction in org.dom4j.util
Methods in org.dom4j.util that return ProcessingInstruction Modifier and Type Method Description ProcessingInstructionProxyDocumentFactory. createProcessingInstruction(String target, String data)ProcessingInstructionProxyDocumentFactory. createProcessingInstruction(String target, Map<String,String> data)Methods in org.dom4j.util with parameters of type ProcessingInstruction Modifier and Type Method Description intNodeComparator. compare(ProcessingInstruction n1, ProcessingInstruction n2)
-