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