aboutsummaryrefslogtreecommitdiffstats
path: root/src/java/org/apache/fop/layoutmgr/ContentLayoutManager.java
diff options
context:
space:
mode:
authorJeremias Maerki <jeremias@apache.org>2005-02-07 11:01:37 +0000
committerJeremias Maerki <jeremias@apache.org>2005-02-07 11:01:37 +0000
commit36a04093061ccc030a667fac652b490409970b40 (patch)
tree67fa2886c1ce425dc0462c6311e9ac7c5502503d /src/java/org/apache/fop/layoutmgr/ContentLayoutManager.java
parent7cd913f036c369e67e95661467449cd872cb266c (diff)
downloadxmlgraphics-fop-36a04093061ccc030a667fac652b490409970b40.tar.gz
xmlgraphics-fop-36a04093061ccc030a667fac652b490409970b40.zip
Temporary fix for markers (using isBogus() check)
ipd/height and display-align support for table rows and cells. git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@198387 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java/org/apache/fop/layoutmgr/ContentLayoutManager.java')
-rw-r--r--src/java/org/apache/fop/layoutmgr/ContentLayoutManager.java8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/java/org/apache/fop/layoutmgr/ContentLayoutManager.java b/src/java/org/apache/fop/layoutmgr/ContentLayoutManager.java
index 79c1ab6d7..52d351a2e 100644
--- a/src/java/org/apache/fop/layoutmgr/ContentLayoutManager.java
+++ b/src/java/org/apache/fop/layoutmgr/ContentLayoutManager.java
@@ -1,5 +1,5 @@
/*
- * Copyright 1999-2004 The Apache Software Foundation.
+ * Copyright 1999-2005 The Apache Software Foundation.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -159,6 +159,11 @@ public class ContentLayoutManager implements InlineLevelLayoutManager {
return true;
}
+ /** @see org.apache.fop.layoutmgr.LayoutManager#isBogus() */
+ public boolean isBogus() {
+ return false;
+ }
+
/** @see org.apache.fop.layoutmgr.LayoutManager */
public Area getParentArea(Area childArea) {
return holder;
@@ -370,5 +375,6 @@ public class ContentLayoutManager implements InlineLevelLayoutManager {
int alignment) {
return null;
}
+
}