Package org.jbox2d.serialization
Interface JbDeserializer.ObjectListener
-
- All Known Implementing Classes:
ApplyForce
,BlobTest4
,BodyTypes
,Breakable
,Cantilever
,Car
,Chain
,CharacterCollision
,CircleStress
,CollisionFiltering
,CollisionProcessing
,CompoundShapes
,ConfinedTest
,ContinuousTest
,ConvexHull
,ConveyorBelt
,DistanceTest
,DominoTest
,DominoTower
,DynamicTreeTest
,EdgeShapes
,FixedPendulumTest
,FreePendulumTest
,Gears
,LiquidTest
,ListenerAdapter
,OneSidedTest
,PistonTest
,PolyShapes
,PrismaticTest
,Pulleys
,PyramidTest
,RayCastTest
,RevoluteTest
,RopeTest
,SensorTest
,ShapeEditing
,SliderCrankTest
,SphereStack
,TestbedTest
,TheoJansen
,Tumbler
,VaryingFrictionTest
,VaryingRestitution
,VerticalStack
,Web
- Enclosing interface:
- JbDeserializer
public static interface JbDeserializer.ObjectListener
Called for each physics object with a tag defined.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
processBody(Body body, java.lang.Long tag)
void
processFixture(Fixture fixture, java.lang.Long tag)
void
processJoint(Joint joint, java.lang.Long tag)
void
processShape(Shape shape, java.lang.Long tag)
void
processWorld(World world, java.lang.Long tag)
-
-
-
Method Detail
-
processWorld
void processWorld(World world, java.lang.Long tag)
-
processBody
void processBody(Body body, java.lang.Long tag)
-
processFixture
void processFixture(Fixture fixture, java.lang.Long tag)
-
processShape
void processShape(Shape shape, java.lang.Long tag)
-
processJoint
void processJoint(Joint joint, java.lang.Long tag)
-
-