Uses of Class
org.jdom.ProcessingInstruction

Packages that use ProcessingInstruction
org.jdom   
org.jdom.input   
org.jdom.output   
 

Uses of ProcessingInstruction in org.jdom
 

Methods in org.jdom that return ProcessingInstruction
protected  ProcessingInstruction ProcessingInstruction.setParent(Element parent)
           This will set the parent of this ProcessingInstruction.
 ProcessingInstruction ProcessingInstruction.detach()
           This detaches the PI from its parent, or does nothing if the PI has no parent.
protected  ProcessingInstruction ProcessingInstruction.setDocument(Document document)
           This sets the Document parent of this PI.
 ProcessingInstruction ProcessingInstruction.setData(String data)
           This will set the raw data for the PI.
 ProcessingInstruction ProcessingInstruction.setData(Map data)
           This will set the name/value pairs within the passed Map as the pairs for the data of this PI.
 ProcessingInstruction ProcessingInstruction.setValue(String name, String value)
           This will set the value for the specified name/value pair.
 ProcessingInstruction Document.getProcessingInstruction(String target)
          Deprecated. Deprecated in beta7, use getContent() and examine for PIs manually
 

Methods in org.jdom with parameters of type ProcessingInstruction
 Document Document.addContent(ProcessingInstruction pi)
           Adds the specified PI to the document.
 boolean Document.removeContent(ProcessingInstruction pi)
           This removes the specified ProcessingInstruction.
 Element Element.addContent(ProcessingInstruction pi)
           This adds a processing instruction as content to this element.
 boolean Element.removeContent(ProcessingInstruction pi)
           This removes the specified ProcessingInstruction.
 

Constructors in org.jdom with parameters of type ProcessingInstruction
IllegalAddException.IllegalAddException(Element base, ProcessingInstruction added, String reason)
           This will create an Exception indicating that the addition of the ProcessingInstruction supplied as content to the supplied element is not allowed.
IllegalAddException.IllegalAddException(Document base, ProcessingInstruction added, String reason)
           This will create an Exception indicating that the addition of the ProcessingInstruction supplied as content to the supplied document is not allowed.
 

Uses of ProcessingInstruction in org.jdom.input
 

Methods in org.jdom.input that return ProcessingInstruction
 ProcessingInstruction DefaultJDOMFactory.processingInstruction(String target, Map data)
           
 ProcessingInstruction DefaultJDOMFactory.processingInstruction(String target, String data)
           
 ProcessingInstruction JDOMFactory.processingInstruction(String target, Map data)
           This will create a new ProcessingInstruction with the specified target and data.
 ProcessingInstruction JDOMFactory.processingInstruction(String target, String data)
           This will create a new ProcessingInstruction with the specified target and data.
 

Uses of ProcessingInstruction in org.jdom.output
 

Methods in org.jdom.output with parameters of type ProcessingInstruction
 void XMLOutputter.output(ProcessingInstruction pi, Writer out)
           Print out a ProcessingInstruction
 void XMLOutputter.output(ProcessingInstruction pi, OutputStream out)
           Print out a ProcessingInstruction
 String XMLOutputter.outputString(ProcessingInstruction pi)
          Return a string representing a PI.
protected  void XMLOutputter.printProcessingInstruction(ProcessingInstruction pi, Writer out)
           This will write the processing instruction to the specified writer.
 



Copyright © 2001 Jason Hunter, Brett McLaughlin. All Rights Reserved.