groovy.beans.Vetoable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of groovy Show documentation
Show all versions of groovy Show documentation
Groovy: A powerful, dynamic language for the JVM
The newest version!
/*
* Copyright 2008 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package groovy.beans;
import org.codehaus.groovy.transform.GroovyASTTransformationClass;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Annotates a groovy property or a class.
*
* When annotating a property it indicates that the property should be a
* constrained property according to the JavaBeans spec, subject to
* listeners vetoing the property change.
*
* When annotating a class it indicates that all groovy properties in that
* class should be bound as though each property had the annotation (even
* if it already has it explicitly).
*
* It is a compilation error to place this annotation on a field (that is
* nota property, i.e. has scope visibility modifiers).
*
* If a property with a user defined setter method is annotated the code
* block is wrapped with the needed code to fire off the event.
*
* //TODO discuss generated fields and methods
*
* @see VetoableASTTransformation
*
* @author Danno Ferrin (shemnon)
*/
@Retention(RetentionPolicy.SOURCE)
@Target({ElementType.FIELD, ElementType.TYPE})
@GroovyASTTransformationClass("groovy.beans.VetoableASTTransformation")
public @interface Vetoable {
}