Methods Summary |
---|
public void | addView(org.gudy.azureus2.plugins.PluginView view)A Plugin might call this method to add a View to Azureus's views
The View will be accessible from View > Plugins > View name
|
public void | addView(org.gudy.azureus2.plugins.PluginView view, boolean autoOpen)A Plugin might call this method to add a View to Azureus's views
The View will be accessible from View > Plugins > View name
|
public GraphicSWT | createGraphic(org.eclipse.swt.graphics.Image img)Creates an UIImageSWT object with the supplied SWT Image
|
public org.eclipse.swt.widgets.Display | getDisplay()Retrieve the SWT Display object that Azureus uses (when in SWT mode).
If you have a thread that does some periodic/asynchronous stuff, Azureus
will crashes with and 'InvalidThreadAccess' exception unless you
embed your calls in a Runnable, and use getDisplay().aSyncExec(Runnable r);
|