blob: 18ba716ea3480533500a497da2c57911798eaa55 [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.numberfield;
import org.eclipse.scout.rt.client.ui.form.fields.numberfield.INumberField;
import org.eclipse.scout.rt.ui.rap.form.fields.IRwtScoutFormField;
import org.eclipse.swt.widgets.Text;
/**
* <h3>IRwtScoutNumberField</h3>
*
* @since 3.7.0 June 2011
*/
public interface IRwtScoutNumberField extends IRwtScoutFormField<INumberField<?>> {
String VARIANT_NUMBERFIELD = "numberfield";
String VARIANT_NUMBERFIELD_DISABLED = "numberfield-disabled";
@Override
Text getUiField();
}