diff options
author | Joerg Pietschmann <pietsch@apache.org> | 2005-09-07 22:20:36 +0000 |
---|---|---|
committer | Joerg Pietschmann <pietsch@apache.org> | 2005-09-07 22:20:36 +0000 |
commit | 6d4dd88c53c97d637f6bb3f338c53c5af5481d27 (patch) | |
tree | adf1bdee1824fcb120a12c6010ebcc2abd727536 /src/java/org/apache/fop/area/inline/AbstractTextArea.java | |
parent | 74014dc4ff641d1047cbbd6ef86bdfde99b3558d (diff) | |
download | xmlgraphics-fop-6d4dd88c53c97d637f6bb3f338c53c5af5481d27.tar.gz xmlgraphics-fop-6d4dd88c53c97d637f6bb3f338c53c5af5481d27.zip |
Squashed CheckStyle warnings, mostly JavaDoc.
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@279439 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java/org/apache/fop/area/inline/AbstractTextArea.java')
-rw-r--r-- | src/java/org/apache/fop/area/inline/AbstractTextArea.java | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/java/org/apache/fop/area/inline/AbstractTextArea.java b/src/java/org/apache/fop/area/inline/AbstractTextArea.java index 0bb11cc81..6e8f9d418 100644 --- a/src/java/org/apache/fop/area/inline/AbstractTextArea.java +++ b/src/java/org/apache/fop/area/inline/AbstractTextArea.java @@ -35,6 +35,13 @@ public abstract class AbstractTextArea extends InlineArea { // (this is equivalent to the property word-spacing.optimum) protected int spaceDifference = 0; + /** + * Constructor + * + * @param stretch the available space for stretching + * @param shrink the available space for shrinking + * @param adj space adjustment type + */ protected TextAdjustingInfo(int stretch, int shrink, int adj) { super(stretch, shrink, adj); } @@ -45,7 +52,7 @@ public abstract class AbstractTextArea extends InlineArea { private TextAdjustingInfo adjustingInfo = null; /** - * Default onstructor + * Default constructor */ public AbstractTextArea() { } |