Mercurial > pub > Impl
view Lib/IMPL/DOM/Document.pm @ 27:b544a772b654
ORM in progress
author | Sergey |
---|---|
date | Fri, 16 Oct 2009 16:37:53 +0400 |
parents | 7f00786f8210 |
children | 1828103371d0 |
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 ||= {}; delete $refProps->{nodeName}; return $class->new( nodeName => $nodeName, %$refProps ); } 1; __END__ =pod =head1 DESCRIPTION =head1 METHODS =over =item C<<$doc->Create>> Создает узел определеннго типа с определенным именем и свойствами. =back =cut