()
| 427 | // java.util.Collection implementation |
| 428 | |
| 429 | public Object[] toArray(){ |
| 430 | Object[] ret = new Object[count()]; |
| 431 | for(int i=0;i<count();i++) |
| 432 | ret[i] = nth(i); |
| 433 | return ret; |
| 434 | } |
| 435 | |
| 436 | public boolean add(Object o){ |
| 437 | throw new UnsupportedOperationException(); |
nothing calls this directly
no test coverage detected