diff options
author | Henri Sara <hesara@vaadin.com> | 2016-08-09 15:11:02 +0300 |
---|---|---|
committer | Henri Sara <hesara@vaadin.com> | 2016-08-11 15:45:59 +0300 |
commit | 5c852b41ff22409e9f69d634f2de5df69b7815c0 (patch) | |
tree | 3359f91fe33d3d7cecfb35a9cf29e6d92b663188 /client | |
parent | c726ae1b276049282286db3b0934e90ac8d8a2ce (diff) | |
download | vaadin-framework-5c852b41ff22409e9f69d634f2de5df69b7815c0.tar.gz vaadin-framework-5c852b41ff22409e9f69d634f2de5df69b7815c0.zip |
Convert CheckBox from legacy to AbstractField
Add LegacyCheckBox for old field factories, Grid editor etc.
Change-Id: Ic40790049421268c6de3d26730d1955d56aa86c4
Diffstat (limited to 'client')
-rw-r--r-- | client/src/main/java/com/vaadin/client/legacy/ui/checkbox/LegacyCheckBoxConnector.java | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/client/src/main/java/com/vaadin/client/legacy/ui/checkbox/LegacyCheckBoxConnector.java b/client/src/main/java/com/vaadin/client/legacy/ui/checkbox/LegacyCheckBoxConnector.java new file mode 100644 index 0000000000..bb05f976b8 --- /dev/null +++ b/client/src/main/java/com/vaadin/client/legacy/ui/checkbox/LegacyCheckBoxConnector.java @@ -0,0 +1,25 @@ +/* + * Copyright 2000-2014 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.legacy.ui.checkbox; + +import com.vaadin.client.ui.checkbox.CheckBoxConnector; +import com.vaadin.legacy.ui.LegacyCheckBox; +import com.vaadin.shared.ui.Connect; + +@Connect(LegacyCheckBox.class) +public class LegacyCheckBoxConnector extends CheckBoxConnector { + +} |