/* * Copyright 1999-2004 The Apache Software Foundation. * * 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. */ /* $Id$ */ package org.apache.fop.layoutmgr; import java.util.List; import java.util.ListIterator; import java.util.NoSuchElementException; public class LMiter implements ListIterator { protected List listLMs; protected int curPos = 0; /** The LayoutManager to which this LMiter is attached **/ private LayoutManager lp; public LMiter(LayoutManager lp) { this.lp = lp; listLMs = lp.getChildLMs(); } public boolean hasNext() { return (curPos < listLMs.size()) ? true : lp.createNextChildLMs(curPos); } public boolean hasPrevious() { return (curPos > 0); } public Object previous() throws NoSuchElementException { if (curPos > 0) { return listLMs.get(--curPos); } else { throw new NoSuchElementException(); } } public Object next() throws NoSuchElementException { if (curPos < listLMs.size()) { return listLMs.get(curPos++); } else { throw new NoSuchElementException(); } } public void remove() throws NoSuchElementException { if (curPos > 0) { listLMs.remove(--curPos); // Note: doesn't actually remove it from the base! } else { throw new NoSuchElementException(); } } public void add(Object o) throws UnsupportedOperationException { throw new UnsupportedOperationException("LMiter doesn't support add"); } public void set(Object o) throws UnsupportedOperationException { throw new UnsupportedOperationException("LMiter doesn't support set"); } public int nextIndex() { return curPos; } public int previousIndex() { return curPos - 1; } }