KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > columba > api > command > ICommand


1 package org.columba.api.command;
2
3 public interface ICommand {
4
5     public abstract void updateGUI() throws Exception JavaDoc;
6
7     /**
8      * Command must implement this method Executes the Command when run the
9      * first time
10      *
11      * @param worker
12      * @throws Exception
13      */

14     public abstract void execute(IWorkerStatusController worker)
15             throws Exception JavaDoc;
16
17     public abstract ICommandReference getReference();
18     
19     public abstract void releaseAllFolderLocks();
20     
21     public abstract boolean canBeProcessed();
22
23 }
Popular Tags