@param type The type of rule
(TreeRuleType type)
| 647 | |
| 648 | /** @param type The type of rule */ |
| 649 | public void setType(TreeRuleType type) { |
| 650 | if (this.type != type) { |
| 651 | changed.put("type", true); |
| 652 | this.type = type; |
| 653 | } |
| 654 | } |
| 655 | |
| 656 | /** @param field The field name for matching */ |
| 657 | public void setField(String field) { |