Uses of Class
com.frinika.sequencer.model.Lane

Packages that use Lane
com.frinika.notation   
com.frinika.project   
com.frinika.sequencer.gui.partview   
com.frinika.sequencer.gui.pianoroll   
com.frinika.sequencer.model   
 

Uses of Lane in com.frinika.notation
 

Method parameters in com.frinika.notation with type arguments of type Lane
 void NotationPanel.selectionChanged(SelectionContainer<? extends Lane> src)
           
 

Uses of Lane in com.frinika.project
 

Methods in com.frinika.project that return types with arguments of type Lane
 java.util.List<Lane> ProjectContainer.getLanes()
           
 java.util.Vector<Lane> ProjectContainer.recordableLaneList()
           
 

Methods in com.frinika.project with parameters of type Lane
 void ProjectContainer.add(int index, Lane lane)
           
 void ProjectContainer.add(Lane lane)
          adds a lane to the project and updates the history
 void ProjectContainer.remove(Lane lane)
           
 void ProjectContainer.validate(Lane parent)
          DEBUGING --- NOT FOR PUBLIC USE
 

Uses of Lane in com.frinika.sequencer.gui.partview
 

Methods in com.frinika.sequencer.gui.partview that return Lane
 Lane LaneHeaderItem.getLane()
           
 

Method parameters in com.frinika.sequencer.gui.partview with type arguments of type Lane
 void VoicePartViewSplitPane.selectionChanged(SelectionContainer<? extends Lane> src)
           
 

Constructors in com.frinika.sequencer.gui.partview with parameters of type Lane
LaneHeaderItem(ProjectFrame frame, LaneHeaderPanel parent, Lane lane, int index)
           
LaneView(Lane lane)
           
SynthLaneView(Lane lane)
           
 

Uses of Lane in com.frinika.sequencer.gui.pianoroll
 

Method parameters in com.frinika.sequencer.gui.pianoroll with type arguments of type Lane
 void PianoControllerSplitPane.selectionChanged(SelectionContainer<? extends Lane> src)
           
 

Uses of Lane in com.frinika.sequencer.model
 

Subclasses of Lane in com.frinika.sequencer.model
 class AudioLane
           
 class MidiLane
           
 class ProjectLane
           
 class SynthLane
           
 class TextLane
          Text lane.
 

Fields in com.frinika.sequencer.model declared as Lane
protected  Lane Part.lane
           
 

Fields in com.frinika.sequencer.model with type parameters of type Lane
protected  java.util.List<Lane> Lane.children
           
 

Methods in com.frinika.sequencer.model that return Lane
 Lane Part.getLane()
           
 Lane Ghost.getLane()
           
 Lane MidiPartGhost.getLane()
           
 

Methods in com.frinika.sequencer.model that return types with arguments of type Lane
 java.util.List<Lane> Lane.getChildren()
           
 java.util.List<Lane> Lane.getFamilyLanes()
          Return a flat view of the decendent lanes.
 java.util.List<Lane> ViewableLaneList.getVisibleLanes()
           
 java.util.Iterator<Lane> ViewableLaneList.iterator()
           
 

Methods in com.frinika.sequencer.model with parameters of type Lane
 void Lane.addChildLane(int indexInList, Lane lane)
           
 void Lane.addChildLane(Lane lane)
           
 void TextPart.copyBy(double tick, Lane dst)
           
abstract  void Part.copyBy(double tick, Lane dst)
           
 void MidiPart.copyBy(double deltaTick, Lane dst)
           
 void MidiPartGhost.copyBy(double deltaTick, Lane dst)
           
 void AudioPart.copyBy(double tick, Lane dst)
           
 void TextPart.moveContentsBy(double tick, Lane dstLane)
           
abstract  void Part.moveContentsBy(double tick, Lane dstLane)
          move the contents by tick into dstLane
 void MidiPart.moveContentsBy(double dTick, Lane dstLane)
           
 void MidiPartGhost.moveContentsBy(double dTick, Lane dstLane)
           
 void AudioPart.moveContentsBy(double dTick, Lane dstLane)
           
 void Lane.removeChildLane(Lane lane)
          Lane to add
 

Constructors in com.frinika.sequencer.model with parameters of type Lane
AudioPart(Lane lane, java.io.File clipFile, double startTimeInMicros)
          Creates a new AudioPart.
MidiPartGhost(MidiPart referredPart, Lane lane)
           
MovePartEditAction(Part part, double dTick, Lane dstLane)
           
Part(Lane lane)
          Construct a new Part and add it to it's lane.