org.epos.library.covjson.Referencing Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of epos-covjson-java-library Show documentation
Show all versions of epos-covjson-java-library Show documentation
Java library to create and manipulate EPOS COvJSON
The newest version!
package org.epos.library.covjson;
import java.util.ArrayList;
public class Referencing {
public ArrayList coordinates;
public System system;
public ArrayList getCoordinates() {
return coordinates;
}
public void setCoordinates(ArrayList coordinates) {
this.coordinates = coordinates;
}
public System getSystem() {
return system;
}
public void setSystem(System system) {
this.system = system;
}
}