net.silentlycrashing.util
Class PointInTime

java.lang.Object
  extended by java.awt.geom.Point2D
      extended by java.awt.Point
          extended by net.silentlycrashing.util.PointInTime
All Implemented Interfaces:
Serializable, Cloneable

public class PointInTime
extends Point

A Point with a time stamp (in frames).

See Also:
Serialized Form

Nested Class Summary
 
Nested classes/interfaces inherited from class java.awt.geom.Point2D
Point2D.Double, Point2D.Float
 
Field Summary
private  int birthFrame
           
 
Fields inherited from class java.awt.Point
x, y
 
Constructor Summary
PointInTime(int x, int y, int b)
          Builds a PointInTime.
PointInTime(Point pt, int b)
          Builds a PointInTime.
 
Method Summary
 int birthFrame()
           
 
Methods inherited from class java.awt.Point
equals, getLocation, getX, getY, move, setLocation, setLocation, setLocation, toString, translate
 
Methods inherited from class java.awt.geom.Point2D
clone, distance, distance, distance, distanceSq, distanceSq, distanceSq, hashCode, setLocation
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Field Detail

birthFrame

private int birthFrame
Constructor Detail

PointInTime

public PointInTime(int x,
                   int y,
                   int b)
Builds a PointInTime.

Parameters:
x - the x-coord
y - the y-coord
b - the birth frame

PointInTime

public PointInTime(Point pt,
                   int b)
Builds a PointInTime.

Parameters:
pt - the Point
b - the birth frame
Method Detail

birthFrame

public int birthFrame()