date.iterator.count.event.PlotEvent Maven / Gradle / Ivy
package date.iterator.count.event;
import com.saaavsaaa.client.event.Event;
import date.iterator.count.isodata.Cluster;
import java.util.List;
public class PlotEvent extends Event {
private final List clusters;
public PlotEvent(final List clusters) {
super(IteratorEventType.PLOT);
this.clusters = clusters;
}
public List getClusters() {
return clusters;
}
}