|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjist.runtime.EntityRef
public class EntityRef
Stores a reference to a (possibly remote) Entity object. A reference consists of a serialized reference to a Controller and an index within that Controller.
Field Summary | |
---|---|
private int |
index
Entity index within Controller. |
static EntityRef |
NULL
NULL reference constant. |
private static java.lang.Boolean |
RET_BOOLEAN
boolean type for null return. |
private static java.lang.Byte |
RET_BYTE
byte type for null return. |
private static java.lang.Character |
RET_CHARACTER
char type for null return. |
private static java.lang.Double |
RET_DOUBLE
double type for null return. |
private static java.lang.Float |
RET_FLOAT
float type for null return. |
private static java.lang.Integer |
RET_INTEGER
int type for null return. |
private static java.lang.Long |
RET_LONG
long type for null return. |
private static java.lang.Short |
RET_SHORT
short type for null return. |
Constructor Summary | |
---|---|
EntityRef(int index)
Initialise a new entity reference with given Controller and Entity IDs. |
Method Summary | |
---|---|
private java.lang.Object |
blockingInvoke(java.lang.Object proxy,
java.lang.reflect.Method method,
java.lang.Object[] args)
Helper method: called whenever a BLOCKING method on proxy entity reference is invoked. |
boolean |
equals(java.lang.Object o)
Test object equality. |
java.lang.Class |
getClassRef()
Return class of referenced entity. |
ControllerRemote |
getController()
Return controller of referenced entity. |
int |
getIndex()
Return index of referenced entity. |
int |
hashCode()
Return entity reference hashcode. |
java.lang.Object |
invoke(java.lang.Object proxy,
java.lang.reflect.Method method,
java.lang.Object[] args)
Called whenever a proxy entity reference is invoked. |
java.lang.String |
toString()
Return toString of referenced entity. |
Methods inherited from class java.lang.Object |
---|
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
public static final EntityRef NULL
private final int index
private static final java.lang.Boolean RET_BOOLEAN
private static final java.lang.Byte RET_BYTE
private static final java.lang.Character RET_CHARACTER
private static final java.lang.Double RET_DOUBLE
private static final java.lang.Float RET_FLOAT
private static final java.lang.Integer RET_INTEGER
private static final java.lang.Long RET_LONG
private static final java.lang.Short RET_SHORT
Constructor Detail |
---|
public EntityRef(int index)
index
- entity IDMethod Detail |
---|
public int hashCode()
hashCode
in class java.lang.Object
public boolean equals(java.lang.Object o)
equals
in class java.lang.Object
o
- object to test equality
public ControllerRemote getController()
public int getIndex()
public java.lang.String toString()
toString
in class java.lang.Object
public java.lang.Class getClassRef()
public java.lang.Object invoke(java.lang.Object proxy, java.lang.reflect.Method method, java.lang.Object[] args) throws java.lang.Throwable
invoke
in interface java.lang.reflect.InvocationHandler
proxy
- proxy entity reference object whose method was invokedmethod
- method invoked on entity reference objectargs
- arguments of the method invocation
java.lang.Throwable
- whatever was thrown by blocking events; never for non-blocking eventsprivate java.lang.Object blockingInvoke(java.lang.Object proxy, java.lang.reflect.Method method, java.lang.Object[] args) throws java.lang.Throwable
proxy
- proxy entity reference object whose method was invokedmethod
- method invoked on entity reference objectargs
- arguments of the method invocation
java.lang.Throwable
- whatever was thrown by blocking events
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |