001/*
002 * Copyright (C) 2007 The Guava Authors
003 *
004 * Licensed under the Apache License, Version 2.0 (the "License");
005 * you may not use this file except in compliance with the License.
006 * You may obtain a copy of the License at
007 *
008 * http://www.apache.org/licenses/LICENSE-2.0
009 *
010 * Unless required by applicable law or agreed to in writing, software
011 * distributed under the License is distributed on an "AS IS" BASIS,
012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013 * See the License for the specific language governing permissions and
014 * limitations under the License.
015 */
016
017package com.google.common.collect;
018
019import com.google.common.annotations.GwtCompatible;
020import com.google.errorprone.annotations.CanIgnoreReturnValue;
021import java.util.ListIterator;
022
023/**
024 * A list iterator which forwards all its method calls to another list
025 * iterator. Subclasses should override one or more methods to modify the
026 * behavior of the backing iterator as desired per the <a
027 * href="http://en.wikipedia.org/wiki/Decorator_pattern">decorator pattern</a>.
028 *
029 * <p><b>{@code default} method warning:</b> This class forwards calls to <i>only some</i> {@code
030 * default} methods. Specifically, it forwards calls only for methods that existed <a
031 * href="https://docs.oracle.com/javase/7/docs/api/java/util/ListIterator.html">before {@code
032 * default} methods were introduced</a>. For newer methods, like {@code forEachRemaining}, it
033 * inherits their default implementations. When those implementations invoke methods, they invoke
034 * methods on the {@code ForwardingListIterator}.
035 *
036 * @author Mike Bostock
037 * @since 2.0
038 */
039@GwtCompatible
040public abstract class ForwardingListIterator<E> extends ForwardingIterator<E>
041    implements ListIterator<E> {
042
043  /** Constructor for use by subclasses. */
044  protected ForwardingListIterator() {}
045
046  @Override
047  protected abstract ListIterator<E> delegate();
048
049  @Override
050  public void add(E element) {
051    delegate().add(element);
052  }
053
054  @Override
055  public boolean hasPrevious() {
056    return delegate().hasPrevious();
057  }
058
059  @Override
060  public int nextIndex() {
061    return delegate().nextIndex();
062  }
063
064  @CanIgnoreReturnValue
065  @Override
066  public E previous() {
067    return delegate().previous();
068  }
069
070  @Override
071  public int previousIndex() {
072    return delegate().previousIndex();
073  }
074
075  @Override
076  public void set(E element) {
077    delegate().set(element);
078  }
079}