blob: 72342104c4890416c998a0b390e5547ca4873967 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
/*
* $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 Position {
private BPLayoutManager m_lm;
public Position(BPLayoutManager lm) {
m_lm = lm;
}
public BPLayoutManager getLM() {
return m_lm;
}
/**
* Overridden by NonLeafPosition to return the Position of its
* child LM.
*/
public Position getPosition() {
return null;
}
}
|