diff options
author | Adrian Cumiskey <acumiskey@apache.org> | 2008-06-24 11:23:54 +0000 |
---|---|---|
committer | Adrian Cumiskey <acumiskey@apache.org> | 2008-06-24 11:23:54 +0000 |
commit | e2c2d1c0bec44211c2baefda7d50ffe84743310c (patch) | |
tree | dde3e1b2f528d356f63a6cc658e3a25271a59aae /src/java/org/apache/fop/area | |
parent | 2f451f9c4dae507df76e77bc13e0839c98724fd0 (diff) | |
download | xmlgraphics-fop-e2c2d1c0bec44211c2baefda7d50ffe84743310c.tar.gz xmlgraphics-fop-e2c2d1c0bec44211c2baefda7d50ffe84743310c.zip |
Javadoc fixes
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/branches/Temp_AFPGOCAResources@671134 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java/org/apache/fop/area')
-rw-r--r-- | src/java/org/apache/fop/area/Area.java | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/java/org/apache/fop/area/Area.java b/src/java/org/apache/fop/area/Area.java index ff9f5c7d0..5fa6c8eb0 100644 --- a/src/java/org/apache/fop/area/Area.java +++ b/src/java/org/apache/fop/area/Area.java @@ -141,7 +141,7 @@ public class Area extends AreaTreeObject implements Serializable { * @return the area class */ public int getAreaClass() { - return areaClass; + return this.areaClass; } /** @@ -157,11 +157,11 @@ public class Area extends AreaTreeObject implements Serializable { * Set the inline progression dimension of content rectangle * for this area. * - * @param i the new inline progression dimension - * @see <a href="http://www.w3.org/TR/xsl/slice4.html#area-common">ipd</a> + * @param ipd the new inline progression dimension + * @see <a href="http://www.w3.org/TR/xsl/#inline-progression-dimension">ipd</a> */ - public void setIPD(int i) { - ipd = i; + public void setIPD(int ipd) { + this.ipd = ipd; } /** @@ -169,10 +169,10 @@ public class Area extends AreaTreeObject implements Serializable { * for this area. * * @return the inline progression dimension - * @see <a href="http://www.w3.org/TR/xsl/slice4.html#area-common">ipd</a> + * @see <a href="http://www.w3.org/TR/xsl/#inline-progression-dimension">ipd</a> */ public int getIPD() { - return ipd; + return this.ipd; } /** @@ -180,7 +180,7 @@ public class Area extends AreaTreeObject implements Serializable { * for this area. * * @param b the new block progression dimension - * @see <a href="http://www.w3.org/TR/xsl/slice4.html#area-common">bpd</a> + * @see <a href="http://www.w3.org/TR/xsl/#block-progression-dimension">bpd</a> */ public void setBPD(int b) { bpd = b; @@ -191,7 +191,7 @@ public class Area extends AreaTreeObject implements Serializable { * for this area. * * @return the block progression dimension - * @see <a href="http://www.w3.org/TR/xsl/slice4.html#area-common">bpd</a> + * @see <a href="http://www.w3.org/TR/xsl/#block-progression-dimension">bpd</a> */ public int getBPD() { return bpd; |