package hello.rules; import com.openrules.forms.gui.impl.DynamicTable; import com.openrules.ruleengine.OpenRulesEngine; public class SalutationRules extends DynamicTable { public SalutationRules(OpenRulesEngine engine) { super(engine); } public String getHeaderLayoutName() { return "salutationsTableHeader"; } public String getRowLayoutName() { return "salutationsTableRow"; } }