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

goja.core.annotation.PluginBind Maven / Gradle / Ivy

The newest version!
/*
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
 *
 * Copyright (c) 2013-2014 sagyf Yang. The Four Group.
 */

package goja.core.annotation;

import java.lang.annotation.*;

/**
 * 

* 自定义插件绑定注解. *

* * @author sagyf yang * @version 1.0 2014-06-24 23:21 * @since JDK 1.6 */ @Inherited @Retention(RetentionPolicy.RUNTIME) @Target({ElementType.TYPE}) public @interface PluginBind { /** * 是否忽略 * * @return true 表示忽略,默认不忽略 */ boolean ignored() default false; }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy