@Immutable"
From Documentation
(Created page with "{{ZKDevelopersReferencePageHeader}} =Syntax= <source lang="java"> @Immutable </source> = Description = '''Target:''' class '''Purpose:''' Marker annotation to indicate an im...") |
|||
Line 25: | Line 25: | ||
} | } | ||
</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:49, 9 February 2012
Syntax
@Immutable
Description
Target: class
Purpose: Marker annotation to indicate an immutable class.
The properties of immutable class won't be tracked and reduce the cost of tracking.
Example
@Immutable
public class SysConfiguration{
}
Version History
Version | Date | Content |
---|---|---|
6.0.0 | February 2012 | The MVVM was introduced. |