if (isSystemHeader(hi) || isCommitted())
{
return new ListIteratorProxy<Parameterable>(it)
{
@Override
public Parameterable next() { return new ReadOnlyParameterable(super.next()); }
@Override
public Parameterable previous() { return new ReadOnlyParameterable(super.previous()); }
};
}
return it;
}