org.epos.library.covjson.ObservedProperty 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 ObservedProperty {
public String id;
public Label label;
public ObservedProperty(String id, Label label) {
super();
this.id = id;
this.label = label;
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public Label getLabel() {
return label;
}
public void setLabel(Label label) {
this.label = label;
}
}