org.epos.library.covjson.Unit 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 Unit {
public Symbol symbol;
public Label label;
public Unit(Symbol symbol, Label label) {
super();
this.symbol = symbol;
this.label = label;
}
public Symbol getSymbol() {
return symbol;
}
public void setSymbol(Symbol symbol) {
this.symbol = symbol;
}
public Label getLabel() {
return label;
}
public void setLabel(Label label) {
this.label = label;
}
}