source: ruby/trunk/lib/models/rm/common/change_control.rb@ 115

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

refs #64

File size: 1.4 KB
Line 
1# This module is based on the UML,
2# http://www.openehr.org/uml/release-1.0.1/Browsable/_9_0_76d0249_1109326589721_134411_997Report.html
3# Ticket refs #64
4
5module OpenEHR
6 module RM
7 module Common
8 module Change_Control
9 class Contribution
10 attr_reader :uid, :versions, :audit
11 def initialize(uid, versions, audit)
12 self.uid = uid
13 self.versions = versions
14 self.audit = audit
15 end
16 def uid=(uid)
17 if uid.nil?
18 raise ArgumentError, "uid should not be nil."
19 end
20 @uid = uid
21 end
22 def versions=(versions)
23 unless uid.nil?
24 if uid.empty?
25 raise ArgumentError, 'versions shoud not be nil or empty.'
26 end
27 end
28 @versions = versions
29 end
30 def audit=(audit)
31 if audit.nil?
32 raise ArgumentError, 'audit should not be nil.'
33 end
34 if audit.description.nil?
35 raise ArgumentError, 'audit.description should not be nil.'
36 end
37 @audit = audit
38 end
39 end
40 class Versioned_Object
41 end
42 class Version
43 end
44 class Imported_Version < Version
45 end
46 class Original_Version < Version
47 end
48 end # of Change_Control
49 end # of Common
50 end # of RM
51end # of OpenEHR
Note: See TracBrowser for help on using the repository browser.