aboutsummaryrefslogtreecommitdiffstats
path: root/ui/jquery.ui.sortable.js
diff options
context:
space:
mode:
Diffstat (limited to 'ui/jquery.ui.sortable.js')
0 files changed, 0 insertions, 0 deletions
mp_PDF_in_PDF&id=40209c4fc88254b792d07b63be3955c8288b3e7a'>src/org/apache/fop/layoutmgr/LeafPosition.java
blob: 95f4dbd9efd031e242621764a7f86c2bc713d830 (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(LayoutManager lm, int iLeafPos) {
        super(lm);
        m_iLeafPos = iLeafPos;
    }

    public int getLeafPos() {
        return m_iLeafPos;
    }
}