Uses of Class
algoanim.properties.StackProperties

Packages that use StackProperties
algoanim.animalscript This package contains the generator back-end for AnimalScript
algoanim.primitives   
algoanim.primitives.generators   
 

Uses of StackProperties in algoanim.animalscript
 

Methods in algoanim.animalscript with parameters of type StackProperties
<T> ArrayBasedStack<T>
AnimalScript.newArrayBasedStack(Node upperLeft, java.util.List<T> content, java.lang.String name, DisplayOptions display, StackProperties sp, int capacity)
           
<T> ConceptualStack<T>
AnimalScript.newConceptualStack(Node upperLeft, java.util.List<T> content, java.lang.String name, DisplayOptions display, StackProperties sp)
           
<T> ListBasedStack<T>
AnimalScript.newListBasedStack(Node upperLeft, java.util.List<T> content, java.lang.String name, DisplayOptions display, StackProperties sp)
           
 

Uses of StackProperties in algoanim.primitives
 

Methods in algoanim.primitives that return StackProperties
 StackProperties VisualStack.getProperties()
          Returns the properties of the stack.
 

Constructors in algoanim.primitives with parameters of type StackProperties
ArrayBasedStack(ArrayBasedStackGenerator<T> absg, Node upperLeftCorner, java.util.List<T> content, java.lang.String name, DisplayOptions display, StackProperties sp, int capacity)
          Instantiates the ArrayBasedStack and calls the create() method of the associated ArrayBasedStackGenerator.
ConceptualStack(ConceptualStackGenerator<T> csg, Node upperLeftCorner, java.util.List<T> content, java.lang.String name, DisplayOptions display, StackProperties sp)
          Instantiates the ConceptualStack and calls the create() method of the associated ConceptualStackGenerator.
ListBasedStack(ListBasedStackGenerator<T> lbsg, Node upperLeftCorner, java.util.List<T> content, java.lang.String name, DisplayOptions display, StackProperties sp)
          Instantiates the ListBasedStack and calls the create() method of the associated ListBasedStackGenerator.
VisualStack(GeneratorInterface g, Node upperLeftCorner, java.util.List<T> content, java.lang.String name, DisplayOptions display, StackProperties sp)
          Constructor of the VisualStack.
 

Uses of StackProperties in algoanim.primitives.generators
 

Methods in algoanim.primitives.generators with parameters of type StackProperties
abstract
<T> ArrayBasedStack<T>
Language.newArrayBasedStack(Node upperLeft, java.util.List<T> content, java.lang.String name, DisplayOptions display, StackProperties sp, int capacity)
          Creates a new ArrayBasedStack object.
abstract
<T> ConceptualStack<T>
Language.newConceptualStack(Node upperLeft, java.util.List<T> content, java.lang.String name, DisplayOptions display, StackProperties sp)
          Creates a new ConceptualStack object.
abstract
<T> ListBasedStack<T>
Language.newListBasedStack(Node upperLeft, java.util.List<T> content, java.lang.String name, DisplayOptions display, StackProperties sp)
          Creates a new ListBasedStack object.