001/******************************************************************************* 002 * This software is provided as a supplement to the authors' textbooks on digital 003 * image processing published by Springer-Verlag in various languages and editions. 004 * Permission to use and distribute this software is granted under the BSD 2-Clause 005 * "Simplified" License (see http://opensource.org/licenses/BSD-2-Clause). 006 * Copyright (c) 2006-2023 Wilhelm Burger, Mark J. Burge. All rights reserved. 007 * Visit https://imagingbook.com for additional details. 008 ******************************************************************************/ 009package imagingbook.core.plugin; 010 011import java.lang.annotation.Retention; 012import java.lang.annotation.Target; 013 014import static java.lang.annotation.ElementType.TYPE; 015import static java.lang.annotation.RetentionPolicy.RUNTIME; 016 017 018/** 019 * Annotation to specify the menu entry (name) of the associated plugin class. Takes a {@link String} argument e.g., 020 * <pre> 021 * {@literal @}IjMenuEntry("My Grand Plugin") 022 * public class My_Plugin implements PlugIn { 023 * ... 024 * }</pre> 025 */ 026@Retention(RUNTIME) 027@Target(TYPE) 028public @interface IjPluginName { 029 public String value(); 030}