Class: CPEE::ProcessTransformation::Branch
- Inherits:
-
Array
- Object
- Array
- CPEE::ProcessTransformation::Branch
- Includes:
- Container
- Defined in:
- lib/cpee/processtransformation/structures.rb
Overview
}}}
Instance Attribute Summary collapse
-
#id ⇒ Object
readonly
Returns the value of attribute id.
Instance Method Summary collapse
- #condition? ⇒ Boolean
-
#initialize(id) ⇒ Branch
constructor
A new instance of Branch.
Methods included from Container
Constructor Details
#initialize(id) ⇒ Branch
Returns a new instance of Branch.
96 97 98 99 |
# File 'lib/cpee/processtransformation/structures.rb', line 96 def initialize(id) @container = true @id = id end |
Instance Attribute Details
#id ⇒ Object (readonly)
Returns the value of attribute id.
94 95 96 |
# File 'lib/cpee/processtransformation/structures.rb', line 94 def id @id end |
Instance Method Details
#condition? ⇒ Boolean
95 |
# File 'lib/cpee/processtransformation/structures.rb', line 95 def condition?; false; end |