Update of /cvsroot/net-script/netscript2/src/perl/XML/DOM2
In directory usw-pr-cvs1:/tmp/cvs-serv4294
Modified Files:
Node.pm
Log Message:
* minor bugfixes
Index: Node.pm
===================================================================
RCS file: /cvsroot/net-script/netscript2/src/perl/XML/DOM2/Node.pm,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** Node.pm 2001/12/03 21:19:04 1.8
--- Node.pm 2001/12/11 22:23:23 1.9
***************
*** 258,280 ****
#/**
- # Sets the parent of this node. All nodes, except Attr, Document,
- # DocumentFragment, Entity, and Notation may have a parent. However,
- # if a node has just been created and not yet added to the tree, or
- # if it has been removed from the tree, this is undef.
- #
- # @not-standard
- # @param a hash containing the following key-value-pairs:
- # newParent - an instance of XML::DOM2::Node or undef
- # @protected
- #*/
- #sub setParentNode {
- # my ( $this, $paramsRef ) = @_;
- # my %params = %{$paramsRef};
- # my $newParent = $params{ newParent };
- # $this -> { m_parentNode } = $newParent;
- # }
-
-
- #/**
# Sets the namespace prefix of this node. Note that setting this
# attribute, when permitted, changes the nodeName attribute, which
--- 258,261 ----
|