public abstract class NativeTraces
extends java.lang.Object
Modifier and Type | Field and Description |
---|---|
static TraceClass |
CLASS
Native traces.
|
Constructor and Description |
---|
NativeTraces() |
Modifier and Type | Method and Description |
---|---|
static java.lang.String |
begin(java.lang.String STR_Method)
Traces the entrance within a method.
|
static java.lang.String |
end(java.lang.String STR_Method)
Traces the output of a void method.
|
static java.lang.String |
end(java.lang.String STR_Method,
java.lang.String STR_Result)
Traces the output of a method returning a value.
|
static java.lang.String |
param(java.lang.String STR_ParamName,
java.lang.String STR_ParamValue)
Traces a parameter value, when entering a method basically.
|
static java.lang.String |
value(java.lang.String STR_VarName,
java.lang.String STR_VarValue)
Traces a variable value, within the body of a method basically.
|
public static final TraceClass CLASS
public static final java.lang.String begin(java.lang.String STR_Method)
STR_Method
- Method name.public static final java.lang.String param(java.lang.String STR_ParamName, java.lang.String STR_ParamValue)
STR_ParamName
- Name of the parameter.STR_ParamValue
- Value of the parameter.public static final java.lang.String value(java.lang.String STR_VarName, java.lang.String STR_VarValue)
STR_VarName
- Name of the variable.STR_VarValue
- Value of the variable.public static final java.lang.String end(java.lang.String STR_Method)
STR_Method
- Method name.public static final java.lang.String end(java.lang.String STR_Method, java.lang.String STR_Result)
STR_Method
- Method name.STR_Result
- Value returned by the method.