diff options
author | ehilsdal <ehilsdal> | 2003-04-08 21:59:39 +0000 |
---|---|---|
committer | ehilsdal <ehilsdal> | 2003-04-08 21:59:39 +0000 |
commit | e2af842ae7dbf3b0315a5f73d3d5ec9b7f041556 (patch) | |
tree | a4e993a588298b0d6babdf643de8d35991a2ebd6 /docs/dist/doc/examples/tracing/version2/Trace.java | |
parent | f11709f8bc26a053ff573039cc0b5ee887c005ff (diff) | |
download | aspectj-e2af842ae7dbf3b0315a5f73d3d5ec9b7f041556.tar.gz aspectj-e2af842ae7dbf3b0315a5f73d3d5ec9b7f041556.zip |
folded in material from README-11.html
finally totally and completely stomped out "introduction"
minor formatting changes
generating better filenames for the progguide
added A4 version of quick reference
Diffstat (limited to 'docs/dist/doc/examples/tracing/version2/Trace.java')
-rw-r--r-- | docs/dist/doc/examples/tracing/version2/Trace.java | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/docs/dist/doc/examples/tracing/version2/Trace.java b/docs/dist/doc/examples/tracing/version2/Trace.java index cd631e278..6c43d60f8 100644 --- a/docs/dist/doc/examples/tracing/version2/Trace.java +++ b/docs/dist/doc/examples/tracing/version2/Trace.java @@ -1,5 +1,4 @@ /* - Copyright (c) Xerox Corporation 1998-2002. All rights reserved. Use and copying of this software and preparation of derivative works based @@ -9,11 +8,6 @@ laws. This software is made available AS IS, and Xerox Corporation makes no warranty about the software, its performance or its conformity to any specification. - -|<--- this code is formatted to fit into 80 columns --->| -|<--- this code is formatted to fit into 80 columns --->| -|<--- this code is formatted to fit into 80 columns --->| - */ package tracing.version2; @@ -25,7 +19,7 @@ import java.io.PrintStream; * This class provides support for printing trace messages into a stream. * Trace messages are printed before and after constructors and methods * are executed. - * It defines one abstract crosscut for injecting that tracing functionality + * It defines one abstract crosscut for injecting that tracing functionality * into any application classes. * To use it, provide a subclass that concretizes the abstract crosscut. */ @@ -38,7 +32,7 @@ abstract aspect Trace { /** * There are 3 trace levels (values of TRACELEVEL): * 0 - No messages are printed - * 1 - Trace messages are printed, but there is no indentation + * 1 - Trace messages are printed, but there is no indentation * according to the call stack * 2 - Trace messages are printed, and they are indented * according to the call stack |