diff options
Diffstat (limited to 'src/org/apache/fop/area/inline/Space.java')
-rw-r--r-- | src/org/apache/fop/area/inline/Space.java | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/src/org/apache/fop/area/inline/Space.java b/src/org/apache/fop/area/inline/Space.java index 7b98b3c17..249743ad3 100644 --- a/src/org/apache/fop/area/inline/Space.java +++ b/src/org/apache/fop/area/inline/Space.java @@ -1,6 +1,6 @@ /* * $Id$ - * Copyright (C) 2001 The Apache Software Foundation. All rights reserved. + * Copyright (C) 2001-2002 The Apache Software Foundation. All rights reserved. * For details on use and redistribution please refer to the * LICENSE file included with these sources. */ @@ -9,8 +9,17 @@ package org.apache.fop.area.inline; import org.apache.fop.render.Renderer; -public class Space extends Stretch { +/** + * Inline space area. + * This is used for adding a inline space to the output. + */ +public class Space extends InlineArea { + /** + * Render this inlien space area. + * + * @param renderer the renderer to render this inline area + */ public void render(Renderer renderer) { renderer.renderInlineSpace(this); } |