Uses of Class
org.cdmckay.coffeedom.ProcessingInstruction

Packages that use ProcessingInstruction
org.cdmckay.coffeedom Classes to represent the components of an XML document. 
org.cdmckay.coffeedom.output Classes to output CoffeeDOM documents to various destinations. 
 

Uses of ProcessingInstruction in org.cdmckay.coffeedom
 

Methods in org.cdmckay.coffeedom that return ProcessingInstruction
 ProcessingInstruction ProcessingInstruction.clone()
          This will return a clone of this ProcessingInstruction.
 ProcessingInstruction ProcessingInstruction.detach()
           
 ProcessingInstruction UncheckedCoffeeDOMFactory.processingInstruction(String target, Map<String,String> data)
           
 ProcessingInstruction DefaultCoffeeDOMFactory.processingInstruction(String target, Map<String,String> data)
           
 ProcessingInstruction CoffeeDOMFactory.processingInstruction(String target, Map<String,String> data)
          This will create a new ProcessingInstruction with the specified target and data.
 ProcessingInstruction UncheckedCoffeeDOMFactory.processingInstruction(String target, String data)
           
 ProcessingInstruction DefaultCoffeeDOMFactory.processingInstruction(String target, String data)
           
 ProcessingInstruction CoffeeDOMFactory.processingInstruction(String target, String data)
          This will create a new ProcessingInstruction with the specified target and data.
 ProcessingInstruction ProcessingInstruction.setData(Map<String,String> data)
          This will set the name/value pairs within the passed Map as the pairs for the data of this PI.
 ProcessingInstruction ProcessingInstruction.setData(String data)
          This will set the raw data for the PI.
protected  ProcessingInstruction ProcessingInstruction.setParent(Parent parent)
           
 ProcessingInstruction ProcessingInstruction.setPseudoAttribute(String name, String value)
          This will set a pseudo attribute with the given name and value.
 ProcessingInstruction ProcessingInstruction.setTarget(String newTarget)
          This will set the target for the PI.
 

Uses of ProcessingInstruction in org.cdmckay.coffeedom.output
 

Methods in org.cdmckay.coffeedom.output with parameters of type ProcessingInstruction
 void XMLOutputter.output(ProcessingInstruction pi, OutputStream out)
          Print out a ProcessingInstruction.
 void XMLOutputter.output(ProcessingInstruction pi, Writer out)
          Print out a ProcessingInstruction.
 String XMLOutputter.outputString(ProcessingInstruction pi)
          Return a string representing a PI.
protected  void XMLOutputter.printProcessingInstruction(Writer out, ProcessingInstruction pi)
          This will handle printing of processing instructions.
 



Copyright © 2011. All Rights Reserved.