diff options
Diffstat (limited to 'src/org/apache/fop/layoutmgr/LeafPosition.java')
-rw-r--r-- | src/org/apache/fop/layoutmgr/LeafPosition.java | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/org/apache/fop/layoutmgr/LeafPosition.java b/src/org/apache/fop/layoutmgr/LeafPosition.java new file mode 100644 index 000000000..b11f8dfdf --- /dev/null +++ b/src/org/apache/fop/layoutmgr/LeafPosition.java @@ -0,0 +1,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; + } +} + |