com.ibm.ras

Class RASCopyright

  1. java.lang.Object
  2. extended bycom.ibm.ras.RASCopyright

Deprecated. As of WAS 6.0, recommend using java.util.logging
  1. public class RASCopyright
  2. extends java.lang.Object
RASCopyright contains copyright statements which are included in each class file of this package. The long form must be included in the main class of each major component, and the short form must be included in all other classes.

The reason for having a separate class for these statements is to make it possible to update them once, and still affect all the class files in a product.

There are numerous ways to use this class to achieve the goal of having a readable copyright statement in a class file. The easiest way is to define a static string, as in this example:

 private static final String S = RASCopyright.COPYRIGHT_99;
 
This statement will appear in the class file, even if optimization is used.

Field Summary

Modifier and Type Field and Description
  1. static
  2. java.lang.String
COPYRIGHT_98
Deprecated. Short copyright dated 1998.
  1. static
  2. java.lang.String
COPYRIGHT_98_99
Deprecated. Short copyright dated 1998, 1999.
  1. static
  2. java.lang.String
COPYRIGHT_99
Deprecated. Short copyright dated 1999.
  1. static
  2. java.lang.String
LONG_COPYRIGHT_98
Deprecated. Long copyright dated 1998.
  1. static
  2. java.lang.String
TIV_COPYRIGHT_99
Deprecated. Short copyright dated 1999.

Constructor Summary

Constructor and Description
RASCopyright()
Deprecated.

Method Summary

Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

Field Detail

  1. public static final java.lang.String COPYRIGHT_98
Deprecated.
Short copyright dated 1998.
See Also:

  1. public static final java.lang.String COPYRIGHT_99
Deprecated.
Short copyright dated 1999.
See Also:

  1. public static final java.lang.String COPYRIGHT_98_99
Deprecated.
Short copyright dated 1998, 1999.
See Also:

  1. public static final java.lang.String LONG_COPYRIGHT_98
Deprecated.
Long copyright dated 1998.
See Also:

  1. public static final java.lang.String TIV_COPYRIGHT_99
Deprecated.
Short copyright dated 1999.
See Also:

Constructor Detail

RASCopyright

  1. public RASCopyright()
Deprecated.