You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

DefaultTracingTest.java 350B

123456789101112131415
  1. import org.aspectj.weaver.tools.*;
  2. public class DefaultTracingTest {
  3. public void test () {
  4. TraceFactory factory = new DefaultTraceFactory();
  5. Trace trace = factory.getTrace(getClass());
  6. System.out.println("? DefaultTracingTest.main() trace=" + trace);
  7. }
  8. public static void main (String[] args) {
  9. new DefaultTracingTest().test();
  10. }
  11. }