com.tivoli.twg.console
Interface TWGTaskFrameImplementor

All Known Implementing Classes:
TWGTaskFrame

Deprecated. - All Director GUI Extensions should inherit from TWGTaskFrame. Scheduled for removal in framework4 release.

public interface TWGTaskFrameImplementor

See Also:
TWGTaskFrame

Field Summary
static int MAIN_CONSOLE_SHUTDOWN
          Deprecated. - replaced by TWGTaskFrame.MAIN_CONSOLE_SHUTDOWN
static int SERVER_REQUESTED_CLOSE
          Deprecated. - replaced by TWGTaskFrame.SERVER_REQUESTED_CLOSE
static int USER_REQUESTED_CLOSE
          Deprecated. - replaced by TWGTaskFrame.USER_REQUESTED_CLOSE
 
Method Summary
 void consoleCancel(int cancelType)
          Deprecated. Called by the console when this instance of the task frame is being cancelled.
 void consoleStart()
          Deprecated. Called by the server to start the task frame console.
 TWGTaskActivator getTaskActivator()
          Deprecated. Retrieve the task activation object for this task.
 void serverTaskEnded(int endingType)
          Deprecated. Called by the console when the server task activation for this instance of the task frame has ended.
 void setTaskActivator(TWGTaskActivator activator)
          Deprecated. This method is called prior to this task frame's thread being started (i.e.
 

Field Detail

USER_REQUESTED_CLOSE

public static final int USER_REQUESTED_CLOSE
Deprecated. - replaced by TWGTaskFrame.USER_REQUESTED_CLOSE

Parameter passed on consoleCancel() requests.

See Also:
Constant Field Values

SERVER_REQUESTED_CLOSE

public static final int SERVER_REQUESTED_CLOSE
Deprecated. - replaced by TWGTaskFrame.SERVER_REQUESTED_CLOSE

Parameter passed on consoleCancel() requests.

See Also:
Constant Field Values

MAIN_CONSOLE_SHUTDOWN

public static final int MAIN_CONSOLE_SHUTDOWN
Deprecated. - replaced by TWGTaskFrame.MAIN_CONSOLE_SHUTDOWN

Parameter passed on consoleCancel() requests.

See Also:
Constant Field Values
Method Detail

setTaskActivator

public void setTaskActivator(TWGTaskActivator activator)
Deprecated. 
This method is called prior to this task frame's thread being started (i.e. before the run() method is called. This is where any initialization based on the specific task activation should be done.

Parameters:
activator - TWGTaskActivator object containing all the information about the task activation that is causing this task frame to be run. Use the getTask() and getSubtask() methods to obtain any details about the task and subtask being activated.

getTaskActivator

public TWGTaskActivator getTaskActivator()
Deprecated. 
Retrieve the task activation object for this task.


consoleCancel

public void consoleCancel(int cancelType)
Deprecated. 
Called by the console when this instance of the task frame is being cancelled. All termination processing should be done here, and the main thread should be exited.

Parameters:
cancelType - This indicates which type of cancellation is occurring.

serverTaskEnded

public void serverTaskEnded(int endingType)
Deprecated. 
Called by the console when the server task activation for this instance of the task frame has ended. All termination processing should be done here, and the main thread should be exited.

Parameters:
endingType - This indicates why the server task ended (i.e. completed successfully, error occurred, etc.

consoleStart

public void consoleStart()
Deprecated. 
Called by the server to start the task frame console.