com.github.obhen233.attribute.Rule Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of purslane-engine Show documentation
Show all versions of purslane-engine Show documentation
A rule engine,easy to expand,and easy to use.
The newest version!
package com.github.obhen233.attribute;
import java.io.Serializable;
// A single rule
public abstract class Rule implements Serializable,Attribute {
private String param;
private String base;
public String getParam() {
return param;
}
public void setParam(String param) {
this.param = param;
}
public String getBase() {
return base;
}
public void setBase(String base) {
this.base = base;
}
public abstract boolean excute();
public Object excuteMsg(){
return "";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy