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

com.fluxtion.builder.annotation.Disabled Maven / Gradle / Ivy

/*
 * Copyright (C) 2019 V12 Technology Ltd.
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the Server Side Public License, version 1,
 * as published by MongoDB, Inc.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * Server Side License for more details.
 *
 * You should have received a copy of the Server Side Public License
 * along with this program.  If not, see 
 * .
 */
package com.fluxtion.builder.annotation;

import java.lang.annotation.Documented;
import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.ElementType.TYPE;
import java.lang.annotation.Retention;
import static java.lang.annotation.RetentionPolicy.CLASS;
import java.lang.annotation.Target;

/**
 * Used in conjunction with generation annotations to allow the developer to
 * conditionally enable/disable processing of the annotation in context.
 * 
 * @author V12 Technology Ltd. 
 */
@Target(value = {TYPE, METHOD})
 @Retention(value=CLASS)
 @Documented
public @interface Disabled {
    
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy