
net.intelie.liverig.plugin.widgets.DisplayUnit Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of plugin-assets Show documentation
Show all versions of plugin-assets Show documentation
Asset framework for industries solutions
The newest version!
package net.intelie.liverig.plugin.widgets;
import java.util.Map;
public class DisplayUnit {
private String name;
private Map data;
private Long id;
public DisplayUnit(Long id, String name, Map data) {
this.id = id;
this.name = name;
this.data = data;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public Map getData() {
return data;
}
public void setData(Map data) {
this.data = data;
}
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public DisplayUnitData getDataForMnemonic(String mnemonic) {
return this.getData().get(mnemonic);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy