Returns whether the list of labels for macro recording or macro creation contains a given label.
(String label)
| 326 | |
| 327 | /** Returns whether the list of labels for macro recording or macro creation contains a given label. */ |
| 328 | private boolean hasLabel(String label) { |
| 329 | for (Object o : labels.keySet()) |
| 330 | if (labels.get(o).equals(label)) return true; |
| 331 | return false; |
| 332 | } |
| 333 | |
| 334 | /** Adds an 8 column text field. |
| 335 | * @param label the label |