if(Collection.class.isAssignableFrom(c)) {
final Collection col = (Collection) o;
final int len = col.size();
final Iterator it = col.iterator();
return new DebugArrayObject(new AbstractDebugArrayProvider() {
protected DebugArrayElement next() {
return new DebugArrayElement(this.index, extractFrom(it.next()));
}
public int size() {