summaryrefslogtreecommitdiffstats
path: root/org.aspectj.matcher/src/org/aspectj/weaver/tools/Trace.java
blob: c1a040d3626c1c82d5712315936bb3ab29b63feb (plain)
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
59
60
61
62
/*******************************************************************************
 * 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 v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 * 
 * Contributors:
 *     Matthew Webster - initial implementation
 *******************************************************************************/
package org.aspectj.weaver.tools;

public interface Trace {

	public void enter (String methodName, Object thiz, Object[] args);

	public void enter (String methodName, Object thiz);

	public void exit (String methodName, Object ret);

	public void exit (String methodName, Throwable th);

	public void exit (String methodName);

	public void event (String methodName);

	public void event (String methodName, Object thiz, Object[] args);
	
	public void debug (String message);
	
	public void info (String message);

	public void warn (String message);

	public void warn (String message, Throwable th);

	public void error (String message);

	public void error (String message, Throwable th);

	public void fatal (String message);

	public void fatal (String message, Throwable th);
	
	
	/*
	 * Convenience methods
	 */
	public void enter (String methodName, Object thiz, Object arg);

	public void enter (String methodName, Object thiz, boolean z);

	public void exit (String methodName, boolean b);

	public void exit (String methodName, int i);

	public void event (String methodName, Object thiz, Object arg);
	
	public boolean isTraceEnabled ();

	public void setTraceEnabled (boolean b);
}