| Method from com.lowagie.text.xml.XmlParser Detail: |
public void go(DocListener document,
InputSource is) {
try {
parser.parse(is, new SAXiTextHandler(document));
}
catch(SAXException se) {
throw new ExceptionConverter(se);
}
catch(IOException ioe) {
throw new ExceptionConverter(ioe);
}
}
|
public void go(DocListener document,
String file) {
try {
parser.parse(file, new SAXiTextHandler(document));
}
catch(SAXException se) {
throw new ExceptionConverter(se);
}
catch(IOException ioe) {
throw new ExceptionConverter(ioe);
}
}
|
public void go(DocListener document,
InputSource is,
String tagmap) {
try {
parser.parse(is, new SAXmyHandler(document, new TagMap(tagmap)));
}
catch(SAXException se) {
throw new ExceptionConverter(se);
}
catch(IOException ioe) {
throw new ExceptionConverter(ioe);
}
}
|
public void go(DocListener document,
InputSource is,
InputStream tagmap) {
try {
parser.parse(is, new SAXmyHandler(document, new TagMap(tagmap)));
}
catch(SAXException se) {
throw new ExceptionConverter(se);
}
catch(IOException ioe) {
throw new ExceptionConverter(ioe);
}
}
|
public void go(DocListener document,
InputSource is,
HashMap tagmap) {
try {
parser.parse(is, new SAXmyHandler(document, tagmap));
}
catch(SAXException se) {
throw new ExceptionConverter(se);
}
catch(IOException ioe) {
throw new ExceptionConverter(ioe);
}
}
|
public void go(DocListener document,
String file,
String tagmap) {
try {
parser.parse(file, new SAXmyHandler(document, new TagMap(tagmap)));
}
catch(SAXException se) {
throw new ExceptionConverter(se);
}
catch(IOException ioe) {
throw new ExceptionConverter(ioe);
}
}
|
public void go(DocListener document,
String file,
HashMap tagmap) {
try {
parser.parse(file, new SAXmyHandler(document, tagmap));
}
catch(SAXException se) {
throw new ExceptionConverter(se);
}
catch(IOException ioe) {
throw new ExceptionConverter(ioe);
}
}
|
public static void parse(DocListener document,
InputSource is) {
XmlParser p = new XmlParser();
p.go(document, is);
}
Parses a given file that validates with the iText DTD and writes the content to a document. |
public static void parse(DocListener document,
String file) {
XmlParser p = new XmlParser();
p.go(document, file);
}
Parses a given file that validates with the iText DTD and writes the content to a document. |
public static void parse(DocListener document,
InputStream is) {
XmlParser p = new XmlParser();
p.go(document, new InputSource(is));
}
Parses a given file that validates with the iText DTD and writes the content to a document. |
public static void parse(DocListener document,
Reader is) {
XmlParser p = new XmlParser();
p.go(document, new InputSource(is));
}
Parses a given file that validates with the iText DTD and writes the content to a document. |
public static void parse(DocListener document,
InputSource is,
String tagmap) {
XmlParser p = new XmlParser();
p.go(document, is, tagmap);
}
Parses a given file that validates with the iText DTD and writes the content to a document. |
public static void parse(DocListener document,
InputSource is,
HashMap tagmap) {
XmlParser p = new XmlParser();
p.go(document, is, tagmap);
}
Parses a given file and writes the content to a document, using a certain tagmap. |
public static void parse(DocListener document,
String file,
String tagmap) {
XmlParser p = new XmlParser();
p.go(document, file, tagmap);
}
Parses a given file that validates with the iText DTD and writes the content to a document. |
public static void parse(DocListener document,
String file,
HashMap tagmap) {
XmlParser p = new XmlParser();
p.go(document, file, tagmap);
}
Parses a given file and writes the content to a document, using a certain tagmap. |
public static void parse(DocListener document,
InputStream is,
String tagmap) {
XmlParser p = new XmlParser();
p.go(document, new InputSource(is), tagmap);
}
Parses a given file that validates with the iText DTD and writes the content to a document. |
public static void parse(DocListener document,
InputStream is,
HashMap tagmap) {
XmlParser p = new XmlParser();
p.go(document, new InputSource(is), tagmap);
}
Parses a given file and writes the content to a document, using a certain tagmap. |
public static void parse(DocListener document,
Reader is,
String tagmap) {
XmlParser p = new XmlParser();
p.go(document, new InputSource(is), tagmap);
}
Parses a given file that validates with the iText DTD and writes the content to a document. |
public static void parse(DocListener document,
Reader is,
HashMap tagmap) {
XmlParser p = new XmlParser();
p.go(document, new InputSource(is), tagmap);
}
Parses a given file and writes the content to a document, using a certain tagmap. |