Class: Relyze::TCG::TCGEdge

Inherits:
Graph::Edge show all
Defined in:
C:/Program Files/Relyze/lib/relyze/core/tcg.rb

Instance Attribute Summary collapse

Attributes inherited from Graph::Edge

#data, #display, #graph, #label, #lhs, #name, #rhs

Instance Method Summary collapse

Methods inherited from Graph::Edge

#remove, #to_dot, #to_s, #to_svg

Constructor Details

#initialize(graph, lhs, rhs, data) ⇒ TCGEdge

Returns a new instance of TCGEdge

[View source]

117
118
119
120
# File 'C:/Program Files/Relyze/lib/relyze/core/tcg.rb', line 117

def initialize( graph, lhs, rhs, data )
    super
    @condition = nil
end

Instance Attribute Details

#conditionObject

Returns the value of attribute condition


115
116
117
# File 'C:/Program Files/Relyze/lib/relyze/core/tcg.rb', line 115

def condition
  @condition
end
iv>