@DefaultCommand"
From Documentation
Line 16: | Line 16: | ||
'''Purpose:''' To mark a default Command method. | '''Purpose:''' To mark a default Command method. | ||
− | When a binder receives a command, it starts to find ViewModel's command methods by matching its name. Only if the binder cannot find a matched method, it invokes default command method. | + | When a binder receives a command, it starts to find ViewModel's command methods by matching its name. Only if the binder cannot find a matched method, it invokes existing default command method. |
= Example = | = Example = |
Revision as of 09:19, 26 October 2012
since 6.5.1
Syntax
@DefaultCommand
Description
Target: method
Purpose: To mark a default Command method.
When a binder receives a command, it starts to find ViewModel's command methods by matching its name. Only if the binder cannot find a matched method, it invokes existing default command method.
Example
Mark method as default
@DefaultCommand
public void default(){
...
}
Version History
Version | Date | Content |
---|---|---|
6.5.1 | October 2012 | This annotation was introduced. |