
model.SegmentCollection Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of annotationpro-format Show documentation
Show all versions of annotationpro-format Show documentation
Library to read and write Annotation Pro files
The newest version!
package model;
import java.util.ArrayList;
public class SegmentCollection extends ArrayList {
private String idLayer;
public SegmentCollection(String idLayer) {
this.idLayer = idLayer;
}
public String getIdLayer() {
return idLayer;
}
public void setIdLayer(String idLayer) {
this.idLayer = idLayer;
}
@Override
public boolean add(Segment segment) {
segment.setIdLayer(idLayer);
return super.add(segment);
}
@Override
public void add(int index, Segment element) {
element.setIdLayer(idLayer);
super.add(index, element);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy