You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
1.1 KiB
29 lines
1.1 KiB
// Signature format: 2.0
|
|
package group {
|
|
|
|
public class Student {
|
|
ctor public Student();
|
|
method public String getCity();
|
|
method public String getRoad();
|
|
method public String getState();
|
|
method public void setCity(String);
|
|
method public void setRoad(String);
|
|
method public void setState(String);
|
|
}
|
|
|
|
public class XmlParser {
|
|
ctor public XmlParser();
|
|
method public static group.Student 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;
|
|
}
|
|
|
|
public class XmlWriter implements java.io.Closeable {
|
|
ctor public XmlWriter(java.io.PrintWriter);
|
|
method public void close();
|
|
method public static void write(group.XmlWriter, group.Student) throws java.io.IOException;
|
|
}
|
|
|
|
}
|
|
|