You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

LMiter.java 3.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. /*
  2. * Licensed to the Apache Software Foundation (ASF) under one or more
  3. * contributor license agreements. See the NOTICE file distributed with
  4. * this work for additional information regarding copyright ownership.
  5. * The ASF licenses this file to You under the Apache License, Version 2.0
  6. * (the "License"); you may not use this file except in compliance with
  7. * the License. You may obtain a copy of the License at
  8. *
  9. * http://www.apache.org/licenses/LICENSE-2.0
  10. *
  11. * Unless required by applicable law or agreed to in writing, software
  12. * distributed under the License is distributed on an "AS IS" BASIS,
  13. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. * See the License for the specific language governing permissions and
  15. * limitations under the License.
  16. */
  17. /* $Id$ */
  18. package org.apache.fop.layoutmgr;
  19. import java.util.List;
  20. import java.util.ListIterator;
  21. import java.util.NoSuchElementException;
  22. /** An iterator for layout managers. */
  23. public class LMiter implements ListIterator<LayoutManager> {
  24. /** list of layout managers */
  25. protected List<LayoutManager> listLMs;
  26. /** current position in iteration */
  27. protected int curPos;
  28. /** The LayoutManager to which this LMiter is attached **/
  29. private LayoutManager lp;
  30. /**
  31. * Construct a layout manager iterator.
  32. * @param lp the associated layout manager (parent)
  33. */
  34. public LMiter(LayoutManager lp) {
  35. this.lp = lp;
  36. listLMs = lp.getChildLMs();
  37. }
  38. /** {@inheritDoc} */
  39. public boolean hasNext() {
  40. return (curPos < listLMs.size()) || lp.createNextChildLMs(curPos);
  41. }
  42. /** {@inheritDoc} */
  43. public boolean hasPrevious() {
  44. return (curPos > 0);
  45. }
  46. /** {@inheritDoc} */
  47. public LayoutManager previous() throws NoSuchElementException {
  48. if (curPos > 0) {
  49. return listLMs.get(--curPos);
  50. } else {
  51. throw new NoSuchElementException();
  52. }
  53. }
  54. /** {@inheritDoc} */
  55. public LayoutManager next() throws NoSuchElementException {
  56. if (curPos < listLMs.size()) {
  57. return listLMs.get(curPos++);
  58. } else {
  59. throw new NoSuchElementException();
  60. }
  61. }
  62. /** {@inheritDoc} */
  63. public void remove() throws NoSuchElementException {
  64. if (curPos > 0) {
  65. listLMs.remove(--curPos);
  66. // Note: doesn't actually remove it from the base!
  67. } else {
  68. throw new NoSuchElementException();
  69. }
  70. }
  71. /** {@inheritDoc} */
  72. public void add(LayoutManager lm) throws UnsupportedOperationException {
  73. throw new UnsupportedOperationException("LMiter doesn't support add");
  74. }
  75. /** {@inheritDoc} */
  76. public void set(LayoutManager lm) throws UnsupportedOperationException {
  77. throw new UnsupportedOperationException("LMiter doesn't support set");
  78. }
  79. /** {@inheritDoc} */
  80. public int nextIndex() {
  81. return curPos;
  82. }
  83. /** {@inheritDoc} */
  84. public int previousIndex() {
  85. return curPos - 1;
  86. }
  87. }