public class MapPoint extends LocationObject
| Modifier and Type | Field and Description |
|---|---|
protected int |
quantity
The visit quantity.
|
protected double |
seen
The seen value (1=just seen -> 0=never seen).
|
id, location, pcs| Constructor and Description |
|---|
MapPoint()
Bean constructor required for remote cleaner GUI.
|
MapPoint(Location location,
int quantity,
double seen)
Create a new map point.
|
| Modifier and Type | Method and Description |
|---|---|
static MapPoint[] |
getMapPointRaster(int numx,
int numy,
double width,
double height)
Create a map point raster.
|
int |
getQuantity()
Get the quantity.
|
double |
getSeen()
Get the seen.
|
void |
setQuantity(int quantity)
Set the quantity.
|
void |
setSeen(double seen)
Set the seen.
|
java.lang.String |
toString()
Get the string representation.
|
addPropertyChangeListener, clone, equals, getId, getLocation, hashCode, removePropertyChangeListener, setId, setLocationprotected int quantity
protected double seen
public MapPoint()
public MapPoint(Location location, int quantity, double seen)
public int getQuantity()
public void setQuantity(int quantity)
quantity - The quantity.public double getSeen()
public void setSeen(double seen)
seen - The seen.public java.lang.String toString()
toString in class LocationObjectpublic static MapPoint[] getMapPointRaster(int numx, int numy, double width, double height)
numx - The number of x points.numy - The number of y points.