Interface TaskListener

  • All Superinterfaces:
    EventListener

    public interface TaskListener
    extends EventListener
    An interface wich must be implemented from the tasklistener.
    Author:
    Matthias Scholz
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void taskAdded​(TaskEvent taskEvent)
      This method will be called if a new Task was added via the WorkbenchFrame.addTaskFrame(TaskFrame taskFrame) method.
      void taskLoaded​(TaskEvent taskEvent)
      This method will be called after a Task (the project file) was loaded.
    • Method Detail

      • taskAdded

        void taskAdded​(TaskEvent taskEvent)
        This method will be called if a new Task was added via the WorkbenchFrame.addTaskFrame(TaskFrame taskFrame) method.
        Parameters:
        taskEvent - - The TaskEvent.
      • taskLoaded

        void taskLoaded​(TaskEvent taskEvent)
        This method will be called after a Task (the project file) was loaded.
        Parameters:
        taskEvent - - The TaskEvent.