1 package org.columba.api.command; 2 3 public interface ICommand { 4 5 public abstract void updateGUI() throws Exception ; 6 7 14 public abstract void execute(IWorkerStatusController worker) 15 throws Exception ; 16 17 public abstract ICommandReference getReference(); 18 19 public abstract void releaseAllFolderLocks(); 20 21 public abstract boolean canBeProcessed(); 22 23 } | Popular Tags |