source: ruby/branches/0.5.0/lib/open_ehr/am/archetype/validity_kind.rb@ 165

Last change on this file since 165 was 47, checked in by Tatsukawa, Akimichi, 16 years ago

Unit tests for adl_parser fails

File size: 373 bytes
Line 
1module OpenEHR
2 module AM
3 module Archetype
4 class VALIDITY_KIND
5 attr_accessor :value
6 MANDATORY = 1001
7 OPTIONAL = 1002
8 DISALLOWED = 1003
9
10 def initialize(arg)
11 @value = arg
12 end
13
14 def valid_validity
15
16 end
17 end
18 end # of Archetype
19 end # of AM
20end # of OpenEHR
Note: See TracBrowser for help on using the repository browser.