blob: 2ce08308122d33306b6d3dcefc2b4695e1bd43fb [file] [log] [blame]
/**
* Copyright (c) 2011, 2014 - Lunifera GmbH (Gross Enzersdorf, Austria), Loetz GmbH&Co.KG (69115 Heidelberg, Germany)
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Florian Pirchner - Initial implementation
*/
package org.eclipse.osbp.runtime.web.ecview.presentation.vaadin.tests.ui.samples;
import com.vaadin.ui.CheckBox;
import com.vaadin.ui.CssLayout;
import com.vaadin.ui.CustomComponent;
public class CheckBoxSample extends CustomComponent {
/**
*
*/
private static final long serialVersionUID = 1L;
private CssLayout layout;
public CheckBoxSample() {
layout = new CssLayout();
setCompositionRoot(layout);
init();
}
protected void init() {
CheckBox checkbox = new CheckBox();
layout.addComponent(checkbox);
}
}