Uses of Interface
net.jinx.physics.Tag

Packages that use Tag
net.jinx.physics   
net.jinx.physics.collision   
net.jinx.physics.fountain   
net.jinx.physics.gravity   
net.jinx.physics.spring   
net.jinx.physics.util   
 

Uses of Tag in net.jinx.physics
 

Methods in net.jinx.physics that return Tag
 Tag PhysicalObject.getTag(java.lang.String name)
          Gets the Tag associated with the given name.
 

Methods in net.jinx.physics with parameters of type Tag
 void PhysicalObject.removeTag(Tag tag)
          Removes the Tag with the same name as Tag.
 void PhysicalObject.tag(Tag tag)
          Attaches a Tag to this PhysicalObject, replacing any existing Tag with the same name.
 

Uses of Tag in net.jinx.physics.collision
 

Classes in net.jinx.physics.collision that implement Tag
 class CollisionTag
           
 class SphereCollisionTag
           
 

Uses of Tag in net.jinx.physics.fountain
 

Classes in net.jinx.physics.fountain that implement Tag
 class DecayTag
           
 

Uses of Tag in net.jinx.physics.gravity
 

Classes in net.jinx.physics.gravity that implement Tag
 class BigMassTag
          Tag implementation that indicates the PhysicalObject is a significant enough mass to be used for gravitational calculations.
 class CenterOfGravityTag
          Tag implementation to provide a Physical object with a center of gravity, in the case of an object with separate center of mass and center of gravity.
 

Uses of Tag in net.jinx.physics.spring
 

Classes in net.jinx.physics.spring that implement Tag
 class SpringTag
           
 

Methods in net.jinx.physics.spring with parameters of type Tag
 void SpringSheet.tag(Tag tag)
           
 

Uses of Tag in net.jinx.physics.util
 

Methods in net.jinx.physics.util with parameters of type Tag
 void VisiblePhysical.tag(Tag tag)