diff options
author | Artur Signell <artur@vaadin.com> | 2014-12-17 11:13:50 +0200 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2014-12-17 10:38:44 +0000 |
commit | 9d881f8851f82dd75db0e1efe79f8d4fdcb199ff (patch) | |
tree | d97ea6ef5fefa5c014fc8d8cfc22e14bcb71757d /server/src/com/vaadin/ui | |
parent | e615af509199b8956650d6c70a573c14597c90c1 (diff) | |
download | vaadin-framework-9d881f8851f82dd75db0e1efe79f8d4fdcb199ff.tar.gz vaadin-framework-9d881f8851f82dd75db0e1efe79f8d4fdcb199ff.zip |
Empty since tags -> 7.4
Change-Id: I73755f0c580c40b93d95df5e3ca55f6617c21353
Diffstat (limited to 'server/src/com/vaadin/ui')
-rw-r--r-- | server/src/com/vaadin/ui/AbstractSplitPanel.java | 2 | ||||
-rw-r--r-- | server/src/com/vaadin/ui/Field.java | 4 | ||||
-rw-r--r-- | server/src/com/vaadin/ui/TabSheet.java | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/server/src/com/vaadin/ui/AbstractSplitPanel.java b/server/src/com/vaadin/ui/AbstractSplitPanel.java index a78f192fa2..3d47ca256c 100644 --- a/server/src/com/vaadin/ui/AbstractSplitPanel.java +++ b/server/src/com/vaadin/ui/AbstractSplitPanel.java @@ -351,7 +351,7 @@ public abstract class AbstractSplitPanel extends AbstractComponentContainer { * by the first region, but if split position is reversed the measuring is * done by the second region instead. * - * @since + * @since 7.4 * @return {@code true} if reversed, {@code false} otherwise. * @see #setSplitPosition(float, boolean) */ diff --git a/server/src/com/vaadin/ui/Field.java b/server/src/com/vaadin/ui/Field.java index 6dee4de6cb..8a9acd570f 100644 --- a/server/src/com/vaadin/ui/Field.java +++ b/server/src/com/vaadin/ui/Field.java @@ -120,7 +120,7 @@ public interface Field<T> extends Component, BufferedValidatable, Property<T>, * In general, "empty" state is same as null. As an exception, TextField * also treats empty string as "empty". * - * @since + * @since 7.4 * @return true if the field is empty, false otherwise */ public boolean isEmpty(); @@ -131,7 +131,7 @@ public interface Field<T> extends Component, BufferedValidatable, Property<T>, * The field value is typically reset to the initial value of the field. * Calling {@link #isEmpty()} on a cleared field must always returns true. * - * @since + * @since 7.4 */ public void clear(); diff --git a/server/src/com/vaadin/ui/TabSheet.java b/server/src/com/vaadin/ui/TabSheet.java index 88002104b1..ac00a28b2f 100644 --- a/server/src/com/vaadin/ui/TabSheet.java +++ b/server/src/com/vaadin/ui/TabSheet.java @@ -243,7 +243,7 @@ public class TabSheet extends AbstractComponentContainer implements Focusable, * the removed tab if it's not the last one, otherwise will choose the * closer enabled tab to the left. * - * @since + * @since 7.4 * @param removedTabIndex * the index of the selected tab which was just remove. * @return the index of the tab to be selected or -1 if there are no more |