--- jsampler/trunk/src/org/jsampler/view/InstrumentsDbTableView.java 2011/11/23 18:58:46 2287 +++ jsampler/trunk/src/org/jsampler/view/InstrumentsDbTableView.java 2011/11/23 21:19:44 2288 @@ -22,19 +22,17 @@ package org.jsampler.view; -import javax.swing.Icon; - /** * Provides UI information for instruments database tables. * @author Grigor Iliev */ -public interface InstrumentsDbTableView { +public interface InstrumentsDbTableView { /** Gets the folder icon. */ - public Icon getFolderIcon(); + public I getFolderIcon(); /** Gets the default instrument icon. */ - public Icon getInstrumentIcon(); + public I getInstrumentIcon(); /** Gets the icon used for representing GigaSamppler instruments. */ - public Icon getGigInstrumentIcon(); + public I getGigInstrumentIcon(); }