Package adams.parser
Class ActorSuggestion.SuggestionData
- java.lang.Object
-
- adams.parser.ActorSuggestion.SuggestionData
-
- Enclosing class:
- ActorSuggestion
public static class ActorSuggestion.SuggestionData extends Object
Container class for data required for making suggestions.- Version:
- $Revision$
- Author:
- fracpete (fracpete at waikato dot ac dot nz)
-
-
Field Summary
Fields Modifier and Type Field Description Node[]
actorNodes
the actor nodes on the same level.Actor[]
actors
the actors on the same level.boolean
allowSinks
whether sinks are allowed.boolean
allowSources
whether sources are allowed.boolean
allowStandalones
whether standalones are allowed.boolean
allowTransformers
whether transformers are allowed.Actor
parent
the parent.Node
parentNode
the parent node.int
position
the position.
-
Constructor Summary
Constructors Constructor Description SuggestionData()
-
-
-
Field Detail
-
parent
public Actor parent
the parent.
-
parentNode
public Node parentNode
the parent node.
-
position
public int position
the position.
-
actors
public Actor[] actors
the actors on the same level.
-
actorNodes
public Node[] actorNodes
the actor nodes on the same level.
-
allowStandalones
public boolean allowStandalones
whether standalones are allowed.
-
allowSources
public boolean allowSources
whether sources are allowed.
-
allowTransformers
public boolean allowTransformers
whether transformers are allowed.
-
allowSinks
public boolean allowSinks
whether sinks are allowed.
-
-