Click or drag to resize
StaMaIStateConfigurationVisitor Interface
Defines a set of methods which allow for composing a human readable representation of a StateConfiguration.

Namespace: StaMa
Assembly: StaMa (in StaMa.dll) Version: 2.3.1.7
Syntax
public interface IStateConfigurationVisitor

The IStateConfigurationVisitor type exposes the following members.

Methods
  NameDescription
Public methodBeginSubStates
Will be called before enumerating the active states of the sub-regions of a composite state.
Public methodEndSubStates
Will be called after the active states of the sub-regions of a composite state were enumerated.
Public methodNextSubState
Will be called after enumerating the active state of the sub-region of a composite state.
Public methodState
Will be called for every well-defined state of a StateConfiguration.
Public methodStateAny
Will be called when the active state in a StateConfiguration is not specified for a particular Region.
Top
Remarks

The members of this interface are successively called when passing the interface to the StateConfiguration.PassThrough(IStateConfigurationVisitor) method.

An implementation of this interface creates the result of the ToString method.

See Also