@param notes Optional detailed notes about the rule
(String notes)
| 703 | |
| 704 | /** @param notes Optional detailed notes about the rule */ |
| 705 | public void setNotes(String notes) { |
| 706 | if (!this.notes.equals(notes)) { |
| 707 | changed.put("notes", true); |
| 708 | this.notes = notes; |
| 709 | } |
| 710 | } |
| 711 | |
| 712 | /** @param regex_group_idx An optional index (start at 0) to use for regex |
| 713 | * group extraction. Must be a positive value. */ |