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.

TracingTest.java 384B

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