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

org.zkoss.bind.sys.debugger.ExecutionInfo Maven / Gradle / Ivy

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

	Purpose:
		
	Description:
		
	History:
		2013/1/18 Created by dennis

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

import org.zkoss.zk.ui.Component;

/**
 * the base interface of ExecutionInfo
 * @author dennis
 *
 */
public interface ExecutionInfo {

	/** the component of this info **/
	public Component getComponent();

	/** the type of this info **/
	public String getType();

	/** the note of this info **/
	public String getNote();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy