Click or drag to resize

Sequence Class

A sequence object with references to child sequences. A sequence is basically a rule application or a computation, or an operator combining them.
Inheritance Hierarchy
SystemObject
  de.unika.ipd.grGen.libGrSequenceBase
    de.unika.ipd.grGen.libGrSequence
      More

Namespace: de.unika.ipd.grGen.libGr
Assembly: libGr (in libGr.dll) Version: GrGen.NET 7.1
Syntax
C#
public abstract class Sequence : SequenceBase

The Sequence type exposes the following members.

Constructors
 NameDescription
Protected methodSequence(Sequence) Copy constructor.
Protected methodSequence(SequenceType) Initializes a new Sequence object with the given sequence type.
Top
Properties
 NameDescription
Public propertyChildren Enumerates all child sequence objects
Public propertyChildrenBase
(Overrides SequenceBaseChildrenBase)
Public propertyExecutionState the state of executing this sequence base (a sequence base comprises sequences, sequence computations, sequence expressions)
(Inherited from SequenceBase)
Public propertyId returns the sequence /expresion id - every sequence /expression is assigned a unique id that is used in xgrs code generation and in sequence rendering for copies a new id is generated, too, this does not cause problems as code is only generated once per defined sequence
(Inherited from SequenceBase)
Public propertyPrecedence The precedence of this operator. Zero is the highest priority, int.MaxValue the lowest. Used to add needed parentheses for printing sequences /expressions TODO: WTF? das ist im Parser genau umgekehrt implementiert!
(Inherited from SequenceBase)
Public propertySymbol A string symbol representing this sequence /expression kind.
(Inherited from SequenceBase)
Top
Methods
 NameDescription
Public methodApply Applies this sequence.
Protected methodApplyImpl Applies this sequence. This function represents the actual implementation of the sequence.
Public methodCheck Checks the sequence for errors utilizing the given checking environment reports them by exception default behavior: check all the children
(Overrides SequenceBaseCheck(SequenceCheckingEnvironment))
Protected methodCheckBaseObjectTypeIsKnown
(Inherited from SequenceBase)
Protected methodCheckEdgeTypeIsKnown
(Inherited from SequenceBase)
Protected methodCheckGraphElementTypeIsKnown
(Inherited from SequenceBase)
Protected methodCheckNodeTypeIsKnown
(Inherited from SequenceBase)
Public methodContains Returns whether the potentialChild is contained in this sequence (base). True if potentialChild is the same as this sequence (base) (so reflexive relation).
(Inherited from SequenceBase)
Public methodFireBeginExecutionEvent
(Inherited from SequenceBase)
Public methodFireEndExecutionEvent
(Inherited from SequenceBase)
Public methodFireEnteringSequenceEvent
(Inherited from SequenceBase)
Public methodFireExitingSequenceEvent
(Inherited from SequenceBase)
Public methodGetCurrentlyExecutedSequenceBase Returns the innermost sequence base beneath this as root which gets currently executed (for sequences on call stack this is the call). A path in the sequence tree gets executed, the innermost is the important one.
(Inherited from SequenceBase)
Public methodGetLocalVariables(DictionarySequenceVariable, SetValueType, ListSequenceExpressionConstructor, SequenceBase) Walks the sequence tree from this on to the given target sequence base (inclusive), collecting all variables found on the way into the variables dictionary, and all container and object type constructors used into the constructors array.
(Inherited from SequenceBase)
Protected methodGetTypeString
(Inherited from SequenceBase)
Public methodHasSequenceType
(Overrides SequenceBaseHasSequenceType(SequenceType))
Public methodResetExecutionState Reset the execution state after a run (for following runs). The sequence to be iterated gets reset before each iteration.
Public methodSetNeedForProfiling sets for the very node the profiling flag (does not recurse)
(Inherited from SequenceBase)
Public methodSetNeedForProfilingRecursive sets for the node and all children, i.e. the entire tree the profiling flag
(Inherited from SequenceBase)
Public methodType Returns the type of the sequence, which is "boolean"
(Overrides SequenceBaseType(SequenceCheckingEnvironment))
Top
Fields
 NameDescription
Protected fieldid stores the sequence /expression unique id
(Inherited from SequenceBase)
Public fieldSequenceType The type of the sequence (e.g. LazyOr or Transaction)
Top
See Also
Inheritance Hierarchy