class OpenEHR::RComponents::Base

Attributes

node_id[R]
path[R]
rm_type_name[R]

Public Class Methods

new(args = { }) click to toggle source
# File lib/rcomponents.rb, line 5
def initialize(args = { })
  self.node_id = args[:node_id]
  self.path = args[:path]
  self.rm_type_name = args[:rm_type_name]
end

Public Instance Methods

node_id=(node_id) click to toggle source
# File lib/rcomponents.rb, line 11
def node_id=(node_id)
  raise ArgumentError if node_id.nil?
  @node_id = node_id
end
path=(path) click to toggle source
# File lib/rcomponents.rb, line 16
def path=(path)
  raise ArgumentError if path.nil?
  @path= path
end
rm_type_name=(rm_type_name) click to toggle source
# File lib/rcomponents.rb, line 21
def rm_type_name=(rm_type_name)
  raise ArgumentError if rm_type_name.nil?
  @rm_type_name = rm_type_name
end