diff Lib/IMPL/DOM/Schema/Node.pm @ 100:df6b4f054957

Schema in progress Added simple mailer
author wizard
date Thu, 06 May 2010 00:54:17 +0400
parents 16ada169ca75
children c289ed9662ca
line wrap: on
line diff
--- a/Lib/IMPL/DOM/Schema/Node.pm	Wed May 05 17:33:55 2010 +0400
+++ b/Lib/IMPL/DOM/Schema/Node.pm	Thu May 06 00:54:17 2010 +0400
@@ -12,6 +12,9 @@
     public _direct property maxOccur => prop_all;
     public _direct property type => prop_all;
     public _direct property name => prop_all;
+    public _direct property display => prop_all;
+    public _direct property display_no => prop_all;
+    public _direct property display_blame => prop_all;
 }
 
 our %CTOR = (
@@ -25,6 +28,9 @@
     $this->{$maxOccur} = defined $args{maxOccur} ? $args{maxOccur} : 1;
     $this->{$type} = $args{type};
     $this->{$name} = $args{name} or die new IMPL::InvalidArgumentException('Argument is required','name');
+    $this->{$display} = $args{display};
+    $this->{$display_no} = $args{display_no};
+    $this->{$display_blame} = $args{display_blame};
 }
 
 sub Validate {