de.invation.code.toval.time.OverlapEvent Maven / Gradle / Ivy
package de.invation.code.toval.time;
import java.util.List;
public class OverlapEvent {
private Object reference = null;
private List timeIntervals = null;
public OverlapEvent(Object reference){
this.reference = reference;
}
public OverlapEvent(List timeIntervals){
this.timeIntervals = timeIntervals;
}
public OverlapEvent(Object reference, List timeIntervals) {
this.reference = reference;
this.timeIntervals = timeIntervals;
}
public Object getReference() {
return reference;
}
public List getTimeIntervals() {
return timeIntervals;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy