Package org.zkoss.bind.sys.debugger.impl
Class AbstractExecutionInfoCollector
- java.lang.Object
-
- org.zkoss.bind.sys.debugger.impl.AbstractExecutionInfoCollector
-
- All Implemented Interfaces:
BindingExecutionInfoCollector
- Direct Known Subclasses:
DefaultExecutionInfoCollector
public abstract class AbstractExecutionInfoCollector extends java.lang.Object implements BindingExecutionInfoCollector
abstract implementation- Author:
- dennis
-
-
Constructor Summary
Constructors Constructor Description AbstractExecutionInfoCollector()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description void
addInfo(ExecutionInfo info)
add an execution informationabstract void
addInfo(JSONObject info)
java.lang.String
popStack()
pop the execution stackvoid
pushStack(java.lang.String name)
push the execution stack
-
-
-
Method Detail
-
addInfo
public abstract void addInfo(JSONObject info)
-
addInfo
public void addInfo(ExecutionInfo info)
Description copied from interface:BindingExecutionInfoCollector
add an execution information- Specified by:
addInfo
in interfaceBindingExecutionInfoCollector
-
pushStack
public void pushStack(java.lang.String name)
Description copied from interface:BindingExecutionInfoCollector
push the execution stack- Specified by:
pushStack
in interfaceBindingExecutionInfoCollector
-
popStack
public java.lang.String popStack()
Description copied from interface:BindingExecutionInfoCollector
pop the execution stack- Specified by:
popStack
in interfaceBindingExecutionInfoCollector
-
-