diff options
author | Ahmed Ashour <asashour@yahoo.com> | 2017-09-13 13:33:11 +0200 |
---|---|---|
committer | Henri Sara <henri.sara@gmail.com> | 2017-09-13 15:20:53 +0300 |
commit | 229792f64251dd7ca9510e52743128228958bb85 (patch) | |
tree | e2f8e02b1f596aa8643c895f0ca2c899d2e08155 /compatibility-client | |
parent | 03349e8c6697d668e675e628783b52eef39b877b (diff) | |
download | vaadin-framework-229792f64251dd7ca9510e52743128228958bb85.tar.gz vaadin-framework-229792f64251dd7ca9510e52743128228958bb85.zip |
Javadoc fixes
Diffstat (limited to 'compatibility-client')
-rw-r--r-- | compatibility-client/src/main/java/com/vaadin/v7/client/ui/VScrollTable.java | 4 | ||||
-rw-r--r-- | compatibility-client/src/main/java/com/vaadin/v7/client/widget/grid/EventCellReference.java | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/compatibility-client/src/main/java/com/vaadin/v7/client/ui/VScrollTable.java b/compatibility-client/src/main/java/com/vaadin/v7/client/ui/VScrollTable.java index 3328d926e6..8b01052dda 100644 --- a/compatibility-client/src/main/java/com/vaadin/v7/client/ui/VScrollTable.java +++ b/compatibility-client/src/main/java/com/vaadin/v7/client/ui/VScrollTable.java @@ -5388,8 +5388,8 @@ public class VScrollTable extends FlowPanel /** * This method exists for the needs of {@link VTreeTable} only. May be - * removed or replaced in the future.</br> - * </br> + * removed or replaced in the future.<br> + * <br> * Calculates the maximum indent of the hierarcyColumn, if applicable. */ protected void calculateMaxIndent() { diff --git a/compatibility-client/src/main/java/com/vaadin/v7/client/widget/grid/EventCellReference.java b/compatibility-client/src/main/java/com/vaadin/v7/client/widget/grid/EventCellReference.java index e12714d4e3..c16968fe25 100644 --- a/compatibility-client/src/main/java/com/vaadin/v7/client/widget/grid/EventCellReference.java +++ b/compatibility-client/src/main/java/com/vaadin/v7/client/widget/grid/EventCellReference.java @@ -87,7 +87,7 @@ public class EventCellReference<T> extends CellReference<T> { * Is the cell reference for a cell in the header of the Grid. * * @since 7.5 - * @return <code>true</true> if referenced cell is in the header, + * @return <code>true</code> if referenced cell is in the header, * <code>false</code> if not */ public boolean isHeader() { @@ -98,7 +98,7 @@ public class EventCellReference<T> extends CellReference<T> { * Is the cell reference for a cell in the body of the Grid. * * @since 7.5 - * @return <code>true</true> if referenced cell is in the body, + * @return <code>true</code> if referenced cell is in the body, * <code>false</code> if not */ public boolean isBody() { @@ -109,7 +109,7 @@ public class EventCellReference<T> extends CellReference<T> { * Is the cell reference for a cell in the footer of the Grid. * * @since 7.5 - * @return <code>true</true> if referenced cell is in the footer, + * @return <code>true</code> if referenced cell is in the footer, * <code>false</code> if not */ public boolean isFooter() { |