diff options
author | Teemu Suo-Anttila <teemusa@vaadin.com> | 2014-12-12 10:08:48 +0200 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2014-12-12 12:30:43 +0000 |
commit | de3ae6ef86e786d0383ea799001255deee6e03f3 (patch) | |
tree | 7bff8f8de2f143dd60e5055492a068185b1a1e46 /server/src/com | |
parent | 992d8bf70bb13ce90aa78623737af1d811fc779d (diff) | |
download | vaadin-framework-de3ae6ef86e786d0383ea799001255deee6e03f3.tar.gz vaadin-framework-de3ae6ef86e786d0383ea799001255deee6e03f3.zip |
Remove unnecessary @since and @author JavaDoc markings (#13334)
Change-Id: I5fe9fb9a5ec27ec047ef2286bd429efabaa0e818
Diffstat (limited to 'server/src/com')
-rw-r--r-- | server/src/com/vaadin/ui/Grid.java | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/server/src/com/vaadin/ui/Grid.java b/server/src/com/vaadin/ui/Grid.java index 24f9b31faa..50ca047c64 100644 --- a/server/src/com/vaadin/ui/Grid.java +++ b/server/src/com/vaadin/ui/Grid.java @@ -201,9 +201,6 @@ public class Grid extends AbstractComponent implements SelectionChangeNotifier, /** * The server-side interface that controls Grid's selection state. - * - * @since - * @author Vaadin Ltd */ public interface SelectionModel extends Serializable { /** @@ -411,9 +408,6 @@ public class Grid extends AbstractComponent implements SelectionChangeNotifier, /** * A base class for SelectionModels that contains some of the logic that is * reusable. - * - * @since - * @author Vaadin Ltd */ public static abstract class AbstractSelectionModel implements SelectionModel { @@ -494,9 +488,6 @@ public class Grid extends AbstractComponent implements SelectionChangeNotifier, /** * A default implementation of a {@link SelectionModel.Single} - * - * @since - * @author Vaadin Ltd */ public static class SingleSelectionModel extends AbstractSelectionModel implements SelectionModel.Single { @@ -561,9 +552,6 @@ public class Grid extends AbstractComponent implements SelectionChangeNotifier, /** * A default implementation for a {@link SelectionModel.None} - * - * @since - * @author Vaadin Ltd */ public static class NoSelectionModel implements SelectionModel.None { @Override @@ -594,9 +582,6 @@ public class Grid extends AbstractComponent implements SelectionChangeNotifier, /** * A default implementation of a {@link SelectionModel.Multi} - * - * @since - * @author Vaadin Ltd */ public static class MultiSelectionModel extends AbstractSelectionModel implements SelectionModel.Multi { |