Annotation Type IjPluginPath


Annotation to specify the menu path (tree branch) of the associated plugin class or an entire plugin package. Takes a String argument e.g.,
 @IjMenuPath("Plugins>My Stuff")
 @IjMenuEntry("My Plugin")
 public class My_Plugin implements PlugInFilter {
   ...
 }
May also be used on the package declaration in file package-info.java to set the default menu path for all plugins directly contained in that package (but not nested), e.g.,
 @IjMenuPath("Plugins>Binary Regions")
 package Binary_Regions;
Annotations for individual plugin classes override the package-level setting.
  • Required Element Summary

    Required Elements
    Modifier and Type
    Required Element
    Description