org.epos.library.covjson.Description 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 Description {
public String en;
public Description(String en) {
super();
this.en = en;
}
public String getEn() {
return en;
}
public void setEn(String en) {
this.en = en;
}
}