(Object r, AnimationElement current)
| 86 | static public void registerHandler(BiFunction<AnimationElement, Object, AnimationElement> h) { |
| 87 | handlers.add(0, h); |
| 88 | } |
| 89 | |
| 90 | static public AnimationElement interpret(Object r, AnimationElement current) { |
| 91 | for (BiFunction<AnimationElement, Object, AnimationElement> b : handlers) { |
| 92 | current = b.apply(current, r); |
| 93 | } |
| 94 | return current; |
| 95 | } |
| 96 |
no test coverage detected