Class: OpenEHR::RM::Composition::Content::Entry::IsmTransition

Inherits:
Pathable
  • Object
show all
Defined in:
lib/open_ehr/rm/composition/content/entry.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(args = { }) ⇒ IsmTransition

Returns a new instance of IsmTransition.



228
229
230
231
232
233
# File 'lib/open_ehr/rm/composition/content/entry.rb', line 228

def initialize(args = { })
  super(args)
  self.current_state = args[:current_state]
  self.transition = args[:transition]
  self.careflow_step = args[:careflow_step]
end

Instance Attribute Details

#careflow_stepObject

Returns the value of attribute careflow_step.



226
227
228
# File 'lib/open_ehr/rm/composition/content/entry.rb', line 226

def careflow_step
  @careflow_step
end

#current_stateObject

Returns the value of attribute current_state.



225
226
227
# File 'lib/open_ehr/rm/composition/content/entry.rb', line 225

def current_state
  @current_state
end

#transitionObject

Returns the value of attribute transition.



225
226
227
# File 'lib/open_ehr/rm/composition/content/entry.rb', line 225

def transition
  @transition
end