diff options
author | Artur Signell <artur@vaadin.com> | 2016-08-30 17:16:40 +0300 |
---|---|---|
committer | Artur Signell <artur@vaadin.com> | 2016-08-30 17:19:35 +0300 |
commit | 18be14999dfdd5ed5d2405dbc27fc89242f35dc4 (patch) | |
tree | f02cb5b96527d8b76ada9000cb2fc39118a579fc /compatibility-shared | |
parent | a23bf9481cedb7f981a5ff95f6acc19a7c46ffd2 (diff) | |
download | vaadin-framework-18be14999dfdd5ed5d2405dbc27fc89242f35dc4.tar.gz vaadin-framework-18be14999dfdd5ed5d2405dbc27fc89242f35dc4.zip |
Remove Legacy prefix
Change-Id: I8460d2426662d9f8d60d6b7d532e95df33cd95b4
Diffstat (limited to 'compatibility-shared')
-rw-r--r-- | compatibility-shared/src/main/java/com/vaadin/v7/shared/ui/textarea/LegacyTextAreaState.java | 41 | ||||
-rw-r--r-- | compatibility-shared/src/main/java/com/vaadin/v7/shared/ui/textfield/TextFieldConstants.java (renamed from compatibility-shared/src/main/java/com/vaadin/v7/shared/ui/textfield/LegacyTextFieldConstants.java) | 2 |
2 files changed, 1 insertions, 42 deletions
diff --git a/compatibility-shared/src/main/java/com/vaadin/v7/shared/ui/textarea/LegacyTextAreaState.java b/compatibility-shared/src/main/java/com/vaadin/v7/shared/ui/textarea/LegacyTextAreaState.java deleted file mode 100644 index bb851832c3..0000000000 --- a/compatibility-shared/src/main/java/com/vaadin/v7/shared/ui/textarea/LegacyTextAreaState.java +++ /dev/null @@ -1,41 +0,0 @@ -/* - * Copyright 2000-2016 Vaadin Ltd. - * - * Licensed under the Apache License, Version 2.0 (the "License"); you may not - * use this file except in compliance with the License. You may obtain a copy of - * the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the - * License for the specific language governing permissions and limitations under - * the License. - */ -package com.vaadin.v7.shared.ui.textarea; - -import com.vaadin.shared.annotations.DelegateToWidget; -import com.vaadin.shared.annotations.NoLayout; -import com.vaadin.v7.shared.ui.textfield.AbstractTextFieldState; - -@Deprecated -public class LegacyTextAreaState extends AbstractTextFieldState { - { - primaryStyleName = "v-textarea"; - } - - /** - * Number of visible rows in the text area. The default is 5. - */ - @DelegateToWidget - public int rows = 5; - - /** - * Tells if word-wrapping should be used in the text area. - */ - @DelegateToWidget - @NoLayout - public boolean wordwrap = true; - -} diff --git a/compatibility-shared/src/main/java/com/vaadin/v7/shared/ui/textfield/LegacyTextFieldConstants.java b/compatibility-shared/src/main/java/com/vaadin/v7/shared/ui/textfield/TextFieldConstants.java index f2f91ea87b..c9d595c9ba 100644 --- a/compatibility-shared/src/main/java/com/vaadin/v7/shared/ui/textfield/LegacyTextFieldConstants.java +++ b/compatibility-shared/src/main/java/com/vaadin/v7/shared/ui/textfield/TextFieldConstants.java @@ -18,7 +18,7 @@ package com.vaadin.v7.shared.ui.textfield; import java.io.Serializable; @Deprecated -public class LegacyTextFieldConstants implements Serializable { +public class TextFieldConstants implements Serializable { public static final String VAR_CUR_TEXT = "curText"; public static final String ATTR_NO_VALUE_CHANGE_BETWEEN_PAINTS = "nvc"; public static final String ATTR_TEXTCHANGE_TIMEOUT = "iet"; |