edu.iris.dmc.seed.control.index.Span Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-4-seed Show documentation
Show all versions of java-4-seed Show documentation
Java API to work with seismic dataless seed
The newest version!
package edu.iris.dmc.seed.control.index;
import edu.iris.dmc.seed.BTime;
public class Span {
private BTime start;
private BTime end;
public Span() {
}
public Span(BTime start, BTime end) {
this.start = start;
this.end = end;
}
public BTime getStart() {
return start;
}
public void setStart(BTime start) {
this.start = start;
}
public BTime getEnd() {
return end;
}
public void setEnd(BTime end) {
this.end = end;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy