(String message)
| 17 | private String regex; |
| 18 | Display(String regex) { this.regex = regex; } |
| 19 | void display(String message) { |
| 20 | if(!regexPrinted) { |
| 21 | System.out.println(regex); |
| 22 | regexPrinted = true; |
| 23 | } |
| 24 | System.out.println(message); |
| 25 | } |
| 26 | } |
| 27 | static void examine(String s, String regex) { |
| 28 | Display d = new Display(regex); |