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

org.zkoss.bind.annotation.AutoNotifyChange Maven / Gradle / Ivy

There is a newer version: 10.0.0-jakarta
Show newest version
/** AutoNotifyChange.java.

 	Purpose:

 	Description:

 	History:
 		Wed Dec 26 11:00:32 CST 2017, Created by jameschu

 	Copyright (C) 2017 Potix Corporation. All Rights Reserved.
 */
package org.zkoss.bind.annotation;

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

/**
 * Enable posting NotifyChange when setter method called.
 * 

If the view model class is annotated with this annotation, every setter method in @Command and @GlobalCommand will * post NotifyChange after being called. *

* @author jameschu * @since 8.5.1 */ @Target(ElementType.TYPE) @Retention(RetentionPolicy.RUNTIME) public @interface AutoNotifyChange { }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy