Add a new entry to the list. @webref stringlist:method @webBrief Add a new entry to the list
(String value)
| 293 | * @webBrief Add a new entry to the list |
| 294 | */ |
| 295 | public void append(String value) { |
| 296 | if (count == data.length) { |
| 297 | data = PApplet.expand(data); |
| 298 | } |
| 299 | data[count++] = value; |
| 300 | } |
| 301 | |
| 302 | |
| 303 | public void append(String[] values) { |
no test coverage detected