com.ibm.ras
Class RASMaskChangeEvent
- java.lang.Object
java.util.EventObject
com.ibm.ras.RASMaskChangeEvent
All implemented interfaces:
java.io.Serializable
Deprecated. As of WAS 6.0, recommend using java.util.logging
- public class RASMaskChangeEvent
- 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:
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 |
|---|---|
|
getNewMask()
Deprecated. Gets the new message or trace mask value.
|
|
getOldMask()
Deprecated. Gets the old message or trace mask value.
|
|
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
- public RASMaskChangeEvent(java.lang.Object source,
- long oldMask,
- long newMask,
- boolean flag)
Deprecated.
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
- public long getOldMask()
Deprecated.
Gets the old message or trace mask value.
Returns:
The old mask value.
getNewMask
- public long getNewMask()
Deprecated.
Gets the new message or trace mask value.
Returns:
The new mask value.
isMessageMask
- 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.
RASMaskChangeEvent.