(String key, String value)
| 420 | |
| 421 | |
| 422 | protected void create(String key, String value) { |
| 423 | if (count == keys.length) { |
| 424 | keys = PApplet.expand(keys); |
| 425 | values = PApplet.expand(values); |
| 426 | } |
| 427 | indices.put(key, Integer.valueOf(count)); |
| 428 | keys[count] = key; |
| 429 | values[count] = value; |
| 430 | count++; |
| 431 | } |
| 432 | |
| 433 | /** |
| 434 | * @webref stringdict:method |