com.sun.media.jsdt.event
Interface ByteArrayListener

All Known Implementing Classes:
ByteArrayAdaptor

public abstract interface ByteArrayListener
extends java.util.EventListener, java.io.Serializable

The listener interface for receiving ByteArray events.

Since:
JSDT 1.0
Version:
1.5 - 7th January 1999
Author:
Rich Burridge

Fields inherited from class java.io.Serializable
serialVersionUID
 
Method Summary
 void byteArrayExpelled(ByteArrayEvent event)
           invoked when a Client has been expelled from a ByteArray.
 void byteArrayInvited(ByteArrayEvent event)
           invoked when a Client has been invited to join a ByteArray.
 void byteArrayJoined(ByteArrayEvent event)
           invoked when a Client has joined a ByteArray.
 void byteArrayLeft(ByteArrayEvent event)
           invoked when a Client has left a ByteArray.
 void byteArrayValueChanged(ByteArrayEvent event)
           invoked when the value of a ByteArray has changed.
 

Method Detail

byteArrayJoined

public void byteArrayJoined(ByteArrayEvent event)
invoked when a Client has joined a ByteArray.
Parameters:
event - the ByteArray event containing more information.

byteArrayLeft

public void byteArrayLeft(ByteArrayEvent event)
invoked when a Client has left a ByteArray.
Parameters:
event - the ByteArray event containing more information.

byteArrayValueChanged

public void byteArrayValueChanged(ByteArrayEvent event)
invoked when the value of a ByteArray has changed.
Parameters:
event - the ByteArray event containing more information.

byteArrayInvited

public void byteArrayInvited(ByteArrayEvent event)
invoked when a Client has been invited to join a ByteArray.
Parameters:
event - the ByteArray event containing more information.

byteArrayExpelled

public void byteArrayExpelled(ByteArrayEvent event)
invoked when a Client has been expelled from a ByteArray.
Parameters:
event - the ByteArray event containing more information.