org.jbox2d.serialization
Interface JbSerializer.ObjectSigner
- Enclosing interface:
- JbSerializer
public static interface JbSerializer.ObjectSigner
Interface that allows the serializer to
look up tags for each object, which can be
used later during deserializing by the developer.
- Author:
- Daniel
Method Summary |
java.lang.Long |
getTag(org.jbox2d.dynamics.Body argBody)
|
java.lang.Long |
getTag(org.jbox2d.dynamics.Fixture argFixture)
|
java.lang.Long |
getTag(org.jbox2d.dynamics.joints.Joint argJoint)
|
java.lang.Long |
getTag(org.jbox2d.collision.shapes.Shape argShape)
|
java.lang.Long |
getTag(org.jbox2d.dynamics.World argWorld)
|
getTag
java.lang.Long getTag(org.jbox2d.dynamics.World argWorld)
- Parameters:
argWorld
-
- Returns:
- the tag for the world. can be null.
getTag
java.lang.Long getTag(org.jbox2d.dynamics.Body argBody)
- Parameters:
argBody
-
- Returns:
- the tag for the body. can be null.
getTag
java.lang.Long getTag(org.jbox2d.collision.shapes.Shape argShape)
- Parameters:
argShape
-
- Returns:
- the tag for the shape. can be null.
getTag
java.lang.Long getTag(org.jbox2d.dynamics.Fixture argFixture)
- Parameters:
argFixture
-
- Returns:
- the tag for the fixture. can be null.
getTag
java.lang.Long getTag(org.jbox2d.dynamics.joints.Joint argJoint)
- Parameters:
argJoint
-
- Returns:
- the tag for the joint. can be null.
Copyright © 2012. All Rights Reserved.