blob: 35b173b914be8843af8c860d9433af47699f3c0b (
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 LayoutManager m_lm;
public Position(LayoutManager lm) {
m_lm = lm;
}
public LayoutManager getLM() {
return m_lm;
}
/**
* Overridden by NonLeafPosition to return the Position of its
* child LM.
*/
public Position getPosition() {
return null;
}
}
|