aboutsummaryrefslogtreecommitdiffstats
path: root/docs/dist/doc/examples/tracing
diff options
context:
space:
mode:
Diffstat (limited to 'docs/dist/doc/examples/tracing')
-rw-r--r--docs/dist/doc/examples/tracing/TwoDShape.java11
-rw-r--r--docs/dist/doc/examples/tracing/version1/Trace.java8
-rw-r--r--docs/dist/doc/examples/tracing/version1/TraceMyClasses.java8
-rw-r--r--docs/dist/doc/examples/tracing/version2/Trace.java10
-rw-r--r--docs/dist/doc/examples/tracing/version2/TraceMyClasses.java8
5 files changed, 6 insertions, 39 deletions
diff --git a/docs/dist/doc/examples/tracing/TwoDShape.java b/docs/dist/doc/examples/tracing/TwoDShape.java
index 960a01b89..531b6f120 100644
--- a/docs/dist/doc/examples/tracing/TwoDShape.java
+++ b/docs/dist/doc/examples/tracing/TwoDShape.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,21 +8,13 @@ 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;
/**
- *
- * TwoDShape is an abstract class that defines generic functionality
+ * TwoDShape is an abstract class that defines generic functionality
* for 2D shapes.
- *
*/
public abstract class TwoDShape {
/**
diff --git a/docs/dist/doc/examples/tracing/version1/Trace.java b/docs/dist/doc/examples/tracing/version1/Trace.java
index eef96df51..97b5edb3f 100644
--- a/docs/dist/doc/examples/tracing/version1/Trace.java
+++ b/docs/dist/doc/examples/tracing/version1/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.version1;
@@ -30,7 +24,7 @@ public class 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
diff --git a/docs/dist/doc/examples/tracing/version1/TraceMyClasses.java b/docs/dist/doc/examples/tracing/version1/TraceMyClasses.java
index b4a97ee31..736e96413 100644
--- a/docs/dist/doc/examples/tracing/version1/TraceMyClasses.java
+++ b/docs/dist/doc/examples/tracing/version1/TraceMyClasses.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,18 +8,13 @@ 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.version1;
/**
*
- * This class connects the tracing functions in the Trace class with
+ * This class connects the tracing functions in the Trace class with
* the constructors and methods in the application classes.
*
*/
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
diff --git a/docs/dist/doc/examples/tracing/version2/TraceMyClasses.java b/docs/dist/doc/examples/tracing/version2/TraceMyClasses.java
index a3ae99e95..d9ba21c54 100644
--- a/docs/dist/doc/examples/tracing/version2/TraceMyClasses.java
+++ b/docs/dist/doc/examples/tracing/version2/TraceMyClasses.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 tracing.ExampleMain;
/**
*
- * This class concretizes the abstract crosscut in Trace,
+ * This class concretizes the abstract crosscut in Trace,
* applying the trace facility to these application classes.
*
*/