@DefaultCommand

From Documentation
Revision as of 07:48, 28 May 2015 by Jameschu (talk | contribs)

Stop.png This article is out of date, please refer to zk-mvvm-book/8.0/syntax/viewmodel/defaultcommand for more up to date information.


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 defaultAction(){
		...
	}

Version History

Last Update : 2015/05/28


Version Date Content
6.5.1 October 2012 This annotation was introduced.




Last Update : 2015/05/28

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