Mercurial > pub > Impl
view Lib/IMPL/DOM/Navigator/SchemaNavigator.pm @ 20:267460284fb3
DOM Schema
author | Sergey |
---|---|
date | Tue, 22 Sep 2009 17:17:38 +0400 |
parents | 818c74b038ae |
children | 7f00786f8210 |
line wrap: on
line source
package IMPL::DOM::Navigator::SchemaNavigator; use strict; use warnings; use base qw(IMPL::DOM::Navigator); use IMPL::Class::Property; use IMPL::Class::Property::Direct; __PACKAGE__->PassThroughArgs; BEGIN { public _direct property Schema => prop_get; } sub CTOR { my ($this,$schema) = @_; $this->{$Schema} = $schema; die new IMPL::InvalidArgumentException("A schema object is required") unless $schema->isa('IMPL::DOM::Schema'); } sub Navigate { my ($this,$query) = @_; if (my ($newNode) = $this->Current->selectNodes($query)) { if (ref $newNode eq 'IMPL::DOM::Schema::Node') { $newNode = $this->{$Schema}->ResolveType($newNode->type) || $newNode; } return $this->_NavigateNode($newNode); } else { return undef; } } 1; __END__ =pod =head1 DESCRIPTION Навигатор для схемы, отличается от стандартного тем, что переходит по ссылкам вида <Node nodeName="SomeName" type="ReferencedType"/>. При этом имя узла в который перешли будет отличаться от указанного в поисковом критерии. =cut