Class Gdome.node

class node : TNode.t -> object .. end
Inherits
method get_attributes : namedNodeMap option
method get_childNodes : nodeList
method get_firstChild : node option
method get_lastChild : node option
method get_localName : domString option
method get_namespaceURI : domString option
method get_nextSibling : node option
method get_nodeName : domString
method get_nodeType : GdomeNodeTypeT.t
method get_nodeValue : domString option
method set_nodeValue : value:domString option -> unit
method get_ownerDocument : document option
method get_parentNode : node option
method get_prefix : domString option
method set_prefix : value:domString option -> unit
method get_previousSibling : node option
method isSameNode : node -> bool
method equals : node -> bool
method appendChild : newChild:node -> node
method cloneNode : deep:bool -> node
method hasAttributes : bool
method hasChildNodes : bool
method insertBefore : newChild:node -> refChild:node option -> node
method isSupported : feature:domString -> version:domString -> bool
method normalize : unit
method removeChild : oldChild:node -> node
method replaceChild : newChild:node -> oldChild:node -> node
method as_Node : TNode.t