diff options
author | Ahmed Ashour <asashour@yahoo.com> | 2017-03-20 13:41:26 +0100 |
---|---|---|
committer | Teemu Suo-Anttila <tsuoanttila@users.noreply.github.com> | 2017-05-08 14:46:35 +0300 |
commit | 4264096ac26c5a592bbea6fd099795dec30b4ef9 (patch) | |
tree | 84c752347a923f83eb0ef7c2d5264feebd91faa3 /server | |
parent | 3c9e3c62ab41706a5eee09cd18f525f027dae82b (diff) | |
download | vaadin-framework-4264096ac26c5a592bbea6fd099795dec30b4ef9.tar.gz vaadin-framework-4264096ac26c5a592bbea6fd099795dec30b4ef9.zip |
Fix some javadoc errors (#8873)
Diffstat (limited to 'server')
7 files changed, 23 insertions, 24 deletions
diff --git a/server/src/main/java/com/vaadin/annotations/PropertyId.java b/server/src/main/java/com/vaadin/annotations/PropertyId.java index ecfceda706..c9e51057b2 100644 --- a/server/src/main/java/com/vaadin/annotations/PropertyId.java +++ b/server/src/main/java/com/vaadin/annotations/PropertyId.java @@ -34,9 +34,9 @@ import com.vaadin.data.HasValue; * fields, with the name (ID) of the desired property as the parameter. * <p> * In following usage example, the text field would be bound to property "foo" - * in the Entity class. <code> + * in the Entity class. * <pre> - * class Editor extends FormLayout { + class Editor extends FormLayout { @PropertyId("foo") TextField myField = new TextField(); } @@ -51,7 +51,6 @@ import com.vaadin.data.HasValue; binder.bindInstanceFields(editor); } </pre> - * </code> * * @since 8.0 * @author Vaadin Ltd diff --git a/server/src/main/java/com/vaadin/data/HasItems.java b/server/src/main/java/com/vaadin/data/HasItems.java index 18dd9fc99d..92cd6a435d 100644 --- a/server/src/main/java/com/vaadin/data/HasItems.java +++ b/server/src/main/java/com/vaadin/data/HasItems.java @@ -56,7 +56,7 @@ public interface HasItems<T> extends Component, Serializable { * * <pre> * <code> - * HasDataProvider<String> listing = new CheckBoxGroup<>(); + * HasDataProvider<String> listing = new CheckBoxGroup<>(); * listing.setItems(Arrays.asList("a","b")); * ... * @@ -87,7 +87,7 @@ public interface HasItems<T> extends Component, Serializable { * <pre> * <code> * HasDataProvider<String> listing = new CheckBoxGroup<>(); - * listing.setItems(Arrays.asList("a","b")); + * listing.setItems("a","b"); * ... * * Collection<String> collection = ((ListDataProvider<String>)listing.getDataProvider()).getItems(); @@ -121,11 +121,11 @@ public interface HasItems<T> extends Component, Serializable { * * <pre> * <code> - * HasDataProvider<String> listing = new CheckBoxGroup<>(); - * listing.setItems(Arrays.asList("a","b")); + * HasDataProvider<String> listing = new CheckBoxGroup<>(); + * listing.setItems(Stream.of("a","b")); * ... * - * Collection<String> collection = ((ListDataProvider<String>)listing.getDataProvider()).getItems(); + * Collection<String> collection = ((ListDataProvider<String>)listing.getDataProvider()).getItems(); * </code> * </pre> * <p> diff --git a/server/src/main/java/com/vaadin/data/SelectionModel.java b/server/src/main/java/com/vaadin/data/SelectionModel.java index 397e2a1557..417d5becf8 100644 --- a/server/src/main/java/com/vaadin/data/SelectionModel.java +++ b/server/src/main/java/com/vaadin/data/SelectionModel.java @@ -204,7 +204,7 @@ public interface SelectionModel<T> extends Serializable { * If all the added items were already selected and the removed items * were not selected, this is a NO-OP. * <p> - * Duplicate items (in both add & remove sets) are ignored. + * Duplicate items (in both add & remove sets) are ignored. * * @param addedItems * the items to add, not {@code null} diff --git a/server/src/main/java/com/vaadin/data/Validator.java b/server/src/main/java/com/vaadin/data/Validator.java index 6dca15a8ed..30d6976bde 100644 --- a/server/src/main/java/com/vaadin/data/Validator.java +++ b/server/src/main/java/com/vaadin/data/Validator.java @@ -31,8 +31,8 @@ import com.vaadin.server.SerializablePredicate; * For instance, the following validator checks if a number is positive: * * <pre> - * Validator<Integer> v = num -> { - * if (num >= 0) + * Validator<Integer> v = num -> { + * if (num >= 0) * return ValidationResult.ok(); * else * return ValidationResult.error("number must be positive"); @@ -87,7 +87,7 @@ public interface Validator<T> * 10, inclusive: * * <pre> - * Validator<Integer> v = Validator.from(num -> num >= 0 && num <= 10, + * Validator<Integer> v = Validator.from(num -> num >= 0 && num <= 10, * "number must be between 0 and 10"); * </pre> * diff --git a/server/src/main/java/com/vaadin/event/ShortcutAction.java b/server/src/main/java/com/vaadin/event/ShortcutAction.java index 02bac50856..e7e5d7cf7b 100644 --- a/server/src/main/java/com/vaadin/event/ShortcutAction.java +++ b/server/src/main/java/com/vaadin/event/ShortcutAction.java @@ -141,15 +141,15 @@ public class ShortcutAction extends Action { * Insert one or more modifier characters before the character to use as * keycode. E.g <code>"&Save"</code> will make a shortcut responding to * ALT-S, <code>"E^xit"</code> will respond to CTRL-X.<br/> - * Multiple modifiers can be used, e.g <code>"&^Delete"</code> will respond + * Multiple modifiers can be used, e.g <code>"&^Delete"</code> will respond * to CTRL-ALT-D (the order of the modifier characters is not important). * </p> * <p> * The modifier characters will be removed from the caption. The modifier * character is be escaped by itself: two consecutive characters are turned * into the original character w/o the special meaning. E.g - * <code>"Save&&&close"</code> will respond to ALT-C, and the caption will - * say "Save&close". + * <code>"Save&&&close"</code> will respond to ALT-C, and the caption will + * say "Save&close". * </p> * * @param shorthandCaption @@ -168,7 +168,7 @@ public class ShortcutAction extends Action { * caption. I.e use any of the modifier characters in the caption to * indicate the keycode, but the modifier will be the given set.<br/> * E.g - * <code>new ShortcutAction("Do &stuff", new int[]{ShortcutAction.ModifierKey.CTRL}));</code> + * <code>new ShortcutAction("Do &stuff", new int[]{ShortcutAction.ModifierKey.CTRL}));</code> * will respond to CTRL-S. * </p> * diff --git a/server/src/main/java/com/vaadin/server/ClientConnector.java b/server/src/main/java/com/vaadin/server/ClientConnector.java index 9b2df069ba..d48493b917 100644 --- a/server/src/main/java/com/vaadin/server/ClientConnector.java +++ b/server/src/main/java/com/vaadin/server/ClientConnector.java @@ -223,7 +223,7 @@ public interface ClientConnector extends Connector { * Notifies the connector that it is connected to a VaadinSession (and * therefore also to a UI). * <p> - * The caller of this method is {@link #setParent(ClientConnector)} if the + * The caller of this method is {@link Connector#setParent(ClientConnector)} if the * parent is itself already attached to the session. If not, the parent will * call the {@link #attach()} for all its children when it is attached to * the session. This method is always called before the connector's data is diff --git a/server/src/main/java/com/vaadin/ui/Component.java b/server/src/main/java/com/vaadin/ui/Component.java index c690e945cb..28cb7be95e 100644 --- a/server/src/main/java/com/vaadin/ui/Component.java +++ b/server/src/main/java/com/vaadin/ui/Component.java @@ -616,17 +616,17 @@ public interface Component extends ClientConnector, Sizeable, Serializable { * <td width=120><b>Example</b></td> * </tr> * <tr> - * <td><b></td> + * <td><b></td> * <td>bold</td> * <td><b>bold text</b></td> * </tr> * <tr> - * <td><i></td> + * <td><i></td> * <td>italic</td> * <td><i>italic text</i></td> * </tr> * <tr> - * <td><u></td> + * <td><u></td> * <td>underlined</td> * <td><u>underlined text</u></td> * </tr> @@ -636,10 +636,10 @@ public interface Component extends ClientConnector, Sizeable, Serializable { * <td>N/A</td> * </tr> * <tr> - * <td><ul><br> - * <li>item1<br> - * <li>item1<br> - * </ul></td> + * <td><ul><br> + * <li>item1<br> + * <li>item1<br> + * </ul></td> * <td>item list</td> * <td> * <ul> |