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

Packages that use Part
com.frinika.project   
com.frinika.sequencer.gui.partview   
com.frinika.sequencer.gui.pianoroll   
com.frinika.sequencer.gui.tracker   
com.frinika.sequencer.model   
com.frinika.sequencer.model.util   
 

Uses of Part in com.frinika.project
 

Methods in com.frinika.project that return types with arguments of type Part
 java.util.Vector<Part> MultiPart.getParts()
           
 

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

Methods in com.frinika.sequencer.gui.partview with parameters of type Part
 java.awt.Rectangle PartView.getPartBounds(Part part)
           
 

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

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

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

Uses of Part in com.frinika.sequencer.gui.tracker
 

Method parameters in com.frinika.sequencer.gui.tracker with type arguments of type Part
 void TrackerPanel.partsRemovedFromSelection(java.util.Collection<Part> parts)
           
 void TrackerPanel.selectionChanged(SelectionContainer<? extends Part> src)
           
 

Uses of Part in com.frinika.sequencer.model
 

Subclasses of Part in com.frinika.sequencer.model
 class AudioPart
           
 class MidiPart
          Contains a List of MultiEvents.
 class MidiPartGhost
          Ghost ("reference-copy") of a MidiPart.
 class TextPart
          In-place editable text part.
 

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

Methods in com.frinika.sequencer.model that return Part
 Part TextLane.createPart()
           
abstract  Part Lane.createPart()
           
 Part SynthLane.createPart()
           
 Part ProjectLane.createPart()
           
 Part AudioLane.createPart()
           
 Part MidiLane.createPart()
           
 Part Part.getEditParent()
           
 Part MovePartEditAction.getPart()
           
 Part ResizePartAction.getPart()
           
 Part Ghost.getReferredPart()
           
 Part Part.getRootPart()
           
 

Methods in com.frinika.sequencer.model that return types with arguments of type Part
 java.util.List<Part> Lane.getParts()
           
 

Methods in com.frinika.sequencer.model with parameters of type Part
 void Lane.add(Part part)
           
 void Lane.remove(Part part)
          remove a part.
 void Part.setEditParent(Part editParent)
           
 void Part.setRootPart(Part rootPart)
           
 

Constructors in com.frinika.sequencer.model with parameters of type Part
MovePartEditAction(Part part, double dTick, Lane dstLane)
           
ResizePartAction(Part part, double start, double end)
           
 

Uses of Part in com.frinika.sequencer.model.util
 

Constructors in com.frinika.sequencer.model.util with parameters of type Part
EventsInPartsIterator(Part part, EventFilter filter)
           
 

Constructor parameters in com.frinika.sequencer.model.util with type arguments of type Part
EventsInPartsIterator(java.util.Collection<Part> partList, EventFilter filter)