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

Quick Search    Search Deep

com.tripi.asp
Class DebugContext  view DebugContext download DebugContext.java

java.lang.Object
  extended bycom.tripi.asp.DebugContext

public class DebugContext
extends java.lang.Object

Debugging context, filename and line number.

Version:
0.9

Field Summary
(package private)  int columnno
          Starting column number
(package private)  java.lang.String displayFilename
          Display filename
(package private)  int lineno
          Line number
 
Constructor Summary
DebugContext()
          Constructor, without a defined filename/lineno.
DebugContext(java.lang.String displayFilename, int lineno)
          Constructor.
DebugContext(java.lang.String displayFilename, int lineno, int columnno)
          Constructor.
 
Method Summary
 int getColumnNo()
          Get the column number.
 java.lang.String getFilename()
          Get the location filename.
 int getLineNo()
          Get the location line number.
 void setColumnNo(int lineno)
          Set the location column number.
 void setFilename(java.lang.String filename)
          Set the location filename.
 void setLineNo(int lineno)
          Set the location line number.
 java.lang.String toString()
          Obtain the string representation of this debugging context.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

displayFilename

java.lang.String displayFilename
Display filename


lineno

int lineno
Line number


columnno

int columnno
Starting column number

Constructor Detail

DebugContext

public DebugContext(java.lang.String displayFilename,
                    int lineno)
Constructor.


DebugContext

public DebugContext(java.lang.String displayFilename,
                    int lineno,
                    int columnno)
Constructor.


DebugContext

public DebugContext()
Constructor, without a defined filename/lineno.

Method Detail

setFilename

public void setFilename(java.lang.String filename)
Set the location filename.


getFilename

public java.lang.String getFilename()
Get the location filename.


setLineNo

public void setLineNo(int lineno)
Set the location line number.


getLineNo

public int getLineNo()
Get the location line number.


setColumnNo

public void setColumnNo(int lineno)
Set the location column number.


getColumnNo

public int getColumnNo()
Get the column number.


toString

public java.lang.String toString()
Obtain the string representation of this debugging context.