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 /compatibility-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 'compatibility-client')
3 files changed, 90 insertions, 0 deletions
diff --git a/compatibility-client/src/main/java/com/vaadin/client/v7/ui/LegacyDateFieldConnector.java b/compatibility-client/src/main/java/com/vaadin/client/v7/ui/LegacyDateFieldConnector.java new file mode 100644 index 0000000000..6687baa6d4 --- /dev/null +++ b/compatibility-client/src/main/java/com/vaadin/client/v7/ui/LegacyDateFieldConnector.java @@ -0,0 +1,30 @@ +/* + * 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/compatibility-client/src/main/java/com/vaadin/client/v7/ui/LegacyInlineDateFieldConnector.java b/compatibility-client/src/main/java/com/vaadin/client/v7/ui/LegacyInlineDateFieldConnector.java new file mode 100644 index 0000000000..5fb5b7a5dd --- /dev/null +++ b/compatibility-client/src/main/java/com/vaadin/client/v7/ui/LegacyInlineDateFieldConnector.java @@ -0,0 +1,30 @@ +/* + * 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/compatibility-client/src/main/java/com/vaadin/client/v7/ui/LegacyPopupDateFieldConnector.java b/compatibility-client/src/main/java/com/vaadin/client/v7/ui/LegacyPopupDateFieldConnector.java new file mode 100644 index 0000000000..9da986d879 --- /dev/null +++ b/compatibility-client/src/main/java/com/vaadin/client/v7/ui/LegacyPopupDateFieldConnector.java @@ -0,0 +1,30 @@ +/* + * 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 { + +} |