diff options
author | Finn Bock <bckfnn@apache.org> | 2004-09-22 08:18:42 +0000 |
---|---|---|
committer | Finn Bock <bckfnn@apache.org> | 2004-09-22 08:18:42 +0000 |
commit | 0d5f2c76c44d7d79330588a57ee413b68980b4ec (patch) | |
tree | 9279b3fc792d699b627f5bc67748b6e2ee9c76ce /src/java/org/apache/fop/area/LineArea.java | |
parent | 34ffd8adb7e91f485e3520079ae74e1dd1f7a532 (diff) | |
download | xmlgraphics-fop-0d5f2c76c44d7d79330588a57ee413b68980b4ec.tar.gz xmlgraphics-fop-0d5f2c76c44d7d79330588a57ee413b68980b4ec.zip |
Use content ipd/bpd instead of allocation width/height.
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@197956 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java/org/apache/fop/area/LineArea.java')
-rw-r--r-- | src/java/org/apache/fop/area/LineArea.java | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/src/java/org/apache/fop/area/LineArea.java b/src/java/org/apache/fop/area/LineArea.java index fa1d586db..2a0896821 100644 --- a/src/java/org/apache/fop/area/LineArea.java +++ b/src/java/org/apache/fop/area/LineArea.java @@ -32,9 +32,7 @@ public class LineArea extends Area { // contains inline areas // has start indent and length, dominant baseline, height private int startIndent; - private int length; - private int lineHeight; // this is the offset for the dominant baseline private int baseLine; @@ -44,24 +42,6 @@ public class LineArea extends Area { private List inlineAreas = new ArrayList(); /** - * Set the height of this line area. - * - * @param height the height of the line area - */ - public void setHeight(int height) { - lineHeight = height; - } - - /** - * Get the height of this line area. - * - * @return the height of the line area - */ - public int getHeight() { - return lineHeight; - } - - /** * Add a child area to this line area. * * @param childArea the inline child area to add |