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