文本文件  |  38行  |  1.53 KB

// Signature format: 2.0
package purchase.simple {

  public class PurchaseOrderType {
    ctor public PurchaseOrderType();
    method public purchase.simple.USAddress getBillTo();
    method public javax.xml.datatype.XMLGregorianCalendar getOrderDate();
    method public java.util.List<purchase.simple.USAddress> getShipTo();
    method public void setBillTo(purchase.simple.USAddress);
    method public void setOrderDate(javax.xml.datatype.XMLGregorianCalendar);
  }

  public class USAddress {
    ctor public USAddress();
    method public String getCity();
    method public String getCountry();
    method public String getName();
    method public String getState();
    method public String getStreet();
    method public java.math.BigInteger getZip();
    method public void setCity(String);
    method public void setCountry(String);
    method public void setName(String);
    method public void setState(String);
    method public void setStreet(String);
    method public void setZip(java.math.BigInteger);
  }

  public class XmlParser {
    ctor public XmlParser();
    method public static purchase.simple.PurchaseOrderType read(java.io.InputStream) throws javax.xml.datatype.DatatypeConfigurationException, java.io.IOException, org.xmlpull.v1.XmlPullParserException;
    method public static String readText(org.xmlpull.v1.XmlPullParser) throws java.io.IOException, org.xmlpull.v1.XmlPullParserException;
    method public static void skip(org.xmlpull.v1.XmlPullParser) throws java.io.IOException, org.xmlpull.v1.XmlPullParserException;
  }

}