Uses of Class
org.jfugue.Pattern

Packages that use Pattern
org.jfugue   
org.jfugue.extras   
 

Uses of Pattern in org.jfugue
 

Fields in org.jfugue declared as Pattern
protected  Pattern PatternTransformer.returnPattern
          Contains the pattern to return at the end of the transformation.
 

Methods in org.jfugue that return Pattern
 Pattern MicrotoneHelper.convertPattern(Pattern pattern)
           
 Pattern PatternFactory.getDemo()
          Takes all of the patterns generated by the PatternFactory, and adds them together into one Pattern that can be used to hear all of the music the PatternFactory is capable of producing.
 Pattern Rhythm.getPattern()
           
 Pattern MusicStringRenderer.getPattern()
           
abstract  Pattern PatternFactory.getPattern(int selection)
           
 Pattern DeviceThatWillTransmitMidi.getPatternFromListening()
           
 Pattern Player.loadMidi(java.io.File file)
          Parses a MIDI file and returns a Pattern.
static Pattern Pattern.loadMusicString(java.io.File file)
           
 Pattern Pattern.subPattern(int beginIndex)
          Returns a new Pattern that is a subpattern of this pattern.
 Pattern Pattern.subPattern(int beginIndex, int endIndex)
          Returns a new Pattern that is a subpattern of this pattern.
 Pattern PatternTransformer.transform(Pattern p)
          Transforms the pattern, according to the event method that you have presumably extended.
 

Methods in org.jfugue with parameters of type Pattern
 void Pattern.add(Pattern pattern)
          Adds an additional pattern to the end of this pattern.
 void Pattern.add(Pattern pattern, int numTimes)
          Adds an additional pattern to the end of this pattern.
 Pattern MicrotoneHelper.convertPattern(Pattern pattern)
           
 java.lang.Object PatternTool.execute(Pattern pattern)
          Runs the pattern tool and returns the result
 void StreamingPlayer.fragmentAdded(Pattern fragment)
          Listener for additions to streaming patterns.
 void PatternListenerAdapter.fragmentAdded(Pattern fragment)
          Called when a new fragment has been added to a pattern
 void PatternListener.fragmentAdded(Pattern fragment)
          Called when a new fragment has been added to a pattern
 javax.sound.midi.Sequence Player.getSequence(Pattern pattern)
          Returns the sequence containing the MIDI data from the given pattern.
 void MusicStringParser.parse(Pattern pattern)
          Parses a Pattern and fires events to subscribed ParserListener interfaces.
 void Player.play(Anticipator anticipator, Pattern pattern, long offset)
           
 void Player.play(MicrotoneHelper microtone, Pattern pattern)
          Plays a pattern that contains microtone identifiers.
 void Player.play(Pattern pattern)
          Plays a pattern by setting up a Renderer and feeding the pattern to it.
 javax.sound.midi.Sequence StreamingMidiRenderer.render(Pattern pattern)
          Starts rendering a pattern by sending it to the parser and listening for parser events to be fired when tokens from the pattern are interpreted.
 javax.sound.midi.Sequence MidiRenderer.render(Pattern pattern)
          Starts rendering a pattern by sending it to the parser and listening for parser events to be fired when tokens from the pattern are interpreted.
 void Player.saveMidi(Pattern pattern, java.io.File file)
          Saves the MIDI data from a pattern into a file.
 Pattern PatternTransformer.transform(Pattern p)
          Transforms the pattern, according to the event method that you have presumably extended.
 

Constructors in org.jfugue with parameters of type Pattern
Pattern(Pattern pattern)
          Copy constructor
StreamingPlayer(Pattern pattern)
          Instantiates a new Player object, which is used for playing music.
 

Uses of Pattern in org.jfugue.extras
 

Methods in org.jfugue.extras that return Pattern
 Pattern RockPatternFactory.getPattern(int selection)