Uses of Interface
org.e2etrace.trace.ITraceStep

Packages that use ITraceStep
org.e2etrace.formatter Provides formatters for the results of a trace session. 
org.e2etrace.trace Contains the core functionality of e2etrace. 
 

Uses of ITraceStep in org.e2etrace.formatter
 

Methods in org.e2etrace.formatter with parameters of type ITraceStep
protected  String PlainTextTraceFormatter.formatSingleStep(ITraceStep step, int level)
          CALL-BACK: Generate formatted output for a single trace step.
protected  String CSVTraceFormatter.formatSingleStep(ITraceStep step, int level)
          CALL-BACK: Generate formatted output for a single trace step.
protected abstract  String AbstractTraceFormatter.formatSingleStep(ITraceStep step, int level)
          CALL-BACK: Generate formatted output for a single trace step.
protected  void AbstractTraceFormatter.writeSteps(ITraceStep step, Writer toWriter, int level)
          Writes output of a trace step using a given call level and forwards the call to all child steps.
 

Uses of ITraceStep in org.e2etrace.trace
 

Classes in org.e2etrace.trace that implement ITraceStep
 class AbstractTraceStep
          Abstract base class for trace steps.
 class DefaultTraceStep
          Default ITraceStep implementation.
 class TraceSessionRootStep
          Root trace step for ITraceSession.
 

Methods in org.e2etrace.trace that return ITraceStep
 ITraceStep[] ITraceStep.getChildren()
          Returns the list of children for this trace steps.
 ITraceStep[] AbstractTraceStep.getChildren()
          Returns the list of children for this trace steps.
 ITraceStep NoopTraceSession.getCurrentStep()
          Returns the active trace step.
 ITraceStep ITraceSession.getCurrentStep()
          Returns the active trace step.
 ITraceStep DefaultTraceSession.getCurrentStep()
          Returns the active trace step.
 ITraceStep ITraceStep.getParent()
          Returns the parent of a TraceStep, if any exists.
 ITraceStep AbstractTraceStep.getParent()
          Returns the parent of a TraceStep, if any exists.
 ITraceStep NoopTraceSession.getRootStep()
          Returns the the root step.
 ITraceStep ITraceSession.getRootStep()
          Returns the the root step.
 ITraceStep DefaultTraceSession.getRootStep()
          Returns the the root step.
 ITraceStep ITraceStepFactory.newInstance(ITraceStepId id)
          Returns a new trace step instance using the given id.
 ITraceStep DefaultTraceStepFactory.newInstance(ITraceStepId id)
          Returns a new trace step instance using the given id.
 

Methods in org.e2etrace.trace with parameters of type ITraceStep
 void ITraceStep.addChild(ITraceStep child)
          Adds a new child to this trace step.
 void AbstractTraceStep.addChild(ITraceStep child)
          Adds a new child to this trace step.
 void ITraceStep.setParent(ITraceStep parent)
          Set the parent of a TraceStep.
 void AbstractTraceStep.setParent(ITraceStep parent)
          Set the parent of a TraceStep.
 



Copyright © 2013 Gunther Popp. All Rights Reserved.