選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
Alexander Kriegisch 61ceb8a58e Move docs examples directory two levels up 6ヶ月前
..
lib Move docs examples directory two levels up 5ヶ月前
version1 Move docs examples directory two levels up 5ヶ月前
version2 Move docs examples directory two levels up 5ヶ月前
version3 Move docs examples directory two levels up 5ヶ月前
Circle.java Move docs examples directory two levels up 5ヶ月前
ExampleMain.java Move docs examples directory two levels up 5ヶ月前
README Move docs examples directory two levels up 5ヶ月前
Square.java Move docs examples directory two levels up 5ヶ月前
TwoDShape.java Move docs examples directory two levels up 5ヶ月前
notrace.lst Move docs examples directory two levels up 5ヶ月前
tracelib.lst Move docs examples directory two levels up 5ヶ月前
tracev1.lst Move docs examples directory two levels up 5ヶ月前
tracev2.lst Move docs examples directory two levels up 5ヶ月前
tracev3.lst Move docs examples directory two levels up 5ヶ月前

README


This directory contains several examples of tracing aspects,
including a reusable tracing library and examples of
using that library.

A lesson in the AspectJ Primer explains all of this code.

To work with these (or any other examples), first be sure .../examples
is on your classpath, where ... is where you have installed AspectJ.


--To compile and run the example without tracing--

ajc @.../examples/tracing/notrace.lst

java tracing.ExampleMain


--To compile and run the example with tracing version<N>--

ajc @.../examples/tracing/tracev<N>.lst

java tracing.version<N>.TraceMyClasses

where <N> is 1, 2, 3 or 4

--To use the tracing.lib.AbstractTrace aspect--

Make sure .../examples is in your classpath.

In order to use this aspect, please read the documentation under
tracing/doc