Mercurial > pub > Impl
view Lib/IMPL/DOM/Schema/Validator.pm @ 173:aaab45153411
minor bugfixes
author | sourcer |
---|---|
date | Wed, 14 Sep 2011 18:59:01 +0400 (2011-09-14) |
parents | 4267a2ac3d46 |
children | d1676be8afcc |
line wrap: on
line source
package IMPL::DOM::Schema::Validator; use parent qw(IMPL::DOM::Node); require IMPL::Exception; __PACKAGE__->PassThroughArgs; sub Validate { my ($this,$node) = @_; die new IMPL::NotImplementedException(); } 1; __END__ =pod =head1 NAME C<IMPL::DOM::Schema::Validator> - ������� ����� ��� ����������� �� ������� ��������. =head1 DESCRIPTION �� �������� ��������� ����� ��� �������� ��, ��� � �������� ��������� �� �� ������������ ������� ����� � ������� � ���� ����������� �������� C<minOcuur,maxOccur,name>. =cut