blob: b11f8dfdf6a652b1c6be9edd2ebe997b00f460dc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/*
* $Id$
* Copyright (C) 2002 The Apache Software Foundation. All rights reserved.
* For details on use and redistribution please refer to the
* LICENSE file included with these sources.
*/
package org.apache.fop.layoutmgr;
public class LeafPosition extends Position {
private int m_iLeafPos;
public LeafPosition(BPLayoutManager lm, int iLeafPos) {
super(lm);
m_iLeafPos = iLeafPos;
}
public int getLeafPos() {
return m_iLeafPos;
}
}
|