org.drools.examples.cdss.data.Diagnose Maven / Gradle / Ivy
The newest version!
package org.drools.examples.cdss.data;
public class Diagnose {
private String type;
public Diagnose(String type) {
this.type = type;
}
public String getType() {
return type;
}
public String toString() {
return "Diagnose: " + type;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy