blob: e663147f2c1f348df13d28284754822d54fc0830 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011 BSI Business Systems Integration AG.
* 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:
* BSI Business Systems Integration AG - initial API and implementation
*******************************************************************************/
package org.eclipse.scout.rt.ui.rap.form.fields.checkbox;
import org.eclipse.scout.rt.client.ui.form.fields.booleanfield.IBooleanField;
import org.eclipse.scout.rt.ui.rap.form.fields.IRwtScoutFormField;
import org.eclipse.swt.widgets.Button;
/**
* <h3>IRwtScoutCheckbox</h3> ...
*
* @since 3.7.0 June 2011
*/
public interface IRwtScoutCheckbox extends IRwtScoutFormField<IBooleanField> {
@Override
Button getUiField();
}