source: ruby/trunk/lib/models/rm/common/generic.rb@ 104

Last change on this file since 104 was 104, checked in by KOBAYASHI, Shinji, 16 years ago

fixed #46
refs #62, #65, #50

arranged structure of test_reference_model.rb
divided test classes

File size: 798 bytes
Line 
1# This module is a implementation of the bellow UML
2# http://www.openehr.org/uml/release-1.0.1/Browsable/_9_5_1_76d0249_1140169202660_257304_813Report.html
3# Related to the ticket #62
4module OpenEHR
5 module RM
6 module Common
7 module Generic
8 class Audit_Details
9 end
10 class Revision_History
11
12 end # of Revision_History
13
14 class Revision_History_Item
15
16 end # of Revision_History_Item
17
18 class Party_Proxy
19 def external_ref
20 Raise NotImplementedError, 'external_ref shoud provide Party_Ref'
21 end
22 end
23
24 class Party_Self < Party_Proxy
25
26 end
27
28 class Party_Identified < Party_Proxy
29
30 end
31
32 end # of Generic
33 end # of Common
34 end # of RM
35end # of OpenEHR
Note: See TracBrowser for help on using the repository browser.