aboutsummaryrefslogtreecommitdiffstats
path: root/src/org/apache/fop/layoutmgr/Position.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/org/apache/fop/layoutmgr/Position.java')
-rw-r--r--src/org/apache/fop/layoutmgr/Position.java29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/org/apache/fop/layoutmgr/Position.java b/src/org/apache/fop/layoutmgr/Position.java
new file mode 100644
index 000000000..1f00070f5
--- /dev/null
+++ b/src/org/apache/fop/layoutmgr/Position.java
@@ -0,0 +1,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;
+ }
+}
+