| 1343 | return "ev<" + before + "->" + after + ">"; |
| 1344 | } |
| 1345 | |
| 1346 | public Event<T> copy() { |
| 1347 | Event<T> e = new Event(before, after); |
| 1348 | e.properties.putAll(properties); |
| 1349 | return e; |
| 1350 | } |
| 1351 | |
| 1352 | @Override |
| 1353 | protected fieldlinker.AsMap delegateTo() { |
| 1354 | return properties; |
| 1355 | } |
| 1356 | } |
| 1357 | |
| 1358 | |
| 1359 | } |
nothing calls this directly
no outgoing calls
no test coverage detected