Public Member Functions | |
PointCollector () | |
PointCollector (int capacity) | |
void | finalize () |
Point | newPoint () |
Point | newPoint (double x, double y) |
void | recyclePoint (Point point) |
void | setCapacity (int capacity) |
Private Attributes | |
java.lang.ref.ReferenceQueue | queue = new java.lang.ref.ReferenceQueue() |
Point | first = null |
Point | last = null |
int | recycled = 0 |
int | created = 0 |
int | size = 0 |
int | capacity = 10 |
|
PointCollector constructor with no arguments. |
|
PointCollector constructor with no arguments. |
|
|
|
Insert the method's description here. Creation date: (31.03.2001 23:38:04)
|
|
Insert the method's description here. Creation date: (31.03.2001 23:38:04)
|
|
Insert the method's description here. Creation date: (31.03.2001 23:46:49)
|
|
Sets capacity of catch. If catch contains more point than new capacity, they will not be released until recycled. |
|
|
|
|
|
|
|
|
|
|
|
|
|
|