Uses of Class
org.jasig.portal.lang.StackTrace

Packages that use StackTrace
org.jasig.portal.lang   
 

Uses of StackTrace in org.jasig.portal.lang
 

Fields in org.jasig.portal.lang declared as StackTrace
private  StackTrace[] ChainedError.mStackTrace
          Cache of the stack trace for the throwable.
private  StackTrace[] ChainedRuntimeException.mStackTrace
          Cache of the stack trace for the exception.
private  StackTrace[] ChainedException.mStackTrace
          Cache of the stack trace for the exception.
 

Methods in org.jasig.portal.lang that return StackTrace
private static StackTrace StackTrace.convertElement(java.lang.Object element)
          Converts a J2SDK 1.4 StackTraceElement object to a StackTrace object.
(package private) static StackTrace[] StackTrace.convertStackTrace(java.lang.Object[] stackTrace)
          Converts a JDK 1.4 stack trace to this object.
private  StackTrace[] ChainedError.getOurStackTrace0()
          Returns an array of stack trace objects representing the current stack.
private  StackTrace[] ChainedRuntimeException.getOurStackTrace0()
          Returns an array of stack trace objects representing the current stack.
private  StackTrace[] ChainedException.getOurStackTrace0()
          Returns an array of stack trace objects representing the current stack.
private  StackTrace[] ChainedError.getOurStackTraceInPre1_4()
          In a pre-1.4 JVM, create the stack trace elements by first constructing the normal error message and then removing the error message from the stream.
private  StackTrace[] ChainedRuntimeException.getOurStackTraceInPre1_4()
          In a pre-1.4 JVM, create the stack trace elements by first constructing the normal error message and then removing the error message from the stream.
private  StackTrace[] ChainedException.getOurStackTraceInPre1_4()
          In a pre-1.4 JVM, create the stack trace elements by first constructing the normal error message and then removing the error message from the stream.
static StackTrace[] StackTrace.getStackTrace()
          Returns the stack trace elements of the client.
static StackTrace StackTrace.getStackTrace(int index)
          Returns the specified stack trace element if it exists.
static StackTrace[] StackTrace.getStackTrace(java.lang.Throwable throwable)
          Returns all StackTraces in an array of the specified throwable.
(package private) static StackTrace[] StackTrace.getStackTrace(java.lang.Throwable throwable, java.lang.String stackTrace)
          Returns all StackTraces in an array.
private static StackTrace StackTrace.parseStackTrace(StackTrace.ParseState state)
          Parse the first class name from the specified stack trace starting at the specified index.
private static StackTrace[] StackTrace.parseStackTrace(java.lang.Throwable throwable, java.lang.String stackTrace)
          Returns an array of StackTrace objects representing the Throwable argument.
 

Methods in org.jasig.portal.lang with parameters of type StackTrace
private  void ChainedError.printStackTraceAsCause(java.io.PrintStream stream, StackTrace[] causedTrace)
          Print our stack trace as a cause for the specified stack trace.
private  void ChainedRuntimeException.printStackTraceAsCause(java.io.PrintStream stream, StackTrace[] causedTrace)
          Print our stack trace as a cause for the specified stack trace.
private  void ChainedException.printStackTraceAsCause(java.io.PrintStream stream, StackTrace[] causedTrace)
          Print our stack trace as a cause for the specified stack trace.
private  void ChainedError.printStackTraceAsCause(java.io.PrintWriter stream, StackTrace[] causedTrace)
          Print our stack trace as a cause for the specified stack trace.
private  void ChainedRuntimeException.printStackTraceAsCause(java.io.PrintWriter stream, StackTrace[] causedTrace)
          Print our stack trace as a cause for the specified stack trace.
private  void ChainedException.printStackTraceAsCause(java.io.PrintWriter stream, StackTrace[] causedTrace)
          Print our stack trace as a cause for the specified stack trace.
static java.lang.String StackTrace.toString(StackTrace[] elements)
          Returns a string representation of the stack trace elements.