Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Uses of Class
com.tripi.asp.DebugContext

Uses of DebugContext in com.tripi.asp
 

Fields in com.tripi.asp declared as DebugContext
(package private)  DebugContext OutputNode.dbgCtx
          Debugging context, location of output node in asp code.
(package private)  DebugContext ForNode.dbgCtx
          Context under which the for and next expression evaluated
(package private)  DebugContext ConditionalNode.context
          Context of this conditional node
(package private)  DebugContext AspRuntimeException.ctx
          Current debugging context
(package private)  DebugContext AspException.ctx
          Context of this exception
 

Methods in com.tripi.asp that return DebugContext
 DebugContext AspRuntimeException.getContext()
          Gets the exception's context.
 DebugContext AspException.getContext()
          Gets this exception's context.
 

Methods in com.tripi.asp with parameters of type DebugContext
 void BlockNode.append(java.lang.Object obj, DebugContext lineno)
          Appends a line of code with the debugging context.
 void AspRuntimeException.setContext(DebugContext ctx)
          Sets this exception's context.
 void AspNestedException.setContext(DebugContext ctx)
          Set this object's context.
 void AspException.setContext(DebugContext ctx)
          Sets this exception's context.
 void AspContext.processException(java.lang.Exception ex, DebugContext ctx)
          This function handles error processing.
 

Constructors in com.tripi.asp with parameters of type DebugContext
OutputNode(java.lang.Object expr, DebugContext dbgCtx)
          Constructor.
ForNode(IdentNode ident, Node aExpr, Node bExpr, BlockNode block, DebugContext dbgCtx)
          Constructor for the for expression.
ForNode(IdentNode ident, Node aExpr, Node bExpr, BlockNode block, Node step, DebugContext dbgCtx)
          Constructor for the for expression, with a specified step expression.
ConditionalNode(java.lang.Object condition, java.lang.Object trueNode, java.lang.Object falseNode, DebugContext context)
          Conditional node constructor.
AspRuntimeException(java.lang.String desc, DebugContext ctx)
          Constructor with the short description of the string, and the debugging context of the exception.
AspNestedException(java.lang.Throwable ex, DebugContext ctx)
          Constructor with initial debugging context
AspNestedException(java.lang.Throwable ex, int errorNumber, DebugContext ctx)
          Constructor with an error number and initial debugging context
AspException(java.lang.String desc, DebugContext ctx)
          Constructor with the short description of the string, and the debugging context of the exception.
AspException(java.lang.String desc, int errorNumber, DebugContext ctx)
          Constructor with the short description of the string, an error number, and the debugging context of the exception.