diff options
author | Artur Signell <artur@vaadin.com> | 2016-08-18 23:07:28 +0300 |
---|---|---|
committer | Artur Signell <artur@vaadin.com> | 2016-08-20 11:00:13 +0300 |
commit | dd5870249c4eeb12a6ae2865c36ac9b687220206 (patch) | |
tree | e8037d4fc8003b75dcacede3e9971b1ce9b827ed /client | |
parent | cfe379885275aae74b88c22ec4dd1bd3a8a094bd (diff) | |
download | vaadin-framework-dd5870249c4eeb12a6ae2865c36ac9b687220206.tar.gz vaadin-framework-dd5870249c4eeb12a6ae2865c36ac9b687220206.zip |
Move DateField and old validators to compatibility package
Change-Id: I800db8383171280c01eb427e121467a37acbca66
Diffstat (limited to 'client')
3 files changed, 0 insertions, 90 deletions
diff --git a/client/src/main/java/com/vaadin/client/v7/ui/LegacyDateFieldConnector.java b/client/src/main/java/com/vaadin/client/v7/ui/LegacyDateFieldConnector.java deleted file mode 100644 index 6687baa6d4..0000000000 --- a/client/src/main/java/com/vaadin/client/v7/ui/LegacyDateFieldConnector.java +++ /dev/null @@ -1,30 +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; - -import com.vaadin.client.ui.datefield.DateFieldConnector; -import com.vaadin.shared.ui.Connect; -import com.vaadin.v7.ui.LegacyDateField; - -/** - * @author Vaadin Ltd - * - */ -@Connect(LegacyDateField.class) -@Deprecated -public class LegacyDateFieldConnector extends DateFieldConnector { - -} diff --git a/client/src/main/java/com/vaadin/client/v7/ui/LegacyInlineDateFieldConnector.java b/client/src/main/java/com/vaadin/client/v7/ui/LegacyInlineDateFieldConnector.java deleted file mode 100644 index 5fb5b7a5dd..0000000000 --- a/client/src/main/java/com/vaadin/client/v7/ui/LegacyInlineDateFieldConnector.java +++ /dev/null @@ -1,30 +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; - -import com.vaadin.client.ui.datefield.InlineDateFieldConnector; -import com.vaadin.shared.ui.Connect; -import com.vaadin.v7.ui.LegacyInlineDateField; - -/** - * @author Vaadin Ltd - * - */ -@Connect(LegacyInlineDateField.class) -@Deprecated -public class LegacyInlineDateFieldConnector extends InlineDateFieldConnector { - -} diff --git a/client/src/main/java/com/vaadin/client/v7/ui/LegacyPopupDateFieldConnector.java b/client/src/main/java/com/vaadin/client/v7/ui/LegacyPopupDateFieldConnector.java deleted file mode 100644 index 9da986d879..0000000000 --- a/client/src/main/java/com/vaadin/client/v7/ui/LegacyPopupDateFieldConnector.java +++ /dev/null @@ -1,30 +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; - -import com.vaadin.client.ui.datefield.PopupDateFieldConnector; -import com.vaadin.shared.ui.Connect; -import com.vaadin.v7.ui.LegacyPopupDateField; - -/** - * @author Vaadin Ltd - * - */ -@Deprecated -@Connect(LegacyPopupDateField.class) -public class LegacyPopupDateFieldConnector extends PopupDateFieldConnector { - -} |