JIDE 3.5.15

com.jidesoft.plaf.basic
Class BasicAutoFilterTableHeaderUIDelegate.DropDownSwingWorker

java.lang.Object
  extended by com.jidesoft.utils.SwingWorker<Object[],Object>
      extended by com.jidesoft.plaf.basic.BasicAutoFilterTableHeaderUIDelegate.DropDownSwingWorker
All Implemented Interfaces:
Runnable, Future<Object[]>
Enclosing class:
BasicAutoFilterTableHeaderUIDelegate

public class BasicAutoFilterTableHeaderUIDelegate.DropDownSwingWorker
extends SwingWorker<Object[],Object>


Nested Class Summary
 
Nested classes/interfaces inherited from class com.jidesoft.utils.SwingWorker
SwingWorker.StateValue
 
Constructor Summary
BasicAutoFilterTableHeaderUIDelegate.DropDownSwingWorker(IFilterableTableModel model, int index, Comparator comparator)
           
 
Method Summary
protected  Object[] doInBackground()
          Computes a result, or throws an exception if unable to do so.
protected  void done()
          Executed on the Event Dispatch Thread after the doInBackground method is finished.
 
Methods inherited from class com.jidesoft.utils.SwingWorker
addPropertyChangeListener, cancel, execute, firePropertyChange, get, get, getProgress, getPropertyChangeSupport, getState, isCancelled, isDone, process, publish, removePropertyChangeListener, run, setProgress
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

BasicAutoFilterTableHeaderUIDelegate.DropDownSwingWorker

public BasicAutoFilterTableHeaderUIDelegate.DropDownSwingWorker(IFilterableTableModel model,
                                                                int index,
                                                                Comparator comparator)
Method Detail

doInBackground

protected Object[] doInBackground()
                           throws Exception
Description copied from class: SwingWorker
Computes a result, or throws an exception if unable to do so.

Note that this method is executed only once.

Note: this method is executed in a background thread.

Specified by:
doInBackground in class SwingWorker<Object[],Object>
Returns:
the computed result
Throws:
Exception - if unable to compute a result

done

protected void done()
Description copied from class: SwingWorker
Executed on the Event Dispatch Thread after the doInBackground method is finished. The default implementation does nothing. Subclasses may override this method to perform completion actions on the Event Dispatch Thread. Note that you can query status inside the implementation of this method to determine the result of this task or whether this task has been cancelled.

Overrides:
done in class SwingWorker<Object[],Object>
See Also:
SwingWorker.doInBackground(), SwingWorker.isCancelled(), SwingWorker.get()

JIDE 3.5.15