001package org.vishia.commander.target;
002
003import java.io.Closeable;
004
005/**This is the interface from the GUI to a target.
006 * @author Hartmut Schorrig
007 *
008 */
009public interface FcmdtTarget_ifc extends Closeable
010{
011  public final static int copyFile = 0x1;
012  
013  void cmdTarget(int cmd, String sParam);
014}