charly.client
Class ChTaskAdapter

java.lang.Object
  extended bycharly.client.ChTaskAdapter
All Implemented Interfaces:
ChTaskListener
Direct Known Subclasses:
ChGpibSrq.ChCheckSrqTaskListener

public class ChTaskAdapter
extends java.lang.Object
implements ChTaskListener

A dummy-class for ChTaskListener.


Constructor Summary
ChTaskAdapter()
           
 
Method Summary
 void taskAborted(ChTaskEvent ev)
          This method is called, when the server aborted the task.
 void taskStarted(ChTaskEvent ev)
          This method is called, when the server started the task.
 void taskStopped(ChTaskEvent ev)
          This method is called after the stop of the task.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ChTaskAdapter

public ChTaskAdapter()
Method Detail

taskStarted

public void taskStarted(ChTaskEvent ev)
Description copied from interface: ChTaskListener
This method is called, when the server started the task. I.e. the resources are bound to the task and can be used.

Specified by:
taskStarted in interface ChTaskListener

taskAborted

public void taskAborted(ChTaskEvent ev)
Description copied from interface: ChTaskListener
This method is called, when the server aborted the task. This is usually the case after ChMonitor.abortTask(String) was called.

Specified by:
taskAborted in interface ChTaskListener

taskStopped

public void taskStopped(ChTaskEvent ev)
Description copied from interface: ChTaskListener
This method is called after the stop of the task. A stop is the regular end of a task caused by ChTask.stop().

Specified by:
taskStopped in interface ChTaskListener