1// Signature format: 2.0 2package simple.complex.content { 3 4 @Deprecated public class Address { 5 ctor @Deprecated public Address(); 6 method @Deprecated public String getCity(); 7 method @Deprecated public final String getName(); 8 method @Deprecated public String getStreet(); 9 method @Deprecated public void setCity(String); 10 method @Deprecated public final void setName(String); 11 method @Deprecated public void setStreet(String); 12 } 13 14 public class KRAddress extends simple.complex.content.Address { 15 ctor public KRAddress(); 16 } 17 18 public class Person { 19 ctor public Person(); 20 method public simple.complex.content.KRAddress getKRAddress(); 21 method public String getName(); 22 method public simple.complex.content.SubAddress getSubAddress(); 23 method public simple.complex.content.USAddressP getUSAddressP(); 24 method public void setKRAddress(simple.complex.content.KRAddress); 25 method public void setName(String); 26 method public void setSubAddress(simple.complex.content.SubAddress); 27 method public void setUSAddressP(simple.complex.content.USAddressP); 28 } 29 30 public class Person2 { 31 ctor public Person2(); 32 method public simple.complex.content.KRAddress getKRAddress(); 33 method public String getName(); 34 method @NonNull public simple.complex.content.SubAddress getSubAddress(); 35 method public simple.complex.content.USAddressP getUSAddressP(); 36 method public void setKRAddress(simple.complex.content.KRAddress); 37 method public void setName(String); 38 method public void setSubAddress(@NonNull simple.complex.content.SubAddress); 39 method public void setUSAddressP(simple.complex.content.USAddressP); 40 } 41 42 public class SubAddress { 43 ctor public SubAddress(); 44 method @Nullable public final String getChoice1_optional(); 45 method @NonNull public final String getChoice2_optional(); 46 method public final void setChoice1_optional(@Nullable String); 47 method public final void setChoice2_optional(@NonNull String); 48 } 49 50 public final class USAddressP extends simple.complex.content.Address { 51 ctor public USAddressP(); 52 method public String getState(); 53 method public java.math.BigInteger getZipcode(); 54 method public void setState(String); 55 method public void setZipcode(java.math.BigInteger); 56 } 57 58 public class XmlParser { 59 ctor public XmlParser(); 60 method public static simple.complex.content.Person readPerson(java.io.InputStream) throws javax.xml.datatype.DatatypeConfigurationException, java.io.IOException, org.xmlpull.v1.XmlPullParserException; 61 method public static simple.complex.content.Person2 readPerson2(java.io.InputStream) throws javax.xml.datatype.DatatypeConfigurationException, java.io.IOException, org.xmlpull.v1.XmlPullParserException; 62 method public static String readText(org.xmlpull.v1.XmlPullParser) throws java.io.IOException, org.xmlpull.v1.XmlPullParserException; 63 method public static void skip(org.xmlpull.v1.XmlPullParser) throws java.io.IOException, org.xmlpull.v1.XmlPullParserException; 64 } 65 66} 67 68