File: XMLNode.hx

package info (click to toggle)
haxe 1%3A3.2.1%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 23,464 kB
  • ctags: 9,612
  • sloc: ml: 83,200; ansic: 1,724; makefile: 473; java: 349; cs: 314; python: 250; sh: 43; cpp: 39; xml: 25
file content (26 lines) | stat: -rw-r--r-- 878 bytes parent folder | download | duplicates (2)
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
package flash.xml;

extern class XMLNode {
	var attributes : Dynamic;
	var childNodes(default,null) : Array<Dynamic>;
	var firstChild : XMLNode;
	var lastChild : XMLNode;
	var localName(default,null) : String;
	var namespaceURI(default,null) : String;
	var nextSibling : XMLNode;
	var nodeName : String;
	var nodeType : XMLNodeType;
	var nodeValue : String;
	var parentNode : XMLNode;
	var prefix(default,null) : String;
	var previousSibling : XMLNode;
	function new(type : XMLNodeType, value : String) : Void;
	function appendChild(node : XMLNode) : Void;
	function cloneNode(deep : Bool) : XMLNode;
	function getNamespaceForPrefix(prefix : String) : String;
	function getPrefixForNamespace(ns : String) : String;
	function hasChildNodes() : Bool;
	function insertBefore(node : XMLNode, before : XMLNode) : Void;
	function removeNode() : Void;
	function toString() : String;
}