@DefaultGlobalCommand"

From Documentation
(Created page with "{{ZKDevelopersReferencePageHeader}} since 6.5.1 =Syntax= <source lang="java"> @GlobalCommand </source> = Description = '''Target:''' method '''Purpose:''' To mark a method ...")
 
Line 1: Line 1:
 
{{ZKDevelopersReferencePageHeader}}
 
{{ZKDevelopersReferencePageHeader}}
 +
 +
 +
__TOC__
  
 
  since 6.5.1
 
  since 6.5.1

Revision as of 09:19, 26 October 2012


@DefaultGlobalCommand



since 6.5.1

Syntax

@GlobalCommand

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


Version History

Last Update : 2012/10/26


Version Date Content
6.5.1 October 2012 This annotation was introduced.




Last Update : 2012/10/26

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