1// Signature format: 2.0
2package cross.tinyxml {
3
4  public class PurchaseOrderType {
5    ctor public PurchaseOrderType();
6    method public cross.tinyxml.USAddress getBillTo();
7    method public javax.xml.datatype.XMLGregorianCalendar getOrderDate();
8    method public java.util.List<cross.tinyxml.USAddress> getShipTo();
9    method public void setBillTo(cross.tinyxml.USAddress);
10    method public void setOrderDate(javax.xml.datatype.XMLGregorianCalendar);
11  }
12
13  public class USAddress {
14    ctor public USAddress();
15    method public String getCity();
16    method public String getCountry();
17    method public String getName();
18    method public String getState();
19    method public String getStreet();
20    method public java.math.BigInteger getZip();
21    method public void setCity(String);
22    method public void setCountry(String);
23    method public void setName(String);
24    method public void setState(String);
25    method public void setStreet(String);
26    method public void setZip(java.math.BigInteger);
27  }
28
29  public class XmlParser {
30    ctor public XmlParser();
31    method public static cross.tinyxml.PurchaseOrderType read(java.io.InputStream) throws javax.xml.datatype.DatatypeConfigurationException, java.io.IOException, org.xmlpull.v1.XmlPullParserException;
32    method public static String readText(org.xmlpull.v1.XmlPullParser) throws java.io.IOException, org.xmlpull.v1.XmlPullParserException;
33    method public static void skip(org.xmlpull.v1.XmlPullParser) throws java.io.IOException, org.xmlpull.v1.XmlPullParserException;
34  }
35
36  public class XmlWriter implements java.io.Closeable {
37    ctor public XmlWriter(java.io.PrintWriter);
38    method public void close();
39    method public static void write(cross.tinyxml.XmlWriter, cross.tinyxml.PurchaseOrderType) throws java.io.IOException;
40  }
41
42}
43
44