/* * Copyright 2008-2017 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 griffon.transform; 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 to support JavaFX properties. * <p> * When annotating a property it indicates that the property should be a * bound property according to JavaFX beans, announcing to listeners * that the value has changed. <br/><br/> * <p> * 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).<br/><br/> * <p> * It is a compilation error to place this annotation on a field (that is * not a property, i.e. has scope visibility modifiers).<br/><br/> * <p> * 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.<br/><br/> * * @author Andres Almiray */ @java.lang.annotation.Documented @Retention(RetentionPolicy.SOURCE) @Target({ElementType.FIELD, ElementType.TYPE}) public @interface FXObservable { Strategy value() default Strategy.PLAIN; enum Strategy { PLAIN, SHADOW_FIELD, PROPERTY_ACCESOR } }