ImageJ base code to get access to all the classes and their methods to test new Plugins. https://imagejdocu.tudor.lu/howto/plugins/the_imagej_eclipse_howto
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

18 lines
291 B

import ij.*;
import ij.process.*;
import ij.gui.*;
import java.awt.*;
import ij.plugin.frame.*;
public class Plugin_Frame extends PlugInFrame {
public Plugin_Frame() {
super("Plugin_Frame");
TextArea ta = new TextArea(15, 50);
add(ta);
pack();
GUI.center(this);
show();
}
}