From f183804846fa39067a79a199df5c929f94aa3624 Mon Sep 17 00:00:00 2001 From: Artur Signell Date: Fri, 26 Aug 2016 10:57:19 +0300 Subject: Move PasswordFieldConnector to correct package Change-Id: I8ef025863b2b004473eae0a458e77be6a4c8fa86 --- .../ui/passwordfield/PasswordFieldConnector.java | 32 ---------------------- .../ui/passwordfield/PasswordFieldConnector.java | 32 ++++++++++++++++++++++ 2 files changed, 32 insertions(+), 32 deletions(-) delete mode 100644 compatibility-client/src/main/java/com/vaadin/client/v7/ui/passwordfield/PasswordFieldConnector.java create mode 100644 compatibility-client/src/main/java/com/vaadin/v7/client/ui/passwordfield/PasswordFieldConnector.java diff --git a/compatibility-client/src/main/java/com/vaadin/client/v7/ui/passwordfield/PasswordFieldConnector.java b/compatibility-client/src/main/java/com/vaadin/client/v7/ui/passwordfield/PasswordFieldConnector.java deleted file mode 100644 index 42a233011b..0000000000 --- a/compatibility-client/src/main/java/com/vaadin/client/v7/ui/passwordfield/PasswordFieldConnector.java +++ /dev/null @@ -1,32 +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.client.v7.ui.passwordfield; - -import com.vaadin.client.v7.ui.VLegacyPasswordField; -import com.vaadin.client.v7.ui.textfield.LegacyTextFieldConnector; -import com.vaadin.shared.ui.Connect; -import com.vaadin.v7.ui.PasswordField; - -@Deprecated -@Connect(PasswordField.class) -public class PasswordFieldConnector extends LegacyTextFieldConnector { - - @Override - public VLegacyPasswordField getWidget() { - return (VLegacyPasswordField) super.getWidget(); - } -} diff --git a/compatibility-client/src/main/java/com/vaadin/v7/client/ui/passwordfield/PasswordFieldConnector.java b/compatibility-client/src/main/java/com/vaadin/v7/client/ui/passwordfield/PasswordFieldConnector.java new file mode 100644 index 0000000000..033e879ff2 --- /dev/null +++ b/compatibility-client/src/main/java/com/vaadin/v7/client/ui/passwordfield/PasswordFieldConnector.java @@ -0,0 +1,32 @@ +/* + * 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.client.ui.passwordfield; + +import com.vaadin.client.v7.ui.VLegacyPasswordField; +import com.vaadin.client.v7.ui.textfield.LegacyTextFieldConnector; +import com.vaadin.shared.ui.Connect; +import com.vaadin.v7.ui.PasswordField; + +@Deprecated +@Connect(PasswordField.class) +public class PasswordFieldConnector extends LegacyTextFieldConnector { + + @Override + public VLegacyPasswordField getWidget() { + return (VLegacyPasswordField) super.getWidget(); + } +} -- cgit v1.2.3