@NotifyChangeDisabled"

From Documentation
(Created page with "{{ZKDevelopersReferencePageHeader}} =Syntax= <source lang="java"> @NotifyChangeDisabled </source> = Description = '''Target:''' setter method '''Purpose:''' Marker annotation...")
 
Line 29: Line 29:
  
 
</source>
 
</source>
 +
 +
 +
 +
 +
=Version History=
 +
{{LastUpdated}}
 +
{| border='1px' | width="100%"
 +
! Version !! Date !! Content
 +
|-
 +
| 6.0.0
 +
| February 2012
 +
| The MVVM was introduced.
 +
|}
  
  
  
 
{{ZKDevelopersReferencePageFooter}}
 
{{ZKDevelopersReferencePageFooter}}

Revision as of 01:48, 9 February 2012


@NotifyChangeDisabled


Syntax

@NotifyChangeDisabled

Description

Target: setter method

Purpose: Marker annotation to disable default notification behavior.

To disable the default notification when binder sets a property.

Example

public class OrderVM {
 
    //other code...
 
    @NotifyChangeDisabled
    public void setSelected(Order selected) {
        this.selected = selected;
    }
 
}



Version History

Last Update : 2012/02/09


Version Date Content
6.0.0 February 2012 The MVVM was introduced.




Last Update : 2012/02/09

Copyright © Potix Corporation. This article is licensed under GNU Free Documentation License.