Uses of Class
sky.monome.sequencer.SequencerEngine

Packages that use SequencerEngine
sky.monome Main package of SkyMonome library. 
sky.monome.sequencer Package of all classes relative to sequencers. 
 

Uses of SequencerEngine in sky.monome
 

Subclasses of SequencerEngine in sky.monome
protected  class MultiSequencerGroup.SpecificSequencerEngine
          Specific sequencer engine.
 

Fields in sky.monome declared as SequencerEngine
protected  SequencerEngine<SequencerGroup,SequencerRadio.SequencerRadioGroup> SequencerGroup.sequencerEngine
          Sequencer engine.
protected  SequencerEngine<SequencerPageSwitcher,SequencerRadio.SequencerRadioGroup> SequencerPageSwitcher.sequencerEngine
          Sequencer engine.
 

Methods in sky.monome that return SequencerEngine
 SequencerEngine<MultiSequencerGroup.SpecificSequencerGroup,OptionalRadio.OptionalRadioGroup> MultiSequencerGroup.getSequencerEngine()
          Returns the sequencer engine that is used by all sequencers of this group.
 SequencerEngine<MultiSequencerGroup.SpecificSequencerGroup,OptionalRadio.OptionalRadioGroup> MultiSequencerGroup.SpecificSequencerGroup.getSequencerEngine()
          Returns the sequencer engine that is used by this sequencer.
 SequencerEngine<SequencerGroup,SequencerRadio.SequencerRadioGroup> SequencerGroup.getSequencerEngine()
          Returns the sequencer engine that is used by this sequencer.
 SequencerEngine<SequencerPageSwitcher,SequencerRadio.SequencerRadioGroup> SequencerPageSwitcher.getSequencerEngine()
          Returns the sequencer engine that is used by this sequencer.
 

Methods in sky.monome with parameters of type SequencerEngine
 void MultiSequencerGroup.SpecificSequencerGroup.sequencingAction(SequencerEngine<MultiSequencerGroup.SpecificSequencerGroup,OptionalRadio.OptionalRadioGroup> sequencerEngine)
          Invoked when this sequencer must iterate over the sequence.
 void SequencerGroup.sequencingAction(SequencerEngine<SequencerGroup,SequencerRadio.SequencerRadioGroup> sequencerEngine)
          Invoked when this sequencer must iterate over the sequence.
 void SequencerPageSwitcher.sequencingAction(SequencerEngine<SequencerPageSwitcher,SequencerRadio.SequencerRadioGroup> sequencerEngine)
          Invoked when this sequencer must iterate over the sequence.
 

Constructors in sky.monome with parameters of type SequencerEngine
SequencerGroup(java.lang.String name, Container container, int x, int y, int width, int height, Sequencer.SequencerOrientation sequencerOrientation, float tempo, int divisions, int stepsNumber, boolean optional, SequenceIterator<SequencerGroup,SequencerRadio.SequencerRadioGroup> sequenceIterator, SequencerEngine<SequencerGroup,SequencerRadio.SequencerRadioGroup> sequencerEngine)
          Deprecated. Since SkyMonome v1.2, all components register themselves inside their container, so you don't need to specify the container by calling this constructor.
SequencerGroup(java.lang.String name, Container container, int x, int y, int width, int height, Sequencer.SequencerOrientation sequencerOrientation, float tempo, int divisions, int stepsNumber, boolean optional, SequenceIteratorFactory<SequencerGroup,SequencerRadio.SequencerRadioGroup> sequenceIteratorFactory, SequencerEngine<SequencerGroup,SequencerRadio.SequencerRadioGroup> sequencerEngine)
          Deprecated. Since SkyMonome v1.2, all components register themselves inside their container, so you don't need to specify the container by calling this constructor.
SequencerGroup(java.lang.String name, Container container, int x, int y, int width, int height, Sequencer.SequencerOrientation sequencerOrientation, float tempo, int divisions, int stepsNumber, boolean optional, SequencerEngine<SequencerGroup,SequencerRadio.SequencerRadioGroup> sequencerEngine)
          Deprecated. Since SkyMonome v1.2, all components register themselves inside their container, so you don't need to specify the container by calling this constructor.
SequencerGroup(java.lang.String name, int x, int y, int width, int height, Sequencer.SequencerOrientation sequencerOrientation, float tempo, int divisions, int stepsNumber, boolean optional, SequenceIterator<SequencerGroup,SequencerRadio.SequencerRadioGroup> sequenceIterator, SequencerEngine<SequencerGroup,SequencerRadio.SequencerRadioGroup> sequencerEngine)
          Constructs a sequencer group with the specified name, specified coordinates and dimensions, the specified orientation, specified tempo and number of divisions by quarter note, the specified steps number, the specified mode for radio groups, the specified sequence iterator and the specified sequencer engine.
SequencerGroup(java.lang.String name, int x, int y, int width, int height, Sequencer.SequencerOrientation sequencerOrientation, float tempo, int divisions, int stepsNumber, boolean optional, SequenceIteratorFactory<SequencerGroup,SequencerRadio.SequencerRadioGroup> sequenceIteratorFactory, SequencerEngine<SequencerGroup,SequencerRadio.SequencerRadioGroup> sequencerEngine)
          Constructs a sequencer group with the specified name, specified coordinates and dimensions, the specified orientation, specified tempo and number of divisions by quarter note, the specified steps number, the specified mode for radio groups, the specified sequence iterator factory and the specified sequencer engine.
SequencerGroup(java.lang.String name, int x, int y, int width, int height, Sequencer.SequencerOrientation sequencerOrientation, float tempo, int divisions, int stepsNumber, boolean optional, SequencerEngine<SequencerGroup,SequencerRadio.SequencerRadioGroup> sequencerEngine)
          Constructs a sequencer group with the specified name, specified coordinates and dimensions, the specified orientation, specified tempo and number of divisions by quarter note, the specified steps number, the specified mode for radio groups and the specified sequencer engine.
 

Uses of SequencerEngine in sky.monome.sequencer
 

Methods in sky.monome.sequencer that return SequencerEngine
 SequencerEngine<S,B> Sequencer.getSequencerEngine()
          Returns the sequencer engine that is used by this sequencer.
 

Methods in sky.monome.sequencer with parameters of type SequencerEngine
 void Sequencer.sequencingAction(SequencerEngine<S,B> sequencerEngine)
          Invoked when this sequencer must iterate over the sequence.