diff options
author | Ahmed Ashour <asashour@yahoo.com> | 2017-10-20 09:12:44 +0200 |
---|---|---|
committer | Péter Török <31210544+torok-peter@users.noreply.github.com> | 2017-10-20 10:12:44 +0300 |
commit | c265cd1d6e0c605d8c25617253c685c082db6397 (patch) | |
tree | 59dc549aff85e65b8fe21425c84a461c43609911 | |
parent | 03570cb8740de05568f8045ad13526d9d8382c44 (diff) | |
download | vaadin-framework-c265cd1d6e0c605d8c25617253c685c082db6397.tar.gz vaadin-framework-c265cd1d6e0c605d8c25617253c685c082db6397.zip |
Fix HTML tags inside code in javadoc (#10160)
* Fix HTML tags inside code in javadoc
* only modify <table> and <tr>
* Fix javadoc
3 files changed, 7 insertions, 11 deletions
diff --git a/client/src/main/java/com/vaadin/client/widgets/Escalator.java b/client/src/main/java/com/vaadin/client/widgets/Escalator.java index a85a16ab63..3443db8901 100644 --- a/client/src/main/java/com/vaadin/client/widgets/Escalator.java +++ b/client/src/main/java/com/vaadin/client/widgets/Escalator.java @@ -1198,10 +1198,8 @@ public class Escalator extends Widget /** * The table section element ({@code <thead>}, {@code <tbody>} or - * {@code <tfoot>}) the rows (i.e. {@code - * - <tr> - * } tags) are contained in. + * {@code <tfoot>}) the rows (i.e. <code><tr></code> tags) are + * contained in. */ protected final TableSectionElement root; @@ -6843,7 +6841,7 @@ public class Escalator extends Widget } /** - * Returns the {@code <table />} element of the grid. + * Returns the <code><table></code> element of the grid. * * @return the table element * @since 8.2 diff --git a/client/src/main/java/com/vaadin/client/widgets/Grid.java b/client/src/main/java/com/vaadin/client/widgets/Grid.java index 3d3a8b805b..43f85a9848 100755 --- a/client/src/main/java/com/vaadin/client/widgets/Grid.java +++ b/client/src/main/java/com/vaadin/client/widgets/Grid.java @@ -6297,8 +6297,8 @@ public class Grid<T> extends ResizeComposite implements HasSelectionHandlers<T>, } /** - * Adds the given role as 'role="$param"' to the {@code <table />} element - * of the grid. + * Adds the given role as 'role="$param"' to the <code><table></code> + * element of the grid. * * @param role * the role param diff --git a/compatibility-client/src/main/java/com/vaadin/v7/client/widgets/Escalator.java b/compatibility-client/src/main/java/com/vaadin/v7/client/widgets/Escalator.java index efc61cf0bf..3f7319d277 100644 --- a/compatibility-client/src/main/java/com/vaadin/v7/client/widgets/Escalator.java +++ b/compatibility-client/src/main/java/com/vaadin/v7/client/widgets/Escalator.java @@ -1125,10 +1125,8 @@ public class Escalator extends Widget /** * The table section element ({@code <thead>}, {@code <tbody>} or - * {@code <tfoot>}) the rows (i.e. {@code - * - <tr> - * } tags) are contained in. + * {@code <tfoot>}) the rows (i.e. <code><tr></code> tags) are + * contained in. */ protected final TableSectionElement root; |