package Knowledgebase; public class Plants { private String plantType; private String sensorTag; private double outputValue; public String getPlantType() { return plantType; } public void setPlantType(String plantType) { this.plantType = plantType; } public String getSensorTag() { return sensorTag; } public void setSensorTag(String sensorTag) { this.sensorTag = sensorTag; } public double getOutputValue() { return outputValue; } public void setOutputValue(double outputValue) { this.outputValue = outputValue; } }