Mercurial > pub > Impl
view Lib/IMPL/DOM/Document.pm @ 18:818c74b038ae
DOM Schema + tests
author | Sergey |
---|---|
date | Thu, 10 Sep 2009 17:42:47 +0400 |
parents | 16795016e70b |
children | 7f00786f8210 |
line wrap: on
line source
package IMPL::DOM::Document; use strict; use warnings; use base qw(IMPL::DOM::Node); __PACKAGE__->PassThroughArgs; sub Create { my ($this,$nodeName,$class,$refProps) = @_; $refProps ||= {}; return $class->new( nodeName => $nodeName, %$refProps ); } 1; __END__ =pod =head1 DESCRIPTION =head1 METHODS =over =item C<<$doc->Create>> Создает узел определеннго типа с определенным именем и свойствами. =back =cut