View Javadoc

1   /*
2    * Created on Jun 20, 2005
3    *
4    */
5   package org.musicontroller.gui.components;
6   
7   
8   import org.apache.tapestry.BaseComponent;
9   import org.musicontroller.core.Instrument;
10  
11  
12  public abstract class InstrumentLink extends BaseComponent {
13  	public abstract Instrument getInstrument();
14  	public abstract void setInstrument(Instrument instrument);
15  
16  }