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 voidaddInfo(ExecutionInfo info)add an execution informationabstract voidaddInfo(org.zkoss.json.JSONObject info)java.lang.StringpopStack()pop the execution stackvoidpushStack(java.lang.String name)push the execution stack
-
-
-
Method Detail
-
addInfo
public abstract void addInfo(org.zkoss.json.JSONObject info)
-
addInfo
public void addInfo(ExecutionInfo info)
Description copied from interface:BindingExecutionInfoCollectoradd an execution information- Specified by:
addInfoin interfaceBindingExecutionInfoCollector
-
pushStack
public void pushStack(java.lang.String name)
Description copied from interface:BindingExecutionInfoCollectorpush the execution stack- Specified by:
pushStackin interfaceBindingExecutionInfoCollector
-
popStack
public java.lang.String popStack()
Description copied from interface:BindingExecutionInfoCollectorpop the execution stack- Specified by:
popStackin interfaceBindingExecutionInfoCollector
-
-