|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectovm.polyd.runemu.RunaboutBis
public class RunaboutBis
An accurate Runabout emulation, this class can be used as a "drop-in" replacement.
All major features are supported,
including support for primitives and the visitDefault
facility. It leaves out only the calls
that are more closely associated with the internal
implementation of the original Runabout:
addExternalVisit and getAppropriateCode.
| Method Summary | |
|---|---|
void |
visit(boolean o)
A "catch-all" visit method, redirected to
visitDefault. |
void |
visit(byte o)
A "catch-all" visit method, redirected to
visitDefault. |
void |
visit(char o)
A "catch-all" visit method, redirected to
visitDefault. |
void |
visit(double o)
A "catch-all" visit method, redirected to
visitDefault. |
void |
visit(float o)
A "catch-all" visit method, redirected to
visitDefault. |
void |
visit(int o)
A "catch-all" visit method, redirected to
visitDefault. |
void |
visit(long o)
A "catch-all" visit method, redirected to
visitDefault. |
void |
visit(java.lang.Object o)
A "catch-all" visit method, redirected to
visitDefault. |
void |
visit(short o)
A "catch-all" visit method, redirected to
visitDefault. |
void |
visitAppropriate(java.lang.Object o)
The bridge method that performs the actual dispatching, calling the appropriate visit for this object. |
void |
visitAppropriate(java.lang.Object o,
java.lang.Class c)
The bridge method that performs the dispatching for objects or primitives. |
| Methods inherited from class java.lang.Object |
|---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Method Detail |
|---|
public void visit(java.lang.Object o)
visit method, redirected to
visitDefault.
o - the object that should be visitedpublic void visit(char o)
visit method, redirected to
visitDefault.
o - the char that should be visitedpublic void visit(byte o)
visit method, redirected to
visitDefault.
o - the byte that should be visitedpublic void visit(int o)
visit method, redirected to
visitDefault.
o - the int that should be visitedpublic void visit(long o)
visit method, redirected to
visitDefault.
o - the long that should be visitedpublic void visit(float o)
visit method, redirected to
visitDefault.
o - the float that should be visitedpublic void visit(double o)
visit method, redirected to
visitDefault.
o - the double that should be visitedpublic void visit(short o)
visit method, redirected to
visitDefault.
o - the short that should be visitedpublic void visit(boolean o)
visit method, redirected to
visitDefault.
o - the boolean that should be visitedpublic void visitAppropriate(java.lang.Object o)
visit for this object.
o - the object that should be visited
public void visitAppropriate(java.lang.Object o,
java.lang.Class c)
o - the object that should be visited
(possibly a wrapped primitive)c - the class of the object (possibly
a primitive type)
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||