Revision 11087 branches/v10/libraries/libUI/src/de/ios/framework/swing/NumberRange.java

View differences:

NumberRange.java
35 35
  public static final boolean debug = false;
36 36

  
37 37
  /** TextField to hold the current value */
38
  protected NumberField value  = null;
38
  protected JNumberField value  = null;
39 39
  /** Button to increment the current value */
40 40
  protected Button      plusB  = new Button("+");;
41 41
  /** Button to decrement the current value */
......
103 103
   * Arranges the GUI components
104 104
   */
105 105
  protected void createDialog() {
106
    value  = new NumberField( digits );
106
    value  = new JNumberField( digits );
107 107
    value.setEditable( false );
108 108
    setLayout( new FlowLayout( FlowLayout.LEFT, 1, 1) );
109 109
    add( value  );
......
161 161

  
162 162
/*
163 163
 * $Log$
164
 * Revision 1.1.2.1  2007-01-19 13:42:54  caballero
164
 * Revision 1.1.2.2  2007-04-10 08:15:10  jmvivo
165
 * Por compatibilidad con la v1_0_1 se vuelve a usar JNumberField
166
 *
167
 * Revision 1.1.2.1  2007/01/19 13:42:54  caballero
165 168
 * NumericField
166 169
 *
167 170
 * Revision 1.1.1.1  2001/02/07 15:24:01  rtfm

Also available in: Unified diff