- new ($entity, $value,
$parent, %attrs)
Creates a new XML::TinyXML::Node object.
$entity can be either a scalar or an
XmlNodePtr object.
- if it's a scalar , it will be intepreted as the entity name
- if it's an XmlNodePtr, it will be used as the underlying object
and will be incapsulated in the newly created XML::TinyXML::Node
object.
$value is the optianal string value of
the newly created node (the "content" of the xml node)
if $parent isn't undef the newly
created node will be directly attached to the specified parent node.
$parent can be either a XML::TinyXML::Node
object or a XmlNodePtr one.
%attrs is an optional hash specifying
attributes for the newly created xml node
Returns a valid XML::TinyXML::Node object
- cleanAttributes ()
Removes all node attributes
- removeAttribute ($index)
Removes attribute at $index
- loadHash ($hashref, [ $childname ])
Loads an hashref and represent it as an xml subbranch.
$hashref
if $childname is specified, newly
created childnodes will use it as their name
- toHash ([ $parent ])
Export the xml structure into an hashref (formerly the inverse
of loadHash)
if $parent is specified the resulting
structure will be connected to $parent. (NOTE:
$parent MUST obviously be an hashref)
- updateAttributes (%attrs)
Updates all attributes.
This method simply clean all current attributes and replace
them with the ones specified in the %attrs
hash
- addAttributes (%attrs)
Add attributes.
- name ([$newname])
Set/Get the name of a node. if
$newname is specified it will be used as the new
name, otherwise the current name is returned
- value ([$newval])
Set/Get the vlue of a node. if $newval
is specified it will be used as the new value, otherwise the current
value is returned
- path ()
Get the absolute path of a node.
- getAttribute ($index)
Returns the attribute (XML::TinyXML::NodeAttribute) at index
$index
- getAttributes ()
Returns all attribute (array/arrayref of
XML::TinyXML::NodeAttribute objects) for this node
- attributes ()
Returns an hashref copy of all attributes in this node.
The returned hashref must be considered read-only, any change
won't be reflected in the underlying document.
If you want to modify the name or the value of an attribute,
use the XML::TinyXML::NodeAttribute api by calling
getAttributes() or getAttribute() instead.
- getChildNode ($index)
Returns child node at $index. The
returned node will be a Xml::TinyXML::Node object
- getChildNodeByName ($name)
Returns the first child node whose name matches
$name. The returned node will be a
Xml::TinyXML::Node object
- countChildren ()
Returns the actual number of children
- children ()
Returns an array containing all actual children in the form of
Xml::TinyXML::Node objects
- addChildNode ($child [, $value [,
$attrs ] ])
Adds a new child node.
If $child is an XML::TinyXML::Node
object , this will be attached to our children list
If $child is a string (not a
reference) a new node will be created passing
$child and the optional
$value and $attrs
arguments to the constructor and than attached to the children list
- removeChildNode ($index)
Removes child node at provided
$index.
- removeAllChildren
Removes all children from this node
- parent ()
Read-Only method which returns the parent node in the form of
a XML::TinyXML::Node object.
- nextSibling ()
Returns the next sibling of this node (if any), undef
otherwise.
- prevSibling ()
Returns the previous sibling of this node (if any), undef
otherwise.
- type ()
Returns the "type" of a XML::TinyXML::Node object.
type can be :
NODE
COMMENT
CDATA