(String what, long much)
| 566 | |
| 567 | |
| 568 | protected void create(String what, long much) { |
| 569 | if (count == keys.length) { |
| 570 | keys = PApplet.expand(keys); |
| 571 | values = PApplet.expand(values); |
| 572 | } |
| 573 | indices.put(what, Integer.valueOf(count)); |
| 574 | keys[count] = what; |
| 575 | values[count] = much; |
| 576 | count++; |
| 577 | } |
| 578 | |
| 579 | |
| 580 | /** |