(int index, InputProcessor processor)
| 33 | } |
| 34 | |
| 35 | public void addProcessor (int index, InputProcessor processor) { |
| 36 | if (processor == null) throw new NullPointerException("processor cannot be null"); |
| 37 | processors.insert(index, processor); |
| 38 | } |
| 39 | |
| 40 | public void removeProcessor (int index) { |
| 41 | processors.removeIndex(index); |