Package com._1c.g5.v8.dt.export
Class ExportDebugTrace
- java.lang.Object
-
- com._1c.g5.v8.dt.export.ExportDebugTrace
-
- All Implemented Interfaces:
EventListener
,org.eclipse.osgi.service.debug.DebugOptionsListener
,org.eclipse.osgi.service.debug.DebugTrace
public class ExportDebugTrace extends Object implements org.eclipse.osgi.service.debug.DebugOptionsListener, org.eclipse.osgi.service.debug.DebugTrace
Export debug options manager
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ExportDebugTrace
getInstance()
Returns instance ofExportDebugTrace
void
optionsChanged(org.eclipse.osgi.service.debug.DebugOptions options)
void
trace(String option, String message)
void
trace(String option, String message, Throwable error)
void
traceDumpStack(String option)
void
traceEntry(String option)
void
traceEntry(String option, Object methodArgument)
void
traceEntry(String option, Object[] methodArguments)
void
traceExit(String option)
void
traceExit(String option, Object result)
-
-
-
Method Detail
-
getInstance
public static ExportDebugTrace getInstance()
Returns instance ofExportDebugTrace
- Returns:
- instance of
ExportDebugTrace
, nevernull
-
optionsChanged
public void optionsChanged(org.eclipse.osgi.service.debug.DebugOptions options)
- Specified by:
optionsChanged
in interfaceorg.eclipse.osgi.service.debug.DebugOptionsListener
-
trace
public void trace(String option, String message)
- Specified by:
trace
in interfaceorg.eclipse.osgi.service.debug.DebugTrace
-
trace
public void trace(String option, String message, Throwable error)
- Specified by:
trace
in interfaceorg.eclipse.osgi.service.debug.DebugTrace
-
traceDumpStack
public void traceDumpStack(String option)
- Specified by:
traceDumpStack
in interfaceorg.eclipse.osgi.service.debug.DebugTrace
-
traceEntry
public void traceEntry(String option)
- Specified by:
traceEntry
in interfaceorg.eclipse.osgi.service.debug.DebugTrace
-
traceEntry
public void traceEntry(String option, Object methodArgument)
- Specified by:
traceEntry
in interfaceorg.eclipse.osgi.service.debug.DebugTrace
-
traceExit
public void traceExit(String option)
- Specified by:
traceExit
in interfaceorg.eclipse.osgi.service.debug.DebugTrace
-
traceEntry
public void traceEntry(String option, Object[] methodArguments)
- Specified by:
traceEntry
in interfaceorg.eclipse.osgi.service.debug.DebugTrace
-
-