Uses of Class
org.jfugue.Pattern

Packages that use Pattern
org.jfugue   
org.jfugue.demo   
 

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 PatternTransformer.transform(Pattern p)
          Transforms the pattern, according to the event method that you have presumably extended.
abstract  Pattern PatternFactory.getPattern(int selection)
           
 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.
 

Methods in org.jfugue with parameters of type Pattern
 void Pattern.add(Pattern pattern)
          Adds an additional pattern to the end of this pattern.
 java.lang.Object PatternTool.execute(Pattern pattern)
          Runs the pattern tool and returns the result
 Pattern PatternTransformer.transform(Pattern p)
          Transforms the pattern, according to the event method that you have presumably extended.
 void Player.play(Pattern pattern)
          Plays a pattern by setting up a Renderer and feeding the pattern to it.
 void Player.save(Pattern pattern, java.lang.String filename)
          Saves the MIDI data from a pattern into a file.
 javax.sound.midi.Sequence Renderer.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 Parser.parse(Pattern pattern)
          Parses a Pattern and fires events to subscribed ParserListener interfaces.
 

Uses of Pattern in org.jfugue.demo
 

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