aboutsummaryrefslogtreecommitdiff
path: root/tests/resources/simple_complex_content/api/current.txt
blob: 8ca1793f155bac1336db339e0b211bce2505c595 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
// Signature format: 2.0
package simple.complex.content {

  @Deprecated public class Address {
    ctor @Deprecated public Address();
    method @Deprecated public String getCity();
    method @Deprecated public final String getName();
    method @Deprecated public String getStreet();
    method @Deprecated public void setCity(String);
    method @Deprecated public final void setName(String);
    method @Deprecated public void setStreet(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 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(String);
    method public void setSubAddress(simple.complex.content.SubAddress);
    method public void setUSAddressP(simple.complex.content.USAddressP);
  }

  public class Person2 {
    ctor public Person2();
    method public simple.complex.content.KRAddress getKRAddress();
    method public String getName();
    method @NonNull 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(String);
    method public void setSubAddress(@NonNull simple.complex.content.SubAddress);
    method public void setUSAddressP(simple.complex.content.USAddressP);
  }

  public class SubAddress {
    ctor public SubAddress();
    method @Nullable public final String getChoice1_optional();
    method @NonNull public final String getChoice2_optional();
    method public final void setChoice1_optional(@Nullable String);
    method public final void setChoice2_optional(@NonNull String);
  }

  public final class USAddressP extends simple.complex.content.Address {
    ctor public USAddressP();
    method public String getState();
    method public java.math.BigInteger getZipcode();
    method public void setState(String);
    method public void setZipcode(java.math.BigInteger);
  }

  public class XmlParser {
    ctor public XmlParser();
    method public static simple.complex.content.Person readPerson(java.io.InputStream) throws javax.xml.datatype.DatatypeConfigurationException, java.io.IOException, org.xmlpull.v1.XmlPullParserException;
    method public static simple.complex.content.Person2 readPerson2(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;
  }

}