@DefaultGlobalCommand"
From Documentation
m ((via JWB)) |
|||
(4 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
{{ZKDevelopersReferencePageHeader}} | {{ZKDevelopersReferencePageHeader}} | ||
+ | {{Deprecated | url=[http://books.zkoss.org/zk-mvvm-book/8.0/syntax/defaultglobalcommand.html zk-mvvm-book/8.0/syntax/viewmodel/defaultglobalcommand]|}} | ||
Line 8: | Line 9: | ||
=Syntax= | =Syntax= | ||
<source lang="java"> | <source lang="java"> | ||
− | @ | + | @DefaultGlobalCommand |
</source> | </source> | ||
Line 25: | Line 26: | ||
@DefaultGlobalCommand | @DefaultGlobalCommand | ||
− | public void | + | public void defaultAction(){ |
//... | //... | ||
} | } | ||
Line 32: | Line 33: | ||
=Version History= | =Version History= | ||
− | + | ||
− | {| | + | {| class='wikitable' | width="100%" |
! Version !! Date !! Content | ! Version !! Date !! Content | ||
|- | |- |
Latest revision as of 07:35, 8 July 2022
This article is out of date, please refer to zk-mvvm-book/8.0/syntax/viewmodel/defaultglobalcommand for more up to date information.
since 6.5.1
Syntax
@DefaultGlobalCommand
Description
Target: method
Purpose: To mark a method as a default global command.
When a binder receives a global command, it starts to find ViewModel's global command methods by matching its name. Only if the binder cannot find a matched method, it invokes existing default global command method.
Example
Mark a default global command method
@DefaultGlobalCommand
public void defaultAction(){
//...
}
Version History
Version | Date | Content |
---|---|---|
6.5.1 | October 2012 | This annotation was introduced. |