Class SynFlowFactory::Transition
In: lib/syn_flow.rb
Parent: Object

Methods

==   new   to_a  

Attributes

dest  [R] 
label  [R] 
src  [R] 

Public Class methods

[Source]

# File lib/syn_flow.rb, line 47
    def initialize ( src, label, dest )
      @src, @label, @dest = src, label, dest
    end

Public Instance methods

[Source]

# File lib/syn_flow.rb, line 55
    def == ( rhs )
      rhs.is_a? self.class and
       @label == rhs.label and
         @dest == rhs.dest and
           @src == rhs.src
    end

[Source]

# File lib/syn_flow.rb, line 51
    def to_a
      [@src, @label, @dest]
    end

[Validate]