use of com.revolsys.elevation.cloud.PointCloud in project com.revolsys.open by revolsys.
the class PointCloudLayer method setPointCloud.
public void setPointCloud(final PointCloud pointCloud) {
final PointCloud old = this.pointCloud;
Property.removeListener(this.pointCloud, this);
this.pointCloud = pointCloud;
if (pointCloud == null) {
setExists(false);
} else {
setExists(true);
Property.addListener(pointCloud, this);
}
firePropertyChange("pointCloud", old, this.pointCloud);
}
Aggregations