diff options
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 { + +} |