All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ij.macro.MacroExtension Maven / Gradle / Ivy

Go to download

ImageJ is an open source Java image processing program inspired by NIH Image for the Macintosh.

There is a newer version: 1.54m
Show newest version
package ij.macro;

public interface MacroExtension {
  public static final int ARG_STRING = 0x01;
  public static final int ARG_NUMBER = 0x02;
  public static final int ARG_ARRAY  = 0x04;
  
  public static final int ARG_OUTPUT = 0x10;
  public static final int ARG_OPTIONAL = 0x20;

  public String handleExtension(String name, Object[] args);
  
  public ExtensionDescriptor[] getExtensionFunctions();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy