Class CheckInTask

    • Constructor Detail

      • CheckInTask

        public CheckInTask​(PluginTool tool,
                           java.util.List<DomainFile> list,
                           java.awt.Component parent)
        Construct a new CheckInTask.
        Parameters:
        tool - tool that has the files to be checked in
        list - list of domain files to be checked in
        parent - parent of error dialog if an error occurs
    • Method Detail

      • run

        public void run​(TaskMonitor myMonitor)
        Description copied from class: Task
        This is the method that will be called to do the work

        Note: The run(TaskMonitor) method should not make any calls directly on Swing components, as these calls are not thread safe. Place Swing calls in a Runnable, then call Swing.runLater(Runnable) or Swing.runNow(Runnable)to schedule the Runnable inside of the AWT Event Thread.

        Specified by:
        run in class Task
        Parameters:
        myMonitor - The TaskMonitor that will monitor the executing Task