2 * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
3 * Copyright (C) 2011 - DIGITEO - Vincent COUVERT
5 * This file must be used under the terms of the CeCILL.
6 * This source file is licensed as described in the file COPYING, which
7 * you should have received as part of this distribution. The terms
8 * are also available at
9 * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt
13 package org.scilab.modules.graphic_objects.uicontrol.radiobutton;
15 import static org.scilab.modules.graphic_objects.graphicObject.GraphicObjectProperties.__GO_UI_RADIOBUTTON__;
17 import org.scilab.modules.graphic_objects.uicontrol.Uicontrol;
20 * @author Bruno JOFRET
22 public class RadioButton extends Uicontrol {
27 public RadioButton() {
29 setStyle(__GO_UI_RADIOBUTTON__);
30 setRelief(FLAT_RELIEF);
32 // Default value is the min value (not checked)
33 Double[] value = new Double[1];