Package gov.aps.jca.event
Class AccessRightsEvent
- java.lang.Object
-
- java.util.EventObject
-
- gov.aps.jca.event.CAEvent
-
- gov.aps.jca.event.AccessRightsEvent
-
- All Implemented Interfaces:
Serializable
public class AccessRightsEvent extends CAEvent
An event which indicates a change in a Channel read and write access properties.- See Also:
Channel, Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected boolean_readprotected boolean_write-
Fields inherited from class java.util.EventObject
source
-
-
Constructor Summary
Constructors Constructor Description AccessRightsEvent(Channel channel, boolean read, boolean write)Constructs an AccessRightEvent object.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleangetReadAccess()Returns the read access value associated with this event.booleangetWriteAccess()Returns the write access value associated with this event.-
Methods inherited from class java.util.EventObject
getSource, toString
-
-
-
-
Constructor Detail
-
AccessRightsEvent
public AccessRightsEvent(Channel channel, boolean read, boolean write)
Constructs an AccessRightEvent object.- Parameters:
channel- the event source.read- the new read access value.write- the new write access value.
-
-