| org.netbeans.microedition.util.Executable
Executable | public interface Executable (Code) | | Interface defining an execute method, which can throw exception. This
exception is then used in WaitScreen to determine whether the Executable
succeeded or failed.
author: breh |
Method Summary | |
public void | execute() Method to be executed. |
execute | public void execute() throws Exception(Code) | | Method to be executed. By throwing/not throwing exception the method notifies whether the code finished succesfully or whetehr it failed.
throws: java.lang.Exception - can throw this exception when the method fails. |
|
|