Class: UIC::Application::StateMachine::VisualAction::Generic
- Inherits:
-
Object
- Object
- UIC::Application::StateMachine::VisualAction::Generic
- Defined in:
- lib/ruic/statemachine.rb
Instance Attribute Summary collapse
-
#el ⇒ Nokogiri::XML::Element
readonly
The Nokogiri element representing this action in the
.uia
. -
#owner ⇒ VisualState, VisualTransition
readonly
The visual state or transition wrapping this action.
Instance Method Summary collapse
-
#initialize(el, owner) ⇒ Generic
constructor
TODO: xmlattributes.
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
#el ⇒ Nokogiri::XML::Element (readonly)
Returns the Nokogiri element representing this action in the .uia
.
221 222 223 |
# File 'lib/ruic/statemachine.rb', line 221 def el @el end |
#owner ⇒ VisualState, VisualTransition (readonly)
Returns the visual state or transition wrapping this action.
224 225 226 |
# File 'lib/ruic/statemachine.rb', line 224 def owner @owner end |