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 |
Long |
getTag(org.jbox2d.dynamics.Body argBody)
|
Long |
getTag(org.jbox2d.dynamics.Fixture argFixture)
|
Long |
getTag(org.jbox2d.dynamics.joints.Joint argJoint)
|
Long |
getTag(org.jbox2d.collision.shapes.Shape argShape)
|
Long |
getTag(org.jbox2d.dynamics.World argWorld)
|
getTag
Long getTag(org.jbox2d.dynamics.World argWorld)
- Parameters:
argWorld -
- Returns:
- the tag for the world. can be null.
getTag
Long getTag(org.jbox2d.dynamics.Body argBody)
- Parameters:
argBody -
- Returns:
- the tag for the body. can be null.
getTag
Long getTag(org.jbox2d.collision.shapes.Shape argShape)
- Parameters:
argShape -
- Returns:
- the tag for the shape. can be null.
getTag
Long getTag(org.jbox2d.dynamics.Fixture argFixture)
- Parameters:
argFixture -
- Returns:
- the tag for the fixture. can be null.
getTag
Long getTag(org.jbox2d.dynamics.joints.Joint argJoint)
- Parameters:
argJoint -
- Returns:
- the tag for the joint. can be null.
Copyright © 2012. All Rights Reserved.