The Gaudi Framework  master (08f81203)
Loading...
Searching...
No Matches
ControlFlow.seq Class Reference
Inheritance diagram for ControlFlow.seq:
Collaboration diagram for ControlFlow.seq:

Public Member Functions

 __init__ (self, item)
 __repr__ (self)
Public Member Functions inherited from ControlFlow.ControlFlowNode
 __and__ (self, rhs)
 __or__ (self, rhs)
 __invert__ (self)
 __rshift__ (self, rhs)
 visitNode (self, visitor)
 __eq__ (self, other)
 __hash__ (self)
 getFullName (self)

Public Attributes

 item = item

Protected Member Functions

 _visitSubNodes (self, visitor)

Additional Inherited Members

Protected Attributes inherited from ControlFlow.ControlFlowNode
 _fullname = makeSequences(self).getFullName()

Detailed Description

Definition at line 200 of file ControlFlow.py.

Constructor & Destructor Documentation

◆ __init__()

ControlFlow.seq.__init__ ( self,
item )

Definition at line 201 of file ControlFlow.py.

201 def __init__(self, item):
202 self.item = item
203

Member Function Documentation

◆ __repr__()

ControlFlow.seq.__repr__ ( self)

Definition at line 204 of file ControlFlow.py.

204 def __repr__(self):
205 return "seq(%r)" % self.item
206

◆ _visitSubNodes()

ControlFlow.seq._visitSubNodes ( self,
visitor )
protected

Reimplemented from ControlFlow.ControlFlowNode.

Definition at line 207 of file ControlFlow.py.

207 def _visitSubNodes(self, visitor):
208 self.item.visitNode(visitor)
209
210

Member Data Documentation

◆ item

ControlFlow.seq.item = item

Definition at line 202 of file ControlFlow.py.


The documentation for this class was generated from the following file: