1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
/*******************************************************************************
* Copyright (c) 2006 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.txt
*
* Contributors:
* Matthew Webster - initial implementation
*******************************************************************************/
package org.aspectj.weaver.tools;
public interface Trace {
void enter(String methodName, Object thiz, Object[] args);
void enter(String methodName, Object thiz);
void exit(String methodName, Object ret);
void exit(String methodName, Throwable th);
void exit(String methodName);
void event(String methodName);
void event(String methodName, Object thiz, Object[] args);
void debug(String message);
void info(String message);
void warn(String message);
void warn(String message, Throwable th);
void error(String message);
void error(String message, Throwable th);
void fatal(String message);
void fatal(String message, Throwable th);
void enter(String methodName, Object thiz, Object arg);
void enter(String methodName, Object thiz, boolean z);
void exit(String methodName, boolean b);
void exit(String methodName, int i);
void event(String methodName, Object thiz, Object arg);
boolean isTraceEnabled();
void setTraceEnabled(boolean b);
}
|