Searched refs:finf (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/tools/
H A DXML_SAX_FI.java44 public void parse(InputStream xml, OutputStream finf, String workingDirectory) throws Exception { argument
46 SAXDocumentSerializer documentSerializer = getSerializer(finf);
58 public void parse(InputStream xml, OutputStream finf) throws Exception { argument
59 parse(xml, finf, null);
62 public void convert(Reader reader, OutputStream finf) throws Exception { argument
66 SAXDocumentSerializer documentSerializer = getSerializer(finf);
82 private SAXDocumentSerializer getSerializer(OutputStream finf) { argument
84 documentSerializer.setOutputStream(finf);
H A DXML_SAX_StAX_FI.java43 public void parse(InputStream xml, OutputStream finf, String workingDirectory) throws Exception { argument
45 documentSerializer.setOutputStream(finf);
63 finf.close();
66 public void parse(InputStream xml, OutputStream finf) throws Exception { argument
67 parse(xml, finf, null);
H A DXML_DOM_FI.java42 public void parse(InputStream document, OutputStream finf, String workingDirectory) throws Exception { argument
52 s.setOutputStream(finf);
56 public void parse(InputStream document, OutputStream finf) throws Exception { argument
57 parse(document, finf, null);
H A DXML_DOM_SAX_FI.java47 public void parse(InputStream document, OutputStream finf, String workingDirectory) throws Exception { argument
58 t.transform(new DOMSource(d), new FastInfosetResult(finf));
61 public void parse(InputStream document, OutputStream finf) throws Exception { argument
62 parse(document, finf, null);
H A DFI_SAX_XML.java42 public void parse(InputStream finf, OutputStream xml) throws Exception { argument
44 tx.transform(new FastInfosetSource(finf), new StreamResult(xml));

Completed in 224 milliseconds