@DefaultCommand"

From Documentation
(Created page with "{{ZKDevelopersReferencePageHeader}} =Syntax= <source lang="java"> @DefaultCommand </source> = Description = '''Target:''' method '''Purpose:''' To mark a default Command meth...")
 
m ((via JWB))
 
(7 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/defaultcommand.html zk-mvvm-book/8.0/syntax/viewmodel/defaultcommand]|}}
 +
 +
 +
__TOC__
 +
 +
since 6.5.1
  
 
=Syntax=
 
=Syntax=
Line 12: Line 18:
 
'''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 existing default command method.
  
 
= Example =
 
= Example =
Line 19: Line 26:
  
 
@DefaultCommand
 
@DefaultCommand
public void default(){
+
public void defaultAction(){
 
...
 
...
 
}
 
}
 
</source>
 
</source>
  
 +
=Version History=
  
 
+
{| class='wikitable' | width="100%"
 
 
=Version History=
 
{{LastUpdated}}
 
{| border='1px' | width="100%"
 
 
! Version !! Date !! Content
 
! Version !! Date !! Content
 
|-
 
|-

Latest revision as of 07:35, 8 July 2022

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

Version Date Content
6.5.1 October 2012 This annotation was introduced.




Last Update : 2022/07/08

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