@param display_format Optional format string to alter the display name
(String display_format)
| 720 | |
| 721 | /** @param display_format Optional format string to alter the display name */ |
| 722 | public void setDisplayFormat(String display_format) { |
| 723 | if (!this.display_format.equals(display_format)) { |
| 724 | changed.put("display_format", true); |
| 725 | this.display_format = display_format; |
| 726 | } |
| 727 | } |
| 728 | |
| 729 | /** @param level The top level processing order. Must be 0 or greater |
| 730 | * @throws IllegalArgumentException if the level was negative */ |