Class: UIC::Application::StateMachine::VisualAction::Generic

Inherits:
Object
  • Object
show all
Defined in:
lib/ruic/statemachine.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(el, owner) ⇒ Generic

TODO: xmlattributes



228
229
230
231
232
# File 'lib/ruic/statemachine.rb', line 228

def initialize(el,owner)
	@el = el
	@owner = owner
	@machine = owner.machine
end

Instance Attribute Details

#elNokogiri::XML::Element (readonly)

Returns the Nokogiri element representing this action in the .uia.

Returns:

  • (Nokogiri::XML::Element)

    the Nokogiri element representing this action in the .uia.



221
222
223
# File 'lib/ruic/statemachine.rb', line 221

def el
  @el
end

#ownerVisualState, VisualTransition (readonly)

Returns the visual state or transition wrapping this action.

Returns:



224
225
226
# File 'lib/ruic/statemachine.rb', line 224

def owner
  @owner
end