Uses of Class
com.gargoylesoftware.base.trace.TraceChannel

Packages that use TraceChannel
com.gargoylesoftware.base.gui Classes that are UI related. 
com.gargoylesoftware.base.trace Classes involving tracing (error logging) 
 

Uses of TraceChannel in com.gargoylesoftware.base.gui
 

Fields in com.gargoylesoftware.base.gui declared as TraceChannel
private  TraceChannel ReflectedTableModel.traceChannel_
           
private  TraceChannel TableLayout.traceChannel_
           
 

Methods in com.gargoylesoftware.base.gui that return TraceChannel
 TraceChannel ReflectedTableModel.getTraceChannel()
          Return the channel currently being used for tracing or null if tracing is disabled.
 TraceChannel TableLayout.getTraceChannel()
          Return the trace channel.
 

Methods in com.gargoylesoftware.base.gui with parameters of type TraceChannel
 void ReflectedTableModel.setTraceChannel(TraceChannel channel)
          Set the channel to be used for tracing.
 void TableLayout.setTraceChannel(TraceChannel channel)
          Set the trace channel used for printing diagnostic information.
 

Uses of TraceChannel in com.gargoylesoftware.base.trace
 

Fields in com.gargoylesoftware.base.trace declared as TraceChannel
private  TraceChannel TraceItem.channel_
           
private  TraceChannel TraceController.defaultChannel_
           
static TraceChannel Trace.err
          The equivilent of "standard error"
static TraceChannel Trace.out
          The equivilent of "standard out"
 

Methods in com.gargoylesoftware.base.trace that return TraceChannel
 TraceChannel TraceItem.getChannel()
          Return the channel.
 TraceChannel TraceController.getDefaultChannel()
          Return the default channel
 

Methods in com.gargoylesoftware.base.trace with parameters of type TraceChannel
static void Trace.print(TraceChannel channel, java.lang.String string)
          Print a line to the specified channel.
static void Trace.printLines(TraceChannel channel, java.lang.String[] lines)
          Print the specified lines to the trace channel.
static void Trace.println(TraceChannel channel, java.lang.String string)
          Print the line to the specified channel with a new line at the end.
static void Trace.printStackTrace(TraceChannel channel, java.lang.Throwable throwable)
          Print the stack trace to the specified channel.
(package private)  void TraceItem.setChannel(TraceChannel channel)
           
 void TraceController.setDefaultChannel(TraceChannel channel)
          Set the default channel.
static void TraceUtil.trace(TraceChannel channel, java.util.Collection collection)
          Dump a collection to the specified TraceChannel.
static void TraceUtil.trace(TraceChannel channel, java.util.Map collection)
          Dump a map to the specified TraceChannel.
static void TraceUtil.trace(TraceChannel channel, java.lang.Object[] array)
          Dump an object array to the specified TraceChannel.
static void Trace.whereAmI(TraceChannel channel)
          Print a stack trace to show where we came from.