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.

BlockKnuthSequence.java 2.5KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  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. /**
  21. * Represents a list of block level Knuth elements.
  22. */
  23. public class BlockKnuthSequence extends KnuthSequence {
  24. private static final long serialVersionUID = 1648962416582509095L;
  25. private boolean isClosed;
  26. /**
  27. * Creates a new and empty list.
  28. */
  29. public BlockKnuthSequence() {
  30. super();
  31. }
  32. /**
  33. * Creates a new list from an existing list.
  34. * @param list The list from which to create the new list.
  35. */
  36. public BlockKnuthSequence(List list) {
  37. super(list);
  38. }
  39. /** {@inheritDoc} */
  40. public boolean isInlineSequence() {
  41. return false;
  42. }
  43. /** {@inheritDoc} */
  44. public boolean canAppendSequence(KnuthSequence sequence) {
  45. return !sequence.isInlineSequence() && !isClosed;
  46. }
  47. /** {@inheritDoc} */
  48. public boolean appendSequence(KnuthSequence sequence) {
  49. // log.debug("Cannot append a sequence without a BreakElement");
  50. return false;
  51. }
  52. /** {@inheritDoc} */
  53. public boolean appendSequence(KnuthSequence sequence, boolean keepTogether,
  54. BreakElement breakElement) {
  55. if (!canAppendSequence(sequence)) {
  56. return false;
  57. }
  58. if (keepTogether) {
  59. breakElement.setPenaltyValue(KnuthElement.INFINITE);
  60. add(breakElement);
  61. } else if (!getLast().isGlue()) {
  62. breakElement.setPenaltyValue(0);
  63. add(breakElement);
  64. }
  65. addAll(sequence);
  66. return true;
  67. }
  68. /** {@inheritDoc} */
  69. public KnuthSequence endSequence() {
  70. isClosed = true;
  71. return this;
  72. }
  73. }