diff options
Diffstat (limited to 'src/java/org/apache/fop/layoutmgr/ContentLayoutManager.java')
-rw-r--r-- | src/java/org/apache/fop/layoutmgr/ContentLayoutManager.java | 8 |
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; } + } |