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
global class Document {
    global Document() { }
    /**
     * Create root element node. name can not be null. if namespace is not null and prefix is null, namespace is set as default ns
     */
    global dom.XmlNode createRootElement(String name, String namespace, String prefix) { }
    /**
     * Return root element node. null, root node is not created yet
     */
    global dom.XmlNode getRootElement() { }
    /**
     * parse and load the specified XML
     */
    global void load(String xml) { }
    /**
     * returns the XML as string
     */
    global String toXmlString() { }
 
}