LiJinHuan
2024-01-05 462188a2c982b0a8750dfe01692dfd898216bb0c
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
global class XmlStreamWriter {
    global XmlStreamWriter() { }
    /**
     * Close this writer and free any resources associated with the writer.
     */
    global void close() { }
    /**
     * Return the XML stream as a string
     */
    global String getXmlString() { }
    /**
     * Binds a URI to the default namespace This URI is bound in the scope of the current START_ELEMENT / END_ELEMENT pair.
     */
    global void setDefaultNamespace(String uri) { }
    /**
     * Writes an attribute to the output stream
     */
    global void writeAttribute(String prefix, String namespaceURI, String localName, String value) { }
    /**
     * Writes a CData section
     */
    global void writeCData(String data) { }
    /**
     * Write text to the output
     */
    global void writeCharacters(String text) { }
    /**
     * Writes an xml comment with the data enclosed
     */
    global void writeComment(String data) { }
    /**
     * Writes the default namespace to the stream
     */
    global void writeDefaultNamespace(String namesapceURI) { }
    /**
     * Writes an empty element tag to the output
     */
    global void writeEmptyElement(String prefix, String localName, String namesapceURI) { }
    /**
     * Closes any start tags and writes corresponding end tags.
     */
    global void writeEndDocument() { }
    /**
     * Writes an end tag to the output relying on the internal state of the writer to determine the prefix and local name of the event.
     */
    global void writeEndElement() { }
    /**
     * Writes a namespace to the output stream If the prefix argument to this method is the empty string, "xmlns", or null this method will delegate to writeDefaultNamespace
     */
    global void writeNamespace(String prefix, String namesapceURI) { }
    /**
     * Writes a processing instruction
     */
    global void writeProcessingInstruction(String target, String data) { }
    /**
     * Write the XML Declaration.
     */
    global void writeStartDocument(String encoding, String version) { }
    /**
     * Writes a start tag to the output
     */
    global void writeStartElement(String prefix, String localName, String namesapceURI) { }
 
}