com.github.obhen233.element.Root 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.element;
import com.github.obhen233.result.ExcuteResult;
//the root element
public class Root extends Node{
private String unid;//unique identification//为区分不同的规则表达式
@Override
public ExcuteResult excute() {
// TODO Auto-generated method stub
return super.excute();
}
public String getUnid() {
return unid;
}
public void setUnid(String unid) {
this.unid = unid;
}
@Override
public String toString(){
return super.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy