01: /*
02: * Licensed to the Apache Software Foundation (ASF) under one or more
03: * contributor license agreements. See the NOTICE file distributed with
04: * this work for additional information regarding copyright ownership.
05: * The ASF licenses this file to You under the Apache License, Version 2.0
06: * (the "License"); you may not use this file except in compliance with
07: * the License. You may obtain a copy of the License at
08: *
09: * 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:
18: /* $Id$ */
19:
20: package org.apache.fop.layoutmgr.table;
21:
22: import java.util.List;
23:
24: import org.apache.fop.layoutmgr.LayoutManager;
25: import org.apache.fop.layoutmgr.Position;
26:
27: /**
28: * This class represents a Position specific to TableContentLayoutManager. Used for table
29: * headers and footers at breaks.
30: */
31: class TableHFPenaltyPosition extends Position {
32:
33: /** Element list for the header */
34: protected List headerElements;
35: /** Element list for the footer */
36: protected List footerElements;
37:
38: /**
39: * Creates a new TableHFPenaltyPosition
40: * @param lm applicable layout manager
41: */
42: protected TableHFPenaltyPosition(LayoutManager lm) {
43: super (lm);
44: }
45:
46: public String toString() {
47: StringBuffer sb = new StringBuffer("TableHFPenaltyPosition:");
48: sb.append(getIndex()).append("(");
49: sb.append("header:");
50: sb.append(headerElements);
51: sb.append(", footer:");
52: sb.append(footerElements);
53: sb.append(")");
54: return sb.toString();
55: }
56: }
|