Class: OpenEHR::AM::Archetype::ConstraintModel::CPrimitiveObject

Inherits:
CDefinedObject show all
Defined in:
lib/open_ehr/am/archetype/constraint_model.rb

Instance Attribute Summary collapse

Attributes inherited from CDefinedObject

#assumed_value

Attributes inherited from CObject

#node_id, #occurrences, #rm_type_name

Attributes inherited from ArchetypeConstraint

#parent, #path

Instance Method Summary collapse

Methods inherited from CDefinedObject

#default_value, #has_assumed_value?, #valid_value?

Methods inherited from CObject

create

Methods inherited from ArchetypeConstraint

#congruent?, #has_path?, #node_conforms_to?

Constructor Details

#initialize(args = { }) ⇒ CPrimitiveObject

Returns a new instance of CPrimitiveObject.



182
183
184
185
# File 'lib/open_ehr/am/archetype/constraint_model.rb', line 182

def initialize(args = { })
  super
  self.item = args[:item]
end

Instance Attribute Details

#itemObject

Returns the value of attribute item.



180
181
182
# File 'lib/open_ehr/am/archetype/constraint_model.rb', line 180

def item
  @item
end

Instance Method Details

#any_allowed?Boolean

Returns:

  • (Boolean)


187
188
189
# File 'lib/open_ehr/am/archetype/constraint_model.rb', line 187

def any_allowed?
  return item.nil?
end