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

com.alpine.plugin.core.annotation.Disabled Maven / Gradle / Ivy

/**
 * COPYRIGHT (C) 2015 Alpine Data Labs Inc. All Rights Reserved.
 */

package com.alpine.plugin.core.annotation;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * This is used on plugin features that are currently disabled (or not supported
 * yet.).
 */
@Retention(RetentionPolicy.RUNTIME)
@Target(
    {
        ElementType.TYPE, ElementType.FIELD, ElementType.METHOD,
        ElementType.PARAMETER, ElementType.CONSTRUCTOR,
        ElementType.LOCAL_VARIABLE, ElementType.PACKAGE
    }
)
public @interface Disabled {}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy