From 18be14999dfdd5ed5d2405dbc27fc89242f35dc4 Mon Sep 17 00:00:00 2001 From: Artur Signell Date: Tue, 30 Aug 2016 17:16:40 +0300 Subject: Remove Legacy prefix Change-Id: I8460d2426662d9f8d60d6b7d532e95df33cd95b4 --- .../v7/shared/ui/textarea/LegacyTextAreaState.java | 41 ---------------------- .../ui/textfield/LegacyTextFieldConstants.java | 29 --------------- .../v7/shared/ui/textfield/TextFieldConstants.java | 29 +++++++++++++++ 3 files changed, 29 insertions(+), 70 deletions(-) delete mode 100644 compatibility-shared/src/main/java/com/vaadin/v7/shared/ui/textarea/LegacyTextAreaState.java delete mode 100644 compatibility-shared/src/main/java/com/vaadin/v7/shared/ui/textfield/LegacyTextFieldConstants.java create mode 100644 compatibility-shared/src/main/java/com/vaadin/v7/shared/ui/textfield/TextFieldConstants.java (limited to 'compatibility-shared') 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/LegacyTextFieldConstants.java deleted file mode 100644 index f2f91ea87b..0000000000 --- a/compatibility-shared/src/main/java/com/vaadin/v7/shared/ui/textfield/LegacyTextFieldConstants.java +++ /dev/null @@ -1,29 +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.textfield; - -import java.io.Serializable; - -@Deprecated -public class LegacyTextFieldConstants 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"; - public static final String VAR_CURSOR = "c"; - public static final String ATTR_TEXTCHANGE_EVENTMODE = "iem"; - public static final String TEXTCHANGE_MODE_EAGER = "EAGER"; - -} diff --git a/compatibility-shared/src/main/java/com/vaadin/v7/shared/ui/textfield/TextFieldConstants.java b/compatibility-shared/src/main/java/com/vaadin/v7/shared/ui/textfield/TextFieldConstants.java new file mode 100644 index 0000000000..c9d595c9ba --- /dev/null +++ b/compatibility-shared/src/main/java/com/vaadin/v7/shared/ui/textfield/TextFieldConstants.java @@ -0,0 +1,29 @@ +/* + * 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.textfield; + +import java.io.Serializable; + +@Deprecated +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"; + public static final String VAR_CURSOR = "c"; + public static final String ATTR_TEXTCHANGE_EVENTMODE = "iem"; + public static final String TEXTCHANGE_MODE_EAGER = "EAGER"; + +} -- cgit v1.2.3