ij.macro.MacroExtension Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ij Show documentation
Show all versions of ij Show documentation
ImageJ is an open source Java image processing program inspired by NIH Image for the Macintosh.
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