The following snippet sets the title for a JFace dialog: @Override protected void configureShell(Shell shell) { super.configureShell(shell); shell.setText("My Dialog Title");
WeiterlesenKategorie: Programmieren
Get plugin path
This snippets gets the local folder for a plugin: public static File getPluginFolder() { if(pluginFolder == null) { URL url
Weiterlesen