Class: CPEE::ProcessTransformation::Conditional

Inherits:
Object
  • Object
show all
Includes:
Container, Struct, Enumerable
Defined in:
lib/cpee/processtransformation/structures.rb

Overview

}}}

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Struct

#each, #length

Methods included from Container

#container?

Constructor Details

#initialize(id, mode, type) ⇒ Conditional

Returns a new instance of Conditional.



151
152
153
154
155
156
157
158
# File 'lib/cpee/processtransformation/structures.rb', line 151

def initialize(id,mode,type)
  @container = true
  @id = id
  @sub = []
  @mode = mode
  @type = type
  @attributes = {}
end

Instance Attribute Details

#attributesObject (readonly)

Returns the value of attribute attributes.



149
150
151
# File 'lib/cpee/processtransformation/structures.rb', line 149

def attributes
  @attributes
end

#containerObject (readonly)

Returns the value of attribute container.



147
148
149
# File 'lib/cpee/processtransformation/structures.rb', line 147

def container
  @container
end

#idObject (readonly)

Returns the value of attribute id.



148
149
150
# File 'lib/cpee/processtransformation/structures.rb', line 148

def id
  @id
end

#modeObject (readonly)

Returns the value of attribute mode.



148
149
150
# File 'lib/cpee/processtransformation/structures.rb', line 148

def mode
  @mode
end

#subObject (readonly)

Returns the value of attribute sub.



148
149
150
# File 'lib/cpee/processtransformation/structures.rb', line 148

def sub
  @sub
end

#typeObject

Returns the value of attribute type.



150
151
152
# File 'lib/cpee/processtransformation/structures.rb', line 150

def type
  @type
end

Instance Method Details

#new_branchObject



159
160
161
# File 'lib/cpee/processtransformation/structures.rb', line 159

def new_branch
  (@sub << Alternative.new(@id)).last
end