Class: OpenEHR::AM::Archetype::ConstraintModel::CDefinedObject

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

Direct Known Subclasses

CComplexObject, CDomainType, CPrimitiveObject

Instance Attribute Summary collapse

Attributes inherited from CObject

#node_id, #occurrences, #rm_type_name

Attributes inherited from ArchetypeConstraint

#parent, #path

Instance Method Summary collapse

Methods inherited from CObject

create

Methods inherited from ArchetypeConstraint

#congruent?, #has_path?, #node_conforms_to?

Constructor Details

#initialize(args = { }) ⇒ CDefinedObject

Returns a new instance of CDefinedObject.



157
158
159
160
# File 'lib/open_ehr/am/archetype/constraint_model.rb', line 157

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

Instance Attribute Details

#assumed_valueObject

Returns the value of attribute assumed_value.



155
156
157
# File 'lib/open_ehr/am/archetype/constraint_model.rb', line 155

def assumed_value
  @assumed_value
end

Instance Method Details

#any_allowed?Boolean

Returns:

  • (Boolean)

Raises:

  • (NotImplementedError)


174
175
176
# File 'lib/open_ehr/am/archetype/constraint_model.rb', line 174

def any_allowed?
  raise NotImplementedError, 'subclass should implement this method'
end

#default_valueObject

Raises:

  • (NotImplementedError)


166
167
168
# File 'lib/open_ehr/am/archetype/constraint_model.rb', line 166

def default_value
  raise NotImplementedError, 'subclass should implement this method'
end

#has_assumed_value?Boolean

Returns:

  • (Boolean)


162
163
164
# File 'lib/open_ehr/am/archetype/constraint_model.rb', line 162

def has_assumed_value?
  return !@assumed_value.nil?
end

#valid_value?(value) ⇒ Boolean

Returns:

  • (Boolean)

Raises:

  • (NotImplementedError)


170
171
172
# File 'lib/open_ehr/am/archetype/constraint_model.rb', line 170

def valid_value?(value)
  raise NotImplementedError, 'subclass should implement this method'
end