Package system.diagnostics
Class Trace
- java.lang.Object
-
- org.mases.jcobridge.netreflection.NetObject
-
- system.diagnostics.Trace
-
- All Implemented Interfaces:
IJCOBridgeReflected
public class Trace extends NetObject
The base .NET class managing System.Diagnostics.Trace, System.Diagnostics.TraceSource, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a..NET documentation at https://docs.microsoft.com/en-us/dotnet/api/System.Diagnostics.Trace
Powered by JCOBridge: more info at https://www.jcobridge.com
- Author:
- MASES s.r.l https://masesgroup.com
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
assemblyFullName
Fully assembly qualified name: System.Diagnostics.TraceSource, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3astatic java.lang.String
assemblyShortName
Assembly name: System.Diagnostics.TraceSourcestatic java.lang.String
className
Qualified class name: System.Diagnostics.Tracestatic JCType
classType
The type managed from JCOBridge.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static void
Assert(boolean condition)
static void
Assert(boolean condition, java.lang.String message)
static void
Assert(boolean condition, java.lang.String message, java.lang.String detailMessage)
static Trace
cast(IJCOBridgeReflected from)
Try to cast theIJCOBridgeReflected
instance intoTrace
, a cast assert is made to check if types are compatible.static void
Close()
static void
Fail(java.lang.String message)
static void
Fail(java.lang.String message, java.lang.String detailMessage)
static void
Flush()
static boolean
getAutoFlush()
static CorrelationManager
getCorrelationManager()
static int
getIndentLevel()
static int
getIndentSize()
java.lang.String
getJCOAssemblyName()
Returns the reflected Assembly namejava.lang.String
getJCOClassName()
Returns the reflected Class namejava.lang.Object
getJCOInstance()
Returns the instantiated classjava.lang.String
getJCOObjectName()
Returns the reflected Class name used to build the objectJCType
getJCOType()
Returns the instantiated class Typestatic TraceListenerCollection
getListeners()
static boolean
getUseGlobalLock()
static void
Indent()
static void
Refresh()
static void
setAutoFlush(boolean AutoFlush)
static void
setIndentLevel(int IndentLevel)
static void
setIndentSize(int IndentSize)
void
setJCOInstance(JCObject instance)
static void
setUseGlobalLock(boolean UseGlobalLock)
static void
TraceError(java.lang.String message)
static void
TraceError(java.lang.String format, NetObject... args)
static void
TraceInformation(java.lang.String message)
static void
TraceInformation(java.lang.String format, NetObject... args)
static void
TraceWarning(java.lang.String message)
static void
TraceWarning(java.lang.String format, NetObject... args)
static void
Unindent()
static void
Write(java.lang.String message)
static void
Write(java.lang.String message, java.lang.String category)
static void
Write(NetObject value)
static void
Write(NetObject value, java.lang.String category)
static void
WriteIf(boolean condition, java.lang.String message)
static void
WriteIf(boolean condition, java.lang.String message, java.lang.String category)
static void
WriteIf(boolean condition, NetObject value)
static void
WriteIf(boolean condition, NetObject value, java.lang.String category)
static void
WriteLine(java.lang.String message)
static void
WriteLine(java.lang.String message, java.lang.String category)
static void
WriteLine(NetObject value)
static void
WriteLine(NetObject value, java.lang.String category)
static void
WriteLineIf(boolean condition, java.lang.String message)
static void
WriteLineIf(boolean condition, java.lang.String message, java.lang.String category)
static void
WriteLineIf(boolean condition, NetObject value)
static void
WriteLineIf(boolean condition, NetObject value, java.lang.String category)
-
-
-
Field Detail
-
assemblyFullName
public static final java.lang.String assemblyFullName
Fully assembly qualified name: System.Diagnostics.TraceSource, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a- See Also:
- Constant Field Values
-
assemblyShortName
public static final java.lang.String assemblyShortName
Assembly name: System.Diagnostics.TraceSource- See Also:
- Constant Field Values
-
className
public static final java.lang.String className
Qualified class name: System.Diagnostics.Trace- See Also:
- Constant Field Values
-
-
Method Detail
-
getJCOAssemblyName
public java.lang.String getJCOAssemblyName()
Description copied from interface:IJCOBridgeReflected
Returns the reflected Assembly name- Specified by:
getJCOAssemblyName
in interfaceIJCOBridgeReflected
- Overrides:
getJCOAssemblyName
in classNetObject
- Returns:
- A
String
representing the Fullname of reflected Assembly
-
getJCOClassName
public java.lang.String getJCOClassName()
Description copied from interface:IJCOBridgeReflected
Returns the reflected Class name- Specified by:
getJCOClassName
in interfaceIJCOBridgeReflected
- Overrides:
getJCOClassName
in classNetObject
- Returns:
- A
String
representing the Fullname of reflected Class
-
getJCOObjectName
public java.lang.String getJCOObjectName()
Description copied from interface:IJCOBridgeReflected
Returns the reflected Class name used to build the object- Specified by:
getJCOObjectName
in interfaceIJCOBridgeReflected
- Overrides:
getJCOObjectName
in classNetObject
- Returns:
- A
String
representing the name used to allocated the object in CLR context
-
getJCOInstance
public java.lang.Object getJCOInstance()
Description copied from interface:IJCOBridgeReflected
Returns the instantiated class- Specified by:
getJCOInstance
in interfaceIJCOBridgeReflected
- Overrides:
getJCOInstance
in classNetObject
- Returns:
- An
Object
representing the CLR instance of the instantiated Class
-
setJCOInstance
public void setJCOInstance(JCObject instance)
- Overrides:
setJCOInstance
in classNetObject
-
getJCOType
public JCType getJCOType()
Description copied from interface:IJCOBridgeReflected
Returns the instantiated class Type- Specified by:
getJCOType
in interfaceIJCOBridgeReflected
- Overrides:
getJCOType
in classNetObject
- Returns:
- A
JCType
representing the CLR Type of the instantiated Class
-
cast
public static Trace cast(IJCOBridgeReflected from) throws java.lang.Throwable
Try to cast theIJCOBridgeReflected
instance intoTrace
, a cast assert is made to check if types are compatible.- Parameters:
from
-IJCOBridgeReflected
instance to be casted- Returns:
Trace
instance- Throws:
java.lang.Throwable
- in case of error during cast operation
-
Assert
public static void Assert(boolean condition, java.lang.String message, java.lang.String detailMessage) throws java.lang.Throwable, ArgumentException, ArgumentNullException, PlatformNotSupportedException, ArgumentOutOfRangeException, OutOfMemoryException, InvalidOperationException
-
Assert
public static void Assert(boolean condition, java.lang.String message) throws java.lang.Throwable, ArgumentException, ArgumentNullException, PlatformNotSupportedException, ArgumentOutOfRangeException, OutOfMemoryException, InvalidOperationException
-
Assert
public static void Assert(boolean condition) throws java.lang.Throwable, ArgumentException, ArgumentNullException, PlatformNotSupportedException, ArgumentOutOfRangeException, OutOfMemoryException, InvalidOperationException
-
Close
public static void Close() throws java.lang.Throwable, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ArgumentException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException
-
Fail
public static void Fail(java.lang.String message, java.lang.String detailMessage) throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, OutOfMemoryException, InvalidOperationException
-
Fail
public static void Fail(java.lang.String message) throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, OutOfMemoryException, InvalidOperationException
-
Flush
public static void Flush() throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException
- Throws:
java.lang.Throwable
NotSupportedException
ArgumentException
PlatformNotSupportedException
ArgumentOutOfRangeException
-
Indent
public static void Indent() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
Refresh
public static void Refresh() throws java.lang.Throwable, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ArgumentException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, IndexOutOfRangeException
-
TraceError
public static void TraceError(java.lang.String format, NetObject... args) throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, InvalidOperationException, ArgumentNullException, FormatException, OutOfMemoryException
-
TraceError
public static void TraceError(java.lang.String message) throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, InvalidOperationException, ArgumentNullException, FormatException, OutOfMemoryException
-
TraceInformation
public static void TraceInformation(java.lang.String format, NetObject... args) throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, InvalidOperationException, ArgumentNullException, FormatException, OutOfMemoryException
-
TraceInformation
public static void TraceInformation(java.lang.String message) throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, InvalidOperationException, ArgumentNullException, FormatException, OutOfMemoryException
-
TraceWarning
public static void TraceWarning(java.lang.String format, NetObject... args) throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, InvalidOperationException, ArgumentNullException, FormatException, OutOfMemoryException
-
TraceWarning
public static void TraceWarning(java.lang.String message) throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, InvalidOperationException, ArgumentNullException, FormatException, OutOfMemoryException
-
Unindent
public static void Unindent() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
Write
public static void Write(NetObject value, java.lang.String category) throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, OutOfMemoryException, InvalidOperationException
-
Write
public static void Write(NetObject value) throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException
- Throws:
java.lang.Throwable
NotSupportedException
ArgumentException
PlatformNotSupportedException
ArgumentOutOfRangeException
-
Write
public static void Write(java.lang.String message, java.lang.String category) throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, OutOfMemoryException, InvalidOperationException
-
Write
public static void Write(java.lang.String message) throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException
- Throws:
java.lang.Throwable
NotSupportedException
ArgumentException
PlatformNotSupportedException
ArgumentOutOfRangeException
-
WriteIf
public static void WriteIf(boolean condition, NetObject value, java.lang.String category) throws java.lang.Throwable, ArgumentException, ArgumentNullException, PlatformNotSupportedException, ArgumentOutOfRangeException, OutOfMemoryException, InvalidOperationException
-
WriteIf
public static void WriteIf(boolean condition, NetObject value) throws java.lang.Throwable, ArgumentException, ArgumentNullException, PlatformNotSupportedException, ArgumentOutOfRangeException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentNullException
PlatformNotSupportedException
ArgumentOutOfRangeException
-
WriteIf
public static void WriteIf(boolean condition, java.lang.String message, java.lang.String category) throws java.lang.Throwable, ArgumentException, ArgumentNullException, PlatformNotSupportedException, ArgumentOutOfRangeException, OutOfMemoryException, InvalidOperationException
-
WriteIf
public static void WriteIf(boolean condition, java.lang.String message) throws java.lang.Throwable, ArgumentException, ArgumentNullException, PlatformNotSupportedException, ArgumentOutOfRangeException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentNullException
PlatformNotSupportedException
ArgumentOutOfRangeException
-
WriteLine
public static void WriteLine(NetObject value, java.lang.String category) throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, OutOfMemoryException, InvalidOperationException
-
WriteLine
public static void WriteLine(NetObject value) throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException
- Throws:
java.lang.Throwable
NotSupportedException
ArgumentException
PlatformNotSupportedException
ArgumentOutOfRangeException
-
WriteLine
public static void WriteLine(java.lang.String message, java.lang.String category) throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, OutOfMemoryException, InvalidOperationException
-
WriteLine
public static void WriteLine(java.lang.String message) throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException
- Throws:
java.lang.Throwable
NotSupportedException
ArgumentException
PlatformNotSupportedException
ArgumentOutOfRangeException
-
WriteLineIf
public static void WriteLineIf(boolean condition, NetObject value, java.lang.String category) throws java.lang.Throwable, ArgumentException, ArgumentNullException, PlatformNotSupportedException, ArgumentOutOfRangeException, OutOfMemoryException, InvalidOperationException
-
WriteLineIf
public static void WriteLineIf(boolean condition, NetObject value) throws java.lang.Throwable, ArgumentException, ArgumentNullException, PlatformNotSupportedException, ArgumentOutOfRangeException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentNullException
PlatformNotSupportedException
ArgumentOutOfRangeException
-
WriteLineIf
public static void WriteLineIf(boolean condition, java.lang.String message, java.lang.String category) throws java.lang.Throwable, ArgumentException, ArgumentNullException, PlatformNotSupportedException, ArgumentOutOfRangeException, OutOfMemoryException, InvalidOperationException
-
WriteLineIf
public static void WriteLineIf(boolean condition, java.lang.String message) throws java.lang.Throwable, ArgumentException, ArgumentNullException, PlatformNotSupportedException, ArgumentOutOfRangeException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentNullException
PlatformNotSupportedException
ArgumentOutOfRangeException
-
getAutoFlush
public static boolean getAutoFlush() throws java.lang.Throwable, NotSupportedException, ArgumentException, InvalidOperationException, ArgumentOutOfRangeException
- Throws:
java.lang.Throwable
NotSupportedException
ArgumentException
InvalidOperationException
ArgumentOutOfRangeException
-
setAutoFlush
public static void setAutoFlush(boolean AutoFlush) throws java.lang.Throwable, NotSupportedException, ArgumentException, InvalidOperationException, ArgumentOutOfRangeException
- Throws:
java.lang.Throwable
NotSupportedException
ArgumentException
InvalidOperationException
ArgumentOutOfRangeException
-
getUseGlobalLock
public static boolean getUseGlobalLock() throws java.lang.Throwable, NotSupportedException, ArgumentException, InvalidOperationException, ArgumentOutOfRangeException
- Throws:
java.lang.Throwable
NotSupportedException
ArgumentException
InvalidOperationException
ArgumentOutOfRangeException
-
setUseGlobalLock
public static void setUseGlobalLock(boolean UseGlobalLock) throws java.lang.Throwable, NotSupportedException, ArgumentException, InvalidOperationException, ArgumentOutOfRangeException
- Throws:
java.lang.Throwable
NotSupportedException
ArgumentException
InvalidOperationException
ArgumentOutOfRangeException
-
getIndentLevel
public static int getIndentLevel() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setIndentLevel
public static void setIndentLevel(int IndentLevel) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getIndentSize
public static int getIndentSize() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setIndentSize
public static void setIndentSize(int IndentSize) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getCorrelationManager
public static CorrelationManager getCorrelationManager() throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException
-
getListeners
public static TraceListenerCollection getListeners() throws java.lang.Throwable, NotSupportedException, ArgumentException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException
- Throws:
java.lang.Throwable
NotSupportedException
ArgumentException
InvalidOperationException
ArgumentOutOfRangeException
PlatformNotSupportedException
-
-