this.latitude = location.getLatitude();
this.longitude = location.getLongitude();
this.locationString = location.getLocationString();
this.activeRadius = location.getActiveRadius();
Point p = new Point(latitude, longitude);
this.geocells = MyGeocellManager.generateGeoCell(p);
for (String c : geocells) {
System.out.println("Adding geocell.. " + c + " for " + getName());
}
this.lastModifiedTime = System.currentTimeMillis();