Package org.jbox2d.testbed.framework
Class ListenerAdapter
- java.lang.Object
-
- org.jbox2d.testbed.framework.ListenerAdapter
-
- All Implemented Interfaces:
JbDeserializer.ObjectListener
class ListenerAdapter extends java.lang.Object implements JbDeserializer.ObjectListener
-
-
Field Summary
Fields Modifier and Type Field Description private JbDeserializer.ObjectListener
listener
-
Constructor Summary
Constructors Constructor Description ListenerAdapter(JbDeserializer.ObjectListener argListener)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
processBody(Body argBody, java.lang.Long argTag)
void
processFixture(Fixture argFixture, java.lang.Long argTag)
void
processJoint(Joint argJoint, java.lang.Long argTag)
void
processShape(Shape argShape, java.lang.Long argTag)
void
processWorld(World argWorld, java.lang.Long argTag)
-
-
-
Field Detail
-
listener
private final JbDeserializer.ObjectListener listener
-
-
Constructor Detail
-
ListenerAdapter
public ListenerAdapter(JbDeserializer.ObjectListener argListener)
-
-
Method Detail
-
processWorld
public void processWorld(World argWorld, java.lang.Long argTag)
- Specified by:
processWorld
in interfaceJbDeserializer.ObjectListener
-
processBody
public void processBody(Body argBody, java.lang.Long argTag)
- Specified by:
processBody
in interfaceJbDeserializer.ObjectListener
-
processFixture
public void processFixture(Fixture argFixture, java.lang.Long argTag)
- Specified by:
processFixture
in interfaceJbDeserializer.ObjectListener
-
processShape
public void processShape(Shape argShape, java.lang.Long argTag)
- Specified by:
processShape
in interfaceJbDeserializer.ObjectListener
-
processJoint
public void processJoint(Joint argJoint, java.lang.Long argTag)
- Specified by:
processJoint
in interfaceJbDeserializer.ObjectListener
-
-