| 38 | final class MetricForm extends HorizontalPanel implements Focusable { |
| 39 | |
| 40 | public static interface MetricChangeHandler extends EventHandler { |
| 41 | void onMetricChange(MetricForm widget); |
| 42 | } |
| 43 | |
| 44 | private static final String TSDB_ID_CLASS = "[-_./a-zA-Z0-9]"; |
| 45 | private static final String TSDB_ID_RE = "^" + TSDB_ID_CLASS + "*$"; |
no outgoing calls
no test coverage detected
searching dependent graphs…