All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.zkoss.bind.GlobalCommandEvent Maven / Gradle / Ivy

There is a newer version: 10.0.0-jakarta
Show newest version
/* GlobalCommandEvent.java

	Purpose:
		
	Description:
		
	History:
		2012/1/31 Created by Dennis Chen

Copyright (C) 2011 Potix Corporation. All Rights Reserved.
*/
package org.zkoss.bind;

import java.util.Map;

import org.zkoss.zk.ui.Component;
import org.zkoss.zk.ui.event.Event;

/**
 * The global-command event
 * @author dennis
 * @since 6.0.1
 */
public class GlobalCommandEvent extends Event {
	private static final long serialVersionUID = 201109091736L;
	String _command;
	Map _args;

	public GlobalCommandEvent(Component comp, String command, Map args) {
		super("onGlobalCommand", comp);
		this._command = command;
		this._args = args;
	}

	/**
	 * Gets the global command name
	 */
	public String getCommand() {
		return _command;
	}

	/**
	 * Gets the global-command args.
	 */
	public Map getArgs() {
		return _args;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy