Class: SynFlowFactory::Transition
Instance Attribute Summary collapse
-
#dest ⇒ Object
readonly
Returns the value of attribute dest.
-
#label ⇒ Object
readonly
Returns the value of attribute label.
-
#src ⇒ Object
readonly
Returns the value of attribute src.
Instance Method Summary collapse
- #==(rhs) ⇒ Object
-
#initialize(src, label, dest) ⇒ Transition
constructor
A new instance of Transition.
- #to_a ⇒ Object
Constructor Details
#initialize(src, label, dest) ⇒ Transition
Returns a new instance of Transition.
47 48 49 |
# File 'lib/syn_flow.rb', line 47 def initialize ( src, label, dest ) @src, @label, @dest = src, label, dest end |
Instance Attribute Details
#dest ⇒ Object (readonly)
Returns the value of attribute dest.
45 46 47 |
# File 'lib/syn_flow.rb', line 45 def dest @dest end |
#label ⇒ Object (readonly)
Returns the value of attribute label.
45 46 47 |
# File 'lib/syn_flow.rb', line 45 def label @label end |
#src ⇒ Object (readonly)
Returns the value of attribute src.
45 46 47 |
# File 'lib/syn_flow.rb', line 45 def src @src end |