Package | Description |
---|---|
com.gargoylesoftware.base.gui |
Classes that are UI related.
|
com.gargoylesoftware.base.trace |
Classes involving tracing (error logging)
|
Modifier and Type | Method and Description |
---|---|
TraceChannel |
ReflectedTableModel.getTraceChannel()
Return the channel currently being used for tracing or null if tracing
is disabled.
|
TraceChannel |
TableLayout.getTraceChannel()
Return the trace channel.
|
Modifier and Type | Method and Description |
---|---|
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.
|
Modifier and Type | Field and Description |
---|---|
static TraceChannel |
Trace.err
The equivilent of "standard error"
|
static TraceChannel |
Trace.out
The equivilent of "standard out"
|
Modifier and Type | Method and Description |
---|---|
TraceChannel |
TraceItem.getChannel()
Return the channel.
|
TraceChannel |
TraceController.getDefaultChannel()
Return the default channel
|
Modifier and Type | Method and Description |
---|---|
static void |
Trace.print(TraceChannel channel,
String string)
Print a line to the specified channel.
|
static void |
Trace.printLines(TraceChannel channel,
String[] lines)
Print the specified lines to the trace channel.
|
static void |
Trace.println(TraceChannel channel,
String string)
Print the line to the specified channel with a new line at the end.
|
static void |
Trace.printStackTrace(TraceChannel channel,
Throwable throwable)
Print the stack trace to the specified channel.
|
void |
TraceController.setDefaultChannel(TraceChannel channel)
Set the default channel.
|
static void |
TraceUtil.trace(TraceChannel channel,
Collection collection)
Dump a collection to the specified TraceChannel.
|
static void |
TraceUtil.trace(TraceChannel channel,
Map collection)
Dump a map to the specified TraceChannel.
|
static void |
TraceUtil.trace(TraceChannel channel,
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.
|
Copyright © 1998–2014 Gargoyle Software Inc.. All rights reserved.