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

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

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

	Purpose:
		
	Description:
		
	History:
		2013/1/7 Created by Dennis Chen

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

/**
 * the collector to collect runtime binding execution information
 * 
 * @author dennis
 * @since 6.5.2
 */
public interface BindingExecutionInfoCollector {

	/**
	 * push the execution stack
	 */
	void pushStack(String name);

	/**
	 * pop the execution stack
	 */
	String popStack();

	/**
	 * add an execution information
	 */
	void addInfo(ExecutionInfo info);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy