All Downloads are FREE. Search and download functionalities are using the official Maven repository.

date.iterator.count.event.PlotEvent Maven / Gradle / Ivy

There is a newer version: 1.1.5
Show newest version
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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy