Mercurial > pub > Impl
view Lib/IMPL/DOM/Schema/Validator.pm @ 120:41e9d9ea3db5
Merge with 79cdd6c86409806bd1de092d9f0fb2b048775720
author | wizard |
---|---|
date | Mon, 07 Jun 2010 17:45:14 +0400 (2010-06-07) |
parents | d8dc6cad3f55 |
children | 4267a2ac3d46 |
line wrap: on
line source
package IMPL::DOM::Schema::Validator; use base 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