ConvertEventpublic class ConvertEvent extends RemoteEvent
Fields Summary |
---|
protected int | value | static final int | ID |
Constructors Summary |
---|
public ConvertEvent(Object source, int value, long seqno, MarshalledObject key)
// The superclass needs our event ID
super(source, ID, seqno, key);
this.value = value;
|
Methods Summary |
---|
public int | getValue()
return value;
|
|