diff options
author | Joerg Pietschmann <pietsch@apache.org> | 2005-09-08 22:06:48 +0000 |
---|---|---|
committer | Joerg Pietschmann <pietsch@apache.org> | 2005-09-08 22:06:48 +0000 |
commit | 4d77beff3195315d899d138db2fd5e592e41c9be (patch) | |
tree | b909a2d210d5f0ee17649a830653e2fd760e29be /src/java/org/apache/fop/fo/properties/EnumLength.java | |
parent | 1c5cae7362ae33673b79090a2e2ae668babcb9da (diff) | |
download | xmlgraphics-fop-4d77beff3195315d899d138db2fd5e592e41c9be.tar.gz xmlgraphics-fop-4d77beff3195315d899d138db2fd5e592e41c9be.zip |
Fixed javadoc errors.
Added a few TODOs.
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@279656 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java/org/apache/fop/fo/properties/EnumLength.java')
-rwxr-xr-x | src/java/org/apache/fop/fo/properties/EnumLength.java | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/src/java/org/apache/fop/fo/properties/EnumLength.java b/src/java/org/apache/fop/fo/properties/EnumLength.java index 04efebaa6..910335613 100755 --- a/src/java/org/apache/fop/fo/properties/EnumLength.java +++ b/src/java/org/apache/fop/fo/properties/EnumLength.java @@ -42,8 +42,7 @@ public class EnumLength extends LengthProperty { } /** - * Returns the length in 1/1000ths of a point (millipoints) - * @return the length in millipoints + * @see org.apache.fop.datatypes.Numeric#getValue() */ public int getValue() { log.error("getValue() called on " + enumProperty + " length"); @@ -51,9 +50,7 @@ public class EnumLength extends LengthProperty { } /** - * Returns the length in 1/1000ths of a point (millipoints) - * @param Evaluation context - * @return the length in millipoints + * @see org.apache.fop.datatypes.Numeric#getValue(PercentBaseContext) */ public int getValue(PercentBaseContext context) { log.error("getValue() called on " + enumProperty + " length"); @@ -61,8 +58,7 @@ public class EnumLength extends LengthProperty { } /** - * Returns the value as numeric. - * @return the length in millipoints + * @see org.apache.fop.datatypes.Numeric#getNumericValue() */ public double getNumericValue() { log.error("getNumericValue() called on " + enumProperty + " number"); @@ -70,9 +66,7 @@ public class EnumLength extends LengthProperty { } /** - * Returns the value as numeric. - * @param context Evaluation context - * @return the length in millipoints + * @see org.apache.fop.datatypes.Numeric#getNumericValue() */ public double getNumericValue(PercentBaseContext context) { log.error("getNumericValue() called on " + enumProperty + " number"); |