Uses of Class
algoanim.properties.QueueProperties

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

Uses of QueueProperties in algoanim.animalscript
 

Methods in algoanim.animalscript with parameters of type QueueProperties
<T> ArrayBasedQueue<T>
AnimalScript.newArrayBasedQueue(Node upperLeft, java.util.List<T> content, java.lang.String name, DisplayOptions display, QueueProperties qp, int capacity)
           
<T> ConceptualQueue<T>
AnimalScript.newConceptualQueue(Node upperLeft, java.util.List<T> content, java.lang.String name, DisplayOptions display, QueueProperties qp)
           
<T> ListBasedQueue<T>
AnimalScript.newListBasedQueue(Node upperLeft, java.util.List<T> content, java.lang.String name, DisplayOptions display, QueueProperties qp)
           
 

Uses of QueueProperties in algoanim.primitives
 

Methods in algoanim.primitives that return QueueProperties
 QueueProperties VisualQueue.getProperties()
          Returns the properties of the queue.
 

Constructors in algoanim.primitives with parameters of type QueueProperties
ArrayBasedQueue(ArrayBasedQueueGenerator<T> abqg, Node upperLeftCorner, java.util.List<T> content, java.lang.String name, DisplayOptions display, QueueProperties qp, int capacity)
          Instantiates the ArrayBasedQueue and calls the create() method of the associated ArrayBasedQueueGenerator.
ConceptualQueue(ConceptualQueueGenerator<T> cqg, Node upperLeftCorner, java.util.List<T> content, java.lang.String name, DisplayOptions display, QueueProperties qp)
          Instantiates the ConceptualQueue and calls the create() method of the associated ConceptualQueueGenerator.
ListBasedQueue(ListBasedQueueGenerator<T> lbqg, Node upperLeftCorner, java.util.List<T> content, java.lang.String name, DisplayOptions display, QueueProperties qp)
          Instantiates the ListBasedQueue and calls the create() method of the associated ListBasedQueueGenerator.
VisualQueue(GeneratorInterface g, Node upperLeftCorner, java.util.List<T> content, java.lang.String name, DisplayOptions display, QueueProperties qp)
          Constructor of the VisualQueue.
 

Uses of QueueProperties in algoanim.primitives.generators
 

Methods in algoanim.primitives.generators with parameters of type QueueProperties
abstract
<T> ArrayBasedQueue<T>
Language.newArrayBasedQueue(Node upperLeft, java.util.List<T> content, java.lang.String name, DisplayOptions display, QueueProperties qp, int capacity)
          Creates a new ArrayBasedQueue object.
abstract
<T> ConceptualQueue<T>
Language.newConceptualQueue(Node upperLeft, java.util.List<T> content, java.lang.String name, DisplayOptions display, QueueProperties qp)
          Creates a new ConceptualQueue object.
abstract
<T> ListBasedQueue<T>
Language.newListBasedQueue(Node upperLeft, java.util.List<T> content, java.lang.String name, DisplayOptions display, QueueProperties qp)
          Creates a new ListBasedQueue object.