org.epos.library.covjson.Axes 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;
public class Axes {
public X x;
public Y y;
public T t;
public Composite composite;
public X getX() {
return x;
}
public void setX(X x) {
this.x = x;
}
public Y getY() {
return y;
}
public void setY(Y y) {
this.y = y;
}
public T getT() {
return t;
}
public void setT(T t) {
this.t = t;
}
public Composite getComposite() {
return composite;
}
public void setComposite(Composite composite) {
this.composite = composite;
}
}