/* * Copyright 2008 Niclas Hedhman. All rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or * implied. * * See the License for the specific language governing permissions and * limitations under the License. */ package org.qi4j.library.beans.support; import org.qi4j.api.entity.association.AssociationInfo; import org.qi4j.api.composite.TransientBuilderFactory; import java.util.ListIterator; public class DelegatingListIterator implements ListIterator { private ListIterator source; private final AssociationInfo info; private final TransientBuilderFactory cbf; public DelegatingListIterator( ListIterator source, AssociationInfo info, TransientBuilderFactory cbf ) { this.source = source; this.info = info; this.cbf = cbf; } public boolean hasNext() { return source.hasNext(); } public Object next() { return Wrapper.wrap( source.next(), info, cbf ); } public boolean hasPrevious() { return source.hasPrevious(); } public Object previous() { return Wrapper.wrap( source.previous(), info, cbf ); } public int nextIndex() { return source.nextIndex(); } public int previousIndex() { return source.previousIndex(); } public void remove() { source.remove(); } public void set( Object o ) { throw new UnsupportedOperationException( "Read Only." ); } public void add( Object o ) { throw new UnsupportedOperationException( "Read Only." ); } }