diff options
author | Artur Signell <artur.signell@itmill.com> | 2010-08-09 13:09:57 +0000 |
---|---|---|
committer | Artur Signell <artur.signell@itmill.com> | 2010-08-09 13:09:57 +0000 |
commit | 203237dfbf9225289f6f89676399e70600539dad (patch) | |
tree | 508eb3bcedcdc013ce76ce4d0b3d7cbc603742e5 /src/com | |
parent | dfe75aa36fc603a8b39e95ee4f304cd9b259a056 (diff) | |
download | vaadin-framework-203237dfbf9225289f6f89676399e70600539dad.tar.gz vaadin-framework-203237dfbf9225289f6f89676399e70600539dad.zip |
Removed non-existing UNITS_ROWS reference and changed other UNITS_ references into links (#5415)
svn changeset:14434/svn branch:6.4
Diffstat (limited to 'src/com')
-rw-r--r-- | src/com/vaadin/terminal/Sizeable.java | 30 |
1 files changed, 17 insertions, 13 deletions
diff --git a/src/com/vaadin/terminal/Sizeable.java b/src/com/vaadin/terminal/Sizeable.java index 0504451e19..c3e8ee4e9b 100644 --- a/src/com/vaadin/terminal/Sizeable.java +++ b/src/com/vaadin/terminal/Sizeable.java @@ -69,15 +69,15 @@ public interface Sizeable extends Serializable { * Textual representations of units symbols. Supported units and their * symbols are: * <ul> - * <li><code>UNITS_PIXELS</code>: "px"</li> - * <li><code>UNITS_POINTS</code>: "pt"</li> - * <li><code>UNITS_PICAS</code>: "pc"</li> - * <li><code>UNITS_EM</code>: "em"</li> - * <li><code>UNITS_EX</code>: "ex"</li> - * <li><code>UNITS_MM</code>: "mm"</li> - * <li><code>UNITS_CM</code>. "cm"</li> - * <li><code>UNITS_INCH</code>: "in"</li> - * <li><code>UNITS_PERCENTAGE</code>: "%"</li> + * <li>{@link #UNITS_PIXELS}: "px"</li> + * <li>{@link #UNITS_POINTS}: "pt"</li> + * <li>{@link #UNITS_PICAS}: "pc"</li> + * <li>{@link #UNITS_EM}: "em"</li> + * <li>{@link #UNITS_EX}: "ex"</li> + * <li>{@link #UNITS_MM}: "mm"</li> + * <li>{@link #UNITS_CM}. "cm"</li> + * <li>{@link #UNITS_INCH}: "in"</li> + * <li>{@link #UNITS_PERCENTAGE}: "%"</li> * </ul> * These can be used like <code>Sizeable.UNIT_SYMBOLS[UNITS_PIXELS]</code>. */ @@ -194,8 +194,10 @@ public interface Sizeable extends Serializable { * the width of the object. * @param unit * the unit used for the width. Possible values include - * UNITS_PIXELS, UNITS_POINTS, UNITS_PICAS, UNITS_EM, UNITS_EX, - * UNITS_MM, UNITS_CM, UNITS_INCH, UNITS_PERCENTAGE, UNITS_ROWS. + * {@link #UNITS_PIXELS}, {@link #UNITS_POINTS}, + * {@link #UNITS_PICAS}, {@link #UNITS_EM}, {@link #UNITS_EX}, + * {@link #UNITS_MM}, {@link #UNITS_CM}, {@link #UNITS_INCH}, + * {@link #UNITS_PERCENTAGE}. */ public void setWidth(float width, int unit); @@ -207,8 +209,10 @@ public interface Sizeable extends Serializable { * the height of the object. * @param unit * the unit used for the width. Possible values include - * UNITS_PIXELS, UNITS_POINTS, UNITS_PICAS, UNITS_EM, UNITS_EX, - * UNITS_MM, UNITS_CM, UNITS_INCH, UNITS_PERCENTAGE, UNITS_ROWS. + * {@link #UNITS_PIXELS}, {@link #UNITS_POINTS}, + * {@link #UNITS_PICAS}, {@link #UNITS_EM}, {@link #UNITS_EX}, + * {@link #UNITS_MM}, {@link #UNITS_CM}, {@link #UNITS_INCH}, + * {@link #UNITS_PERCENTAGE}. */ public void setHeight(float height, int unit); |