FileDocCategorySizeDatePackage
Refreshable.javaAPI DocAzureus 3.0.3.4365Wed Sep 05 18:34:08 BST 2007org.gudy.azureus2.ui.swt.mainwindow

Refreshable.java

package org.gudy.azureus2.ui.swt.mainwindow;

public interface Refreshable {
	
	  /**
	   * This method is called on each refresh.
	   * The view should not instanciate a Thread to refresh itself, unless this is for async purposes. In which case, don't forget to call the display.asyncexec method.
	   * Called by the GUI Thread
	   */
	  public void refresh();

}