blob: d987dbccf171836121fac2cba04fc8eceb904b23 [file] [log] [blame]
package simple.complex.content {
public class Address {
ctor public Address();
method public java.lang.String getCity();
method public java.lang.String getName();
method public java.lang.String getStreet();
method public void setCity(java.lang.String);
method public void setName(java.lang.String);
method public void setStreet(java.lang.String);
}
public class KRAddress extends simple.complex.content.Address {
ctor public KRAddress();
}
public class Person {
ctor public Person();
method public simple.complex.content.KRAddress getKRAddress();
method public java.lang.String getName();
method public simple.complex.content.SubAddress getSubAddress();
method public simple.complex.content.USAddressP getUSAddressP();
method public void setKRAddress(simple.complex.content.KRAddress);
method public void setName(java.lang.String);
method public void setSubAddress(simple.complex.content.SubAddress);
method public void setUSAddressP(simple.complex.content.USAddressP);
}
public class SubAddress {
ctor public SubAddress();
method public java.lang.String getChoice1_optional();
method public java.lang.String getChoice2_optional();
method public void setChoice1_optional(java.lang.String);
method public void setChoice2_optional(java.lang.String);
}
public class USAddressP extends simple.complex.content.Address {
ctor public USAddressP();
method public java.lang.String getState();
method public java.math.BigInteger getZipcode();
method public void setState(java.lang.String);
method public void setZipcode(java.math.BigInteger);
}
public class XmlParser {
ctor public XmlParser();
method public static simple.complex.content.Person read(java.io.InputStream) throws javax.xml.datatype.DatatypeConfigurationException, java.io.IOException, org.xmlpull.v1.XmlPullParserException;
method public static java.lang.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;
}
}