Copyright © 2011 Citra Technologies. All Rights Reserved.

com.citra.table.remote
Class RemoteTableEvent

java.lang.Object
  extended by java.util.EventObject
      extended by com.citra.table.remote.RemoteTableEvent
All Implemented Interfaces:
Serializable

public class RemoteTableEvent
extends EventObject

An event used to identify the status of a RemoteTableModel.

See Also:
Serialized Form

Field Summary
static int STARTED
          an integer representing a 'started' remote action.
static int STOPPED
          an integer representing a 'stopped' remote action.
protected  int type
          the type of the event.
 
Fields inherited from class java.util.EventObject
source
 
Constructor Summary
RemoteTableEvent(Object source, int type)
          Constructs a RemoteTableEvent.
 
Method Summary
 int getType()
          Returns the event's type.
 
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
 

Field Detail

STARTED

public static final int STARTED
an integer representing a 'started' remote action.

See Also:
Constant Field Values

STOPPED

public static final int STOPPED
an integer representing a 'stopped' remote action.

See Also:
Constant Field Values

type

protected int type
the type of the event.

Constructor Detail

RemoteTableEvent

public RemoteTableEvent(Object source,
                        int type)
Constructs a RemoteTableEvent.

Method Detail

getType

public int getType()
Returns the event's type. Can be either STARTED or STOPPED.

Returns:
the event's type.

Copyright © 2011 Citra Technologies. All Rights Reserved.