com.ibm.ras

Class RASMaskChangeEvent

  1. java.lang.Object
  2. extended byjava.util.EventObject
  3. extended bycom.ibm.ras.RASMaskChangeEvent
All implemented interfaces:
java.io.Serializable

Deprecated. As of WAS 6.0, recommend using java.util.logging
  1. public class RASMaskChangeEvent
  2. extends java.util.EventObject
RASMaskChangeEvent indicates that a change has occurred in a message or trace mask. It is sent from a RASIMaskChangeGenerator to a RASIMaskChangeListener.
See Also:
Serialized Form

Field Summary

Fields inherited from class java.util.EventObject
source

Constructor Summary

Constructor and Description
RASMaskChangeEvent(java.lang.Object source,long oldMask,long newMask,boolean flag)
Deprecated. Creates a RASMaskChangeEvent.

Method Summary

Modifier and Type Method and Description
  1. long
getNewMask()
Deprecated. Gets the new message or trace mask value.
  1. long
getOldMask()
Deprecated. Gets the old message or trace mask value.
  1. boolean
isMessageMask()
Deprecated. Determines if the changed mask was a message mask or a trace mask.
Methods inherited from class java.util.EventObject
getSource, toString
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait

Constructor Detail

RASMaskChangeEvent

  1. public RASMaskChangeEvent(java.lang.Object source,
  2. long oldMask,
  3. long newMask,
  4. boolean flag)
Deprecated.
Creates a RASMaskChangeEvent.
Parameters:
source - The object which generated this RASMaskChangeEvent
oldMask - The old mask value.
newMask - The new mask value.
flag - true if this mask is a message mask and false if it is a trace mask.

Method Detail

getOldMask

  1. public long getOldMask()
Deprecated.
Gets the old message or trace mask value.
Returns:
The old mask value.

getNewMask

  1. public long getNewMask()
Deprecated.
Gets the new message or trace mask value.
Returns:
The new mask value.

isMessageMask

  1. public boolean isMessageMask()
Deprecated.
Determines if the changed mask was a message mask or a trace mask.
Returns:
true if this changed mask is a message mask and false if it is a trace mask.