Searched refs:ProcessingInstruction (Results 1 - 25 of 48) sorted by relevance

12

/openjdk9/jaxp/src/java.xml/share/classes/javax/xml/stream/events/
H A DProcessingInstruction.java34 public interface ProcessingInstruction extends XMLEvent { interface in inherits:XMLEvent
/openjdk9/jaxp/src/java.xml/share/classes/org/w3c/dom/
H A DProcessingInstruction.java45 * The <code>ProcessingInstruction</code> interface represents a "processing
56 public interface ProcessingInstruction extends Node { interface in inherits:Node
H A DDocument.java150 * Creates a <code>ProcessingInstruction</code> node given the specified
160 * @return The new <code>ProcessingInstruction</code> object.
167 public ProcessingInstruction createProcessingInstruction(String target,
/openjdk9/jaxp/test/javax/xml/jaxp/functional/org/w3c/dom/ptests/
H A DPITest.java31 import org.w3c.dom.ProcessingInstruction;
48 ProcessingInstruction pi = document.createProcessingInstruction("PI", "processing");
/openjdk9/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/dom/
H A DProcessingInstructionImpl.java25 import org.w3c.dom.ProcessingInstruction;
40 implements ProcessingInstruction {
89 // ProcessingInstruction methods
/openjdk9/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/jaxp/validation/
H A DDOMDocumentHandler.java32 import org.w3c.dom.ProcessingInstruction;
83 * @param node a ProcessingInstruction node
87 public void processingInstruction(ProcessingInstruction node) throws XNIException;
/openjdk9/jaxws/src/java.xml.bind/share/classes/com/sun/xml/internal/fastinfoset/stax/events/
H A DProcessingInstructionEvent.java31 import javax.xml.stream.events.ProcessingInstruction;
34 public class ProcessingInstructionEvent extends EventBase implements ProcessingInstruction {
H A DStAXEventWriter.java130 ProcessingInstruction processingInstruction = (ProcessingInstruction)event ;
/openjdk9/jaxp/test/javax/xml/jaxp/unittest/parsers/
H A DBug6849942Test.java35 import org.w3c.dom.ProcessingInstruction;
57 String result = ((ProcessingInstruction) document.getFirstChild()).getData();
75 String result = ((ProcessingInstruction) document.getFirstChild()).getData();
/openjdk9/jaxp/src/java.xml/share/classes/com/sun/xml/internal/stream/events/
H A DProcessingInstructionEvent.java32 import javax.xml.stream.events.ProcessingInstruction;
42 implements ProcessingInstruction {
/openjdk9/jaxws/src/jdk.xml.bind/share/classes/com/sun/xml/internal/rngom/digested/
H A DDOMPrinter.java58 import org.w3c.dom.ProcessingInstruction;
94 visitProcessingInstruction((ProcessingInstruction) node);
184 protected void visitProcessingInstruction(ProcessingInstruction processingInstruction)
/openjdk9/jdk/src/java.xml.crypto/share/classes/com/sun/org/apache/xml/internal/security/c14n/implementations/
H A DCanonicalizerPhysical.java42 import org.w3c.dom.ProcessingInstruction;
171 protected void outputPItoWriter(ProcessingInstruction currentPI,
/openjdk9/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/impl/xs/opti/
H A DDefaultDocument.java37 import org.w3c.dom.ProcessingInstruction;
120 public ProcessingInstruction createProcessingInstruction(String target, String data) throws DOMException {
/openjdk9/jaxp/test/javax/xml/jaxp/unittest/dom/ls/
H A DBug6354955.java37 import org.w3c.dom.ProcessingInstruction;
91 ProcessingInstruction piNode = xmlDocument.createProcessingInstruction("execute", "test");
/openjdk9/jaxp/test/javax/xml/jaxp/module/ServiceProviderTest/src/xmlprovider2/xp2/
H A DXMLEventFactoryImpl.java41 import javax.xml.stream.events.ProcessingInstruction;
171 public ProcessingInstruction createProcessingInstruction(String target, String data) {
/openjdk9/jaxp/test/javax/xml/jaxp/unittest/stream/EventsTest/
H A DIssue41Test.java45 import javax.xml.stream.events.ProcessingInstruction;
87 ProcessingInstruction pi = f.createProcessingInstruction("target", "data");
/openjdk9/jaxp/src/java.xml/share/classes/com/sun/xml/internal/stream/writers/
H A DXMLEventWriterImpl.java41 import javax.xml.stream.events.ProcessingInstruction;
158 ProcessingInstruction processingInstruction = (ProcessingInstruction) xMLEvent;
H A DXMLDOMWriterImpl.java44 import org.w3c.dom.ProcessingInstruction;
523 ProcessingInstruction pi = ownerDoc.createProcessingInstruction(target, "");
537 ProcessingInstruction pi = ownerDoc.createProcessingInstruction(target, data);
/openjdk9/jaxws/src/java.xml.bind/share/classes/com/sun/xml/internal/bind/unmarshaller/
H A DDOMScanner.java42 import org.w3c.dom.ProcessingInstruction;
272 ProcessingInstruction pi = (ProcessingInstruction)n;
/openjdk9/jaxp/src/java.xml/share/classes/com/sun/org/apache/xalan/internal/xsltc/trax/
H A DStAXEvent2SAX.java55 import javax.xml.stream.events.ProcessingInstruction;
170 handlePI((ProcessingInstruction)event);
208 handlePI((ProcessingInstruction)event);
249 handlePI((ProcessingInstruction)event);
300 private void handlePI(ProcessingInstruction event)
/openjdk9/jaxp/src/java.xml/share/classes/com/sun/org/apache/xml/internal/utils/
H A DTreeWalker.java30 import org.w3c.dom.ProcessingInstruction;
352 ProcessingInstruction pi = (ProcessingInstruction) node;
/openjdk9/jaxp/src/java.xml/share/classes/com/sun/org/apache/xml/internal/serializer/
H A DTreeWalker.java32 import org.w3c.dom.ProcessingInstruction;
348 ProcessingInstruction pi = (ProcessingInstruction) node;
/openjdk9/jdk/src/java.xml.crypto/share/classes/com/sun/org/apache/xml/internal/security/signature/
H A DXMLSignatureInputDebugger.java39 import org.w3c.dom.ProcessingInstruction;
241 this.outputPItoWriter((ProcessingInstruction) currentNode);
368 * Checks whether a Comment or ProcessingInstruction is before or after the
479 private void outputPItoWriter(ProcessingInstruction currentPI) throws IOException {
/openjdk9/jaxp/test/javax/xml/jaxp/module/ServiceProviderTest/src/DefaultFactoryWrapperTest/xmlwrapperprovider/xwp/
H A DXMLEventFactoryWrapper.java41 import javax.xml.stream.events.ProcessingInstruction;
172 public ProcessingInstruction createProcessingInstruction(String target, String data) {
/openjdk9/jaxp/src/java.xml/share/classes/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DProcessingInstruction.java45 final class ProcessingInstruction extends Instruction { class in inherits:Instruction

Completed in 287 milliseconds

12