source: ruby/trunk/lib/models/rm/common/direcotory.rb.rb@ 110

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

refs #63, #64

File size: 527 bytes
Line 
1# This module is based on the UML,
2# http://www.openehr.org/uml/release-1.0.1/Browsable/_9_5_1_76d0249_1140536622627_218703_7149Report.html
3# Ticket refs #63
4module OpenEHR
5 module RM
6 module Common
7 module Directory
8 class Folder < OpenEHR::RM::Archetyped::Locatable
9 attr_reader :items
10 def initialize(archetype_node_id, name, links, parent=nil, items=nil, uid = nil)
11 super(archetype_node_id, name, links)
12
13 end
14 end
15 end
16 end
17 end
18end
Note: See TracBrowser for help on using the repository browser.