Module CL_DomNode

module CL_DomNode: sig .. end

API documentation for the class CL_DomNode

type 'a t 
val init : unit -> 'a t
val delete : 'a t -> unit
val copy : 'a t -> 'a t
val get_first_child : 'a t -> 'a t

raises Not_found

val get_last_child : 'a t -> 'a t

raises Not_found

val get_next_sibling : 'a t -> 'a t

raises Not_found

val get_previous_sibling : 'a t -> 'a t

raises Not_found

val get_parent_node : 'a t -> 'a t

raises Not_found

val get_node_name : 'a t -> string
val get_node_value : 'a t -> string
val get_attributes : 'a t -> (string * string) list
module Exceptionless: sig .. end
val is_element : 'a t -> bool
val is_attr : 'a t -> bool
val is_text : 'a t -> bool
val is_cdata_section : 'a t -> bool
val is_entity_reference : 'a t -> bool
val is_entity : 'a t -> bool
val is_processing_instruction : 'a t -> bool
val is_comment : 'a t -> bool
val is_document : 'a t -> bool
val is_document_type : 'a t -> bool
val is_document_fragment : 'a t -> bool
val is_notation : 'a t -> bool
val has_attributes : 'a t -> bool
val has_child_nodes : 'a t -> bool