Uses of Class
com.gargoylesoftware.base.trace.TraceChannel
Packages that use TraceChannel
Package
Description
Classes that are UI related.
Classes involving tracing (error logging)
-
Uses of TraceChannel in com.gargoylesoftware.base.gui
Fields in com.gargoylesoftware.base.gui declared as TraceChannelModifier and TypeFieldDescriptionprivate TraceChannelReflectedTableModel.traceChannel_private TraceChannelTableLayout.traceChannel_Methods in com.gargoylesoftware.base.gui that return TraceChannelModifier and TypeMethodDescriptionReflectedTableModel.getTraceChannel()Return the channel currently being used for tracing or null if tracing is disabled.TableLayout.getTraceChannel()Return the trace channel.Methods in com.gargoylesoftware.base.gui with parameters of type TraceChannelModifier and TypeMethodDescriptionvoidReflectedTableModel.setTraceChannel(TraceChannel channel) Set the channel to be used for tracing.voidTableLayout.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 TraceChannelModifier and TypeFieldDescriptionprivate TraceChannelTraceItem.channel_private TraceChannelTraceController.defaultChannel_static final TraceChannelTrace.errThe equivilent of "standard error"static final TraceChannelTrace.outThe equivilent of "standard out"Methods in com.gargoylesoftware.base.trace that return TraceChannelModifier and TypeMethodDescriptionTraceItem.getChannel()Return the channel.TraceController.getDefaultChannel()Return the default channelMethods in com.gargoylesoftware.base.trace with parameters of type TraceChannelModifier and TypeMethodDescriptionstatic voidTrace.print(TraceChannel channel, String string) Print a line to the specified channel.static voidTrace.printLines(TraceChannel channel, String[] lines) Print the specified lines to the trace channel.static voidTrace.println(TraceChannel channel, String string) Print the line to the specified channel with a new line at the end.static voidTrace.printStackTrace(TraceChannel channel, Throwable throwable) Print the stack trace to the specified channel.(package private) voidTraceItem.setChannel(TraceChannel channel) voidTraceController.setDefaultChannel(TraceChannel channel) Set the default channel.static voidTraceUtil.trace(TraceChannel channel, Object[] array) Dump an object array to the specified TraceChannel.static voidTraceUtil.trace(TraceChannel channel, Collection collection) Dump a collection to the specified TraceChannel.static voidTraceUtil.trace(TraceChannel channel, Map collection) Dump a map to the specified TraceChannel.static voidTrace.whereAmI(TraceChannel channel) Print a stack trace to show where we came from.