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

Last change on this file since 167 was 167, checked in by KOBAYASHI, Shinji, 15 years ago

adjust for rails

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.