@ScopeParam"
From Documentation
Tmillsclare (talk | contribs) m (→Description) |
|||
Line 1: | Line 1: | ||
{{ZKDevelopersReferencePageHeader}} | {{ZKDevelopersReferencePageHeader}} | ||
+ | {{Deprecated | url=[http://books.zkoss.org/zk-mvvm-book/8.0/syntax/scopeparam.html zk-mvvm-book/8.0/syntax/viewmodel/parameters/scopeparam]|}} | ||
Revision as of 08:02, 28 May 2015
This article is out of date, please refer to zk-mvvm-book/8.0/syntax/viewmodel/parameters/scopeparam for more up to date information.
Syntax
@ScopeParam("keyString")
@ScopeParam(scopes=Scope.APPLICATION, value="keyString")
A list of all scopes enumeration:
enum Scope {
COMPONENT, SPACE, PAGE, DESKTOP, SESSION, APPLICATION, // single scope
AUTO //find by comp.getAttribute(name,true)
}
Description
Target: A method's parameter (for initial and command methods)
Purpose: Tell binder to retrieve a value with specified scope
The default scope: AUTO means searching the value from COMPONENT to SPACE, PAGE, DESKTOP, SESSION, APPLICATION one by one automatically until find a non-null value. If you specified the scopes element, binder will search the only scope you specified.
Example
public class ScopeParamVM {
@Init
public void init(@ScopeParam(scopes=Scope.APPLICATION , value="config") String sysConfig,
@ScopeParam(scopes=Scope.SESSION,value="user") String userCredential){
}
Version History
Version | Date | Content |
---|---|---|
6.0.0 | February 2012 | The MVVM was introduced. |