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[]actorNodesthe actor nodes on the same level.Actor[]actorsthe actors on the same level.booleanallowSinkswhether sinks are allowed.booleanallowSourceswhether sources are allowed.booleanallowStandaloneswhether standalones are allowed.booleanallowTransformerswhether transformers are allowed.Actorparentthe parent.NodeparentNodethe parent node.intpositionthe 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.
-
-