001    package nl.cwi.sen1.tide.tool;
002    
003    import javax.swing.Icon;
004    
005    import nl.cwi.sen1.tide.tool.support.DebugAdapter;
006    
007    public interface AdapterToolFactory
008    {
009      public AdapterTool createTool(DebugAdapter adapter);
010      public String getName();
011      public Icon   getIcon();
012    }