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

2 years ago
  1. import ij.*;
  2. import ij.process.*;
  3. import ij.gui.*;
  4. import java.awt.*;
  5. import ij.plugin.frame.*;
  6. public class Plugin_Frame extends PlugInFrame {
  7. public Plugin_Frame() {
  8. super("Plugin_Frame");
  9. TextArea ta = new TextArea(15, 50);
  10. add(ta);
  11. pack();
  12. GUI.center(this);
  13. show();
  14. }
  15. }