22 lines
448 B
Java
22 lines
448 B
Java
|
package capturemanager.classes;
|
||
|
|
||
|
abstract class LogPrintOutControlNative
|
||
|
{
|
||
|
|
||
|
native protected void addPrintOutDestinationNative(
|
||
|
long aPtr,
|
||
|
int aLevelType,
|
||
|
String aFilePath);
|
||
|
|
||
|
native protected void removePrintOutDestinationNative(
|
||
|
long aPtr,
|
||
|
int aLevelType,
|
||
|
String aFilePath);
|
||
|
|
||
|
native protected void setVerboseNative(
|
||
|
long aPtr,
|
||
|
int aLevelType,
|
||
|
String aFilePath,
|
||
|
boolean aState);
|
||
|
}
|