source: ruby/trunk/models/am/archetype/constraint_model/archetype_constraint.rb@ 21

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

created an experimental openehr_models gem package

File size: 952 bytes
Line 
1
2module OpenEHR
3 module AM
4 module Archetype
5 module Constraint_Model
6 class ARCHETYPE_CONSTRAINT
7
8 end
9
10 class C_OBJECT < ARCHETYPE_CONSTRAINT
11
12 end
13
14 class C_ATTRIBUTE < ARCHETYPE_CONSTRAINT
15
16 end
17
18 class C_DEFINED_OBJECT < C_OBJECT
19
20 end
21
22 class C_PRIMITIVE_OBJECT < C_DEFINED_OBJECT
23
24 end
25
26 class C_COMPLEX_OBJECT < C_DEFINED_OBJECT
27 attr_accessor :attributes, :attributes_valid
28
29 end
30
31 class C_DOMAIN_TYPE < C_DEFINED_OBJECT
32
33 end
34
35 class C_REFERENCE_OBJECT < C_OBJECT
36
37 end
38
39 class ARCHETYPE_INTERNAL_REF < C_REFERENCE_OBJECT
40
41 end
42
43 class ARCHETYPE_SLOT < C_REFERENCE_OBJECT
44
45 end
46
47 class CONSTRAINT_REF < C_REFERENCE_OBJECT
48
49 end
50
51 end
52 end
53 end
54end
55
Note: See TracBrowser for help on using the repository browser.