Uses of Interface
uchicago.src.sim.analysis.Sequence

Packages that use Sequence
uchicago.src.sim.analysis   
uchicago.src.sim.analysis.plot   
uchicago.src.sim.util   
 

Uses of Sequence in uchicago.src.sim.analysis
 

Classes in uchicago.src.sim.analysis that implement Sequence
 class AverageSequence
          Computes the minimum of a sequence of values, based on a list of objects and a method to call on them.
 class MaxSequence
          Computes the maximum of a sequence of values, based on a list of objects and a method to call on them.
 class MinSequence
          Computes the minimum of a sequence of values, based on a list of objects and a method to call on them.
 class ObjectSequence
          A source for sequence data from a single object.
 

Fields in uchicago.src.sim.analysis declared as Sequence
protected  Sequence NetSeqTableRow.sequence
           
 

Methods in uchicago.src.sim.analysis that return Sequence
 Sequence OpenSequenceGraph.addSequence(java.lang.String name, Sequence sequence)
          Adds the specified sequence with the specified name.
 Sequence OpenSeqStatistic.addSequence(java.lang.String name, Sequence sequence)
          Adds the specified sequence with the specified name.
 Sequence OpenSequenceGraph.addSequence(java.lang.String name, Sequence sequence, java.awt.Color color)
          Adds the specified sequence with the specified name to be drawn in the specific color.
 Sequence OpenSequenceGraph.addSequence(java.lang.String name, Sequence sequence, java.awt.Color color, int markStyle)
          Adds the specified sequence with the specified name to be drawn in the specific color, whose points will be drawn in the specified style.
 Sequence OpenSequenceGraph.addSequence(java.lang.String name, Sequence sequence, int markStyle)
          Adds the specified sequence with specified name whose points will be drawn in the specified style.
 Sequence OpenSeqStatistic.createAverageSequence(java.lang.String name, java.util.ArrayList feedFrom, java.lang.String methodName)
          Creates an Average sequence with the specified name, using data from the specified list attained through the specified method name.
 Sequence OpenSequenceGraph.createSequence(java.lang.String name, java.awt.Color color, int markStyle, java.lang.Object feedFrom, java.lang.String methodName)
          Creates and adds a Sequence to this SequenceGraph.
 Sequence OpenSequenceGraph.createSequence(java.lang.String name, java.awt.Color color, java.lang.Object feedFrom, java.lang.String methodName)
          Creates and adds a Sequence to this SequenceGraph.
 Sequence OpenSequenceGraph.createSequence(java.lang.String name, int markStyle, java.lang.Object feedFrom, java.lang.String methodName)
          Creates and adds a Sequence to this SequenceGraph.
 Sequence OpenSequenceGraph.createSequence(java.lang.String name, java.lang.Object feedFrom, java.lang.String methodName)
          Creates and adds a Sequence to this SequenceGraph.
 Sequence OpenSeqStatistic.createSequence(java.lang.String name, java.lang.Object feedFrom, java.lang.String methodName)
          Creates a sequence with the specified name, using data from the specified object attained through the specified method name.
 

Methods in uchicago.src.sim.analysis with parameters of type Sequence
 Sequence OpenSequenceGraph.addSequence(java.lang.String name, Sequence sequence)
          Adds the specified sequence with the specified name.
 Sequence OpenSeqStatistic.addSequence(java.lang.String name, Sequence sequence)
          Adds the specified sequence with the specified name.
 Sequence OpenSequenceGraph.addSequence(java.lang.String name, Sequence sequence, java.awt.Color color)
          Adds the specified sequence with the specified name to be drawn in the specific color.
 Sequence OpenSequenceGraph.addSequence(java.lang.String name, Sequence sequence, java.awt.Color color, int markStyle)
          Adds the specified sequence with the specified name to be drawn in the specific color, whose points will be drawn in the specified style.
 Sequence OpenSequenceGraph.addSequence(java.lang.String name, Sequence sequence, int markStyle)
          Adds the specified sequence with specified name whose points will be drawn in the specified style.
 

Constructors in uchicago.src.sim.analysis with parameters of type Sequence
NetSeqTableRow(java.lang.String name, Sequence seq, java.awt.Color color)
           
 

Uses of Sequence in uchicago.src.sim.analysis.plot
 

Methods in uchicago.src.sim.analysis.plot that return Sequence
protected  Sequence OpenGraph.createSequence(java.lang.Object feedFrom, java.lang.String methodName)
          Creates a Sequence, wrapping a call of specified methodName on the feedFrom object in Sequence.getSValue().
 

Uses of Sequence in uchicago.src.sim.util
 

Methods in uchicago.src.sim.util that return Sequence
static Sequence ByteCodeBuilder.generateSequence(java.lang.Object target, java.lang.String methodName)
          Dynamically creates a Sequence object whose execute method calls the specified method on the specified object.