org.drools.examples.cdss.data.Patient Maven / Gradle / Ivy
The newest version!
package org.drools.examples.cdss.data;
public class Patient {
private String name;
private int age;
public int getAge() {
return age;
}
public void setAge(int age) {
this.age = age;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy