JSpinner.java 20.5 KB
Newer Older
Tom Tromey committed
1
/* JSpinner.java --
2
   Copyright (C) 2004, 2005, 2006  Free Software Foundation, Inc.
Tom Tromey committed
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47

This file is part of GNU Classpath.

GNU Classpath is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.

GNU Classpath is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
General Public License for more details.

You should have received a copy of the GNU General Public License
along with GNU Classpath; see the file COPYING.  If not, write to the
Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301 USA.

Linking this library statically or dynamically with other modules is
making a combined work based on this library.  Thus, the terms and
conditions of the GNU General Public License cover the whole
combination.

As a special exception, the copyright holders of this library give you
permission to link this library with independent modules to produce an
executable, regardless of the license terms of these independent
modules, and to copy and distribute the resulting executable under
terms of your choice, provided that you also meet, for each linked
independent module, the terms and conditions of the license of that
module.  An independent module is a module which is not derived from
or based on this library.  If you modify this library, you may extend
this exception to your version of the library, but you are not
obligated to do so.  If you do not wish to do so, delete this
exception statement from your version. */


package javax.swing;

import java.awt.Component;
import java.awt.Container;
import java.awt.Dimension;
import java.awt.Insets;
import java.awt.LayoutManager;
import java.beans.PropertyChangeEvent;
import java.beans.PropertyChangeListener;
48
import java.text.DateFormat;
Tom Tromey committed
49
import java.text.DecimalFormat;
50
import java.text.NumberFormat;
Tom Tromey committed
51 52 53 54 55 56 57
import java.text.ParseException;
import java.text.SimpleDateFormat;

import javax.swing.event.ChangeEvent;
import javax.swing.event.ChangeListener;
import javax.swing.plaf.SpinnerUI;
import javax.swing.text.DateFormatter;
58 59
import javax.swing.text.DefaultFormatterFactory;
import javax.swing.text.NumberFormatter;
Tom Tromey committed
60 61

/**
62 63 64 65 66
 * A <code>JSpinner</code> is a component that displays a single value from
 * a sequence of values, and provides a convenient means for selecting the
 * previous and next values in the sequence.  Typically the spinner displays
 * a numeric value, but it is possible to display dates or arbitrary items
 * from a list.
Tom Tromey committed
67 68 69 70 71 72 73 74
 *
 * @author Ka-Hing Cheung
 * 
 * @since 1.4
 */
public class JSpinner extends JComponent
{
  /**
75 76 77
   * The base class for the editor used by the {@link JSpinner} component.  
   * The editor is in fact a panel containing a {@link JFormattedTextField}
   * component.
Tom Tromey committed
78
   */
79 80 81
  public static class DefaultEditor 
    extends JPanel 
    implements ChangeListener, PropertyChangeListener, LayoutManager
Tom Tromey committed
82
  {
83
    /** The spinner that the editor is allocated to. */
Tom Tromey committed
84 85 86 87 88 89 90 91 92 93 94
    private JSpinner spinner;

    /** The JFormattedTextField that backs the editor. */
    JFormattedTextField ftf;

    /**
     * For compatability with Sun's JDK 1.4.2 rev. 5
     */
    private static final long serialVersionUID = -5317788736173368172L;

    /**
95 96
     * Creates a new <code>DefaultEditor</code> object.  The editor is 
     * registered with the spinner as a {@link ChangeListener} here.
Tom Tromey committed
97 98 99 100 101 102 103 104 105 106 107
     *
     * @param spinner the <code>JSpinner</code> associated with this editor
     */
    public DefaultEditor(JSpinner spinner)
    {
      super();
      setLayout(this);
      this.spinner = spinner;
      ftf = new JFormattedTextField();
      add(ftf);
      ftf.setValue(spinner.getValue());
108
      ftf.addPropertyChangeListener(this);
Tom Tromey committed
109 110 111 112
      spinner.addChangeListener(this);
    }

    /**
113 114 115 116
     * Returns the <code>JSpinner</code> component that the editor is assigned
     * to.
     * 
     * @return The spinner that the editor is assigned to.
Tom Tromey committed
117 118 119 120 121 122 123 124 125
     */
    public JSpinner getSpinner()
    {
      return spinner;
    }
    
    /**
     * DOCUMENT ME!
     */
126
    public void commitEdit() throws ParseException
Tom Tromey committed
127
    {
128 129
      // TODO: Implement this properly.
    }
Tom Tromey committed
130 131

    /**
132 133
     * Removes the editor from the {@link ChangeListener} list maintained by
     * the specified <code>spinner</code>.
Tom Tromey committed
134
     *
135
     * @param spinner  the spinner (<code>null</code> not permitted).
Tom Tromey committed
136 137 138 139 140 141 142
     */
    public void dismiss(JSpinner spinner)
    {
      spinner.removeChangeListener(this);
    }

    /**
143 144
     * Returns the text field used to display and edit the current value in 
     * the spinner.
Tom Tromey committed
145
     *
146
     * @return The text field.
Tom Tromey committed
147 148 149 150 151 152 153
     */
    public JFormattedTextField getTextField()
    {
      return ftf;
    }
    
    /**
154 155
     * Sets the bounds for the child components in this container.  In this
     * case, the text field is the only component to be laid out.
Tom Tromey committed
156
     *
157
     * @param parent the parent container.
Tom Tromey committed
158 159 160 161 162 163 164 165 166 167 168
     */
    public void layoutContainer(Container parent)
    {
      Insets insets = getInsets();
      Dimension size = getSize();
      ftf.setBounds(insets.left, insets.top,
                    size.width - insets.left - insets.right,
                    size.height - insets.top - insets.bottom);
    }
    
    /**
169 170 171
     * Calculates the minimum size for this component.  In this case, the
     * text field is the only subcomponent, so the return value is the minimum
     * size of the text field plus the insets of this component.
Tom Tromey committed
172
     *
173
     * @param parent  the parent container.
Tom Tromey committed
174
     *
175
     * @return The minimum size.
Tom Tromey committed
176 177 178 179 180 181 182 183 184 185
     */
    public Dimension minimumLayoutSize(Container parent)
    {
      Insets insets = getInsets();
      Dimension minSize = ftf.getMinimumSize();
      return new Dimension(minSize.width + insets.left + insets.right,
                            minSize.height + insets.top + insets.bottom);
    }
    
    /**
186 187 188
     * Calculates the preferred size for this component.  In this case, the
     * text field is the only subcomponent, so the return value is the 
     * preferred size of the text field plus the insets of this component.
Tom Tromey committed
189
     *
190
     * @param parent  the parent container.
Tom Tromey committed
191
     *
192
     * @return The preferred size.
Tom Tromey committed
193 194 195 196 197 198 199 200 201 202
     */
    public Dimension preferredLayoutSize(Container parent)
    {
      Insets insets = getInsets();
      Dimension prefSize = ftf.getPreferredSize();
      return new Dimension(prefSize.width + insets.left + insets.right,
                            prefSize.height + insets.top + insets.bottom);
    }
    
    /**
203 204
     * Receives notification of property changes.  If the text field's 'value' 
     * property changes, the spinner's model is updated accordingly.
Tom Tromey committed
205
     *
206
     * @param event the event.
Tom Tromey committed
207 208 209
     */
    public void propertyChange(PropertyChangeEvent event)
    {
210 211 212 213 214
      if (event.getSource() == ftf) 
        {
          if (event.getPropertyName().equals("value"))
            spinner.getModel().setValue(event.getNewValue());
        }
215
    }
Tom Tromey committed
216 217
    
    /**
218 219 220
     * Receives notification of changes in the state of the {@link JSpinner}
     * that the editor belongs to - the content of the text field is updated
     * accordingly.  
Tom Tromey committed
221
     *
222
     * @param event  the change event.
Tom Tromey committed
223 224 225
     */
    public void stateChanged(ChangeEvent event)
    {
226
      ftf.setValue(spinner.getValue());
227
    }
Tom Tromey committed
228
    
229 230 231 232 233 234 235
    /**
     * This method does nothing.  It is required by the {@link LayoutManager}
     * interface, but since this component has a single child, there is no
     * need to use this method.
     * 
     * @param child  the child component to remove.
     */
Tom Tromey committed
236 237
    public void removeLayoutComponent(Component child)
    {
238
      // Nothing to do here.
Tom Tromey committed
239 240 241
    }

    /**
242 243 244 245 246 247
     * This method does nothing.  It is required by the {@link LayoutManager}
     * interface, but since this component has a single child, there is no
     * need to use this method.
     * 
     * @param name  the name.
     * @param child  the child component to add.
Tom Tromey committed
248 249 250
     */
    public void addLayoutComponent(String name, Component child)
    {
251
      // Nothing to do here.
Tom Tromey committed
252 253 254 255
    }
  }

  /**
256 257 258 259 260
   * A panel containing a {@link JFormattedTextField} that is configured for
   * displaying and editing numbers.  The panel is used as a subcomponent of
   * a {@link JSpinner}.
   * 
   * @see JSpinner#createEditor(SpinnerModel)
Tom Tromey committed
261 262 263 264 265 266 267 268 269
   */
  public static class NumberEditor extends DefaultEditor
  {
    /**
     * For compatability with Sun's JDK
     */
    private static final long serialVersionUID = 3791956183098282942L;

    /**
270 271 272
     * Creates a new <code>NumberEditor</code> object for the specified 
     * <code>spinner</code>.  The editor is registered with the spinner as a 
     * {@link ChangeListener}.
Tom Tromey committed
273
     *
274
     * @param spinner the component the editor will be used with.
Tom Tromey committed
275 276 277 278
     */
    public NumberEditor(JSpinner spinner)
    {
      super(spinner);
279 280 281 282
      NumberEditorFormatter nef = new NumberEditorFormatter();
      nef.setMinimum(getModel().getMinimum());
      nef.setMaximum(getModel().getMaximum());
      ftf.setFormatterFactory(new DefaultFormatterFactory(nef));
Tom Tromey committed
283 284 285
    }

    /**
286
     * Creates a new <code>NumberEditor</code> object.
Tom Tromey committed
287
     *
288 289
     * @param spinner  the spinner.
     * @param decimalFormatPattern  the number format pattern.
Tom Tromey committed
290 291 292 293
     */
    public NumberEditor(JSpinner spinner, String decimalFormatPattern)
    {
      super(spinner);
294 295 296 297 298
      NumberEditorFormatter nef 
          = new NumberEditorFormatter(decimalFormatPattern);
      nef.setMinimum(getModel().getMinimum());
      nef.setMaximum(getModel().getMaximum());
      ftf.setFormatterFactory(new DefaultFormatterFactory(nef));
Tom Tromey committed
299 300 301
    }

    /**
302
     * Returns the format used by the text field.
Tom Tromey committed
303
     *
304
     * @return The format used by the text field.
Tom Tromey committed
305 306 307
     */
    public DecimalFormat getFormat()
    {
308 309
      NumberFormatter formatter = (NumberFormatter) ftf.getFormatter();
      return (DecimalFormat) formatter.getFormat();
Tom Tromey committed
310 311
    }

312 313 314 315 316 317
    /**
     * Returns the model used by the editor's {@link JSpinner} component,
     * cast to a {@link SpinnerNumberModel}.
     * 
     * @return The model.
     */
Tom Tromey committed
318 319 320 321 322
    public SpinnerNumberModel getModel()
    {
      return (SpinnerNumberModel) getSpinner().getModel();
    }
  }
323 324 325 326 327 328 329 330 331 332 333 334 335
  
  static class NumberEditorFormatter 
    extends NumberFormatter
  {
    public NumberEditorFormatter() 
    {
      super(NumberFormat.getInstance());
    }
    public NumberEditorFormatter(String decimalFormatPattern)
    {
      super(new DecimalFormat(decimalFormatPattern));
    }
  }
Tom Tromey committed
336 337

  /**
338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355
   * A <code>JSpinner</code> editor used for the {@link SpinnerListModel}.
   * This editor uses a <code>JFormattedTextField</code> to edit the values
   * of the spinner.
   *
   * @author Roman Kennke (kennke@aicas.com)
   */
  public static class ListEditor extends DefaultEditor
  {
    /**
     * Creates a new instance of <code>ListEditor</code>.
     *
     * @param spinner the spinner for which this editor is used
     */
    public ListEditor(JSpinner spinner)
    {
      super(spinner);
    }

356 357 358 359 360
    /**
     * Returns the spinner's model cast as a {@link SpinnerListModel}.
     * 
     * @return The spinner's model.
     */
361 362 363 364 365 366 367
    public SpinnerListModel getModel()
    {
      return (SpinnerListModel) getSpinner().getModel();
    }
  }

  /**
Tom Tromey committed
368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390
   * An editor class for a <code>JSpinner</code> that is used
   * for displaying and editing dates (e.g. that uses
   * <code>SpinnerDateModel</code> as model).
   *
   * The editor uses a {@link JTextField} with the value
   * displayed by a {@link DateFormatter} instance.
   */
  public static class DateEditor extends DefaultEditor
  {

    /** The serialVersionUID. */
    private static final long serialVersionUID = -4279356973770397815L;

    /**
     * Creates a new instance of DateEditor for the specified
     * <code>JSpinner</code>.
     *
     * @param spinner the <code>JSpinner</code> for which to
     *     create a <code>DateEditor</code> instance
     */
    public DateEditor(JSpinner spinner)
    {
      super(spinner);
391 392 393 394
      DateEditorFormatter nef = new DateEditorFormatter();
      nef.setMinimum(getModel().getStart());
      nef.setMaximum(getModel().getEnd());
      ftf.setFormatterFactory(new DefaultFormatterFactory(nef));
Tom Tromey committed
395 396 397 398 399 400 401 402 403 404 405
    }

    /**
     * Creates a new instance of DateEditor for the specified
     * <code>JSpinner</code> using the specified date format
     * pattern.
     *
     * @param spinner the <code>JSpinner</code> for which to
     *     create a <code>DateEditor</code> instance
     * @param dateFormatPattern the date format to use
     *
Tom Tromey committed
406
     * @see SimpleDateFormat#SimpleDateFormat(String)
Tom Tromey committed
407 408 409 410
     */
    public DateEditor(JSpinner spinner, String dateFormatPattern)
    {
      super(spinner);
411 412 413 414
      DateEditorFormatter nef = new DateEditorFormatter(dateFormatPattern);
      nef.setMinimum(getModel().getStart());
      nef.setMaximum(getModel().getEnd());
      ftf.setFormatterFactory(new DefaultFormatterFactory(nef));
Tom Tromey committed
415 416 417 418 419 420 421 422 423 424 425
    }

    /**
     * Returns the <code>SimpleDateFormat</code> instance that is used to
     * format the date value.
     *
     * @return the <code>SimpleDateFormat</code> instance that is used to
     *     format the date value
     */
    public SimpleDateFormat getFormat()
    {
426 427
      DateFormatter formatter = (DateFormatter) ftf.getFormatter();
      return (SimpleDateFormat) formatter.getFormat();
Tom Tromey committed
428 429 430 431 432 433 434 435 436 437 438 439 440
    }

    /**
     * Returns the {@link SpinnerDateModel} that is edited by this editor.
     *
     * @return the <code>SpinnerDateModel</code> that is edited by this editor
     */
    public SpinnerDateModel getModel()
    {
      return (SpinnerDateModel) getSpinner().getModel();
    }
  }

441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477
  static class DateEditorFormatter 
    extends DateFormatter
  {
    public DateEditorFormatter() 
    {
      super(DateFormat.getInstance());
    }
    public DateEditorFormatter(String dateFormatPattern)
    {
      super(new SimpleDateFormat(dateFormatPattern));
    }
  }

  /** 
   * A listener that forwards {@link ChangeEvent} notifications from the model
   * to the {@link JSpinner}'s listeners. 
   */
  class ModelListener implements ChangeListener
  {
    /**
     * Creates a new listener.
     */
    public ModelListener()
    {
      // nothing to do here
    }
    
    /**
     * Receives notification from the model that its state has changed.
     * 
     * @param event  the event (ignored).
     */
    public void stateChanged(ChangeEvent event)
    {
      fireStateChanged();
    }
  }
Tom Tromey committed
478

479 480 481 482
  /** 
   * The model that defines the current value and permitted values for the 
   * spinner. 
   */
Tom Tromey committed
483 484
  private SpinnerModel model;

485
  /** The current editor. */
Tom Tromey committed
486 487
  private JComponent editor;

488
  private static final long serialVersionUID = 3412663575706551720L;
Tom Tromey committed
489 490

  /**
491 492 493
   * Creates a new <code>JSpinner</code> with default instance of 
   * {@link SpinnerNumberModel} (that is, a model with value 0, step size 1, 
   * and no upper or lower limit).
Tom Tromey committed
494 495 496 497 498 499 500 501 502
   *
   * @see javax.swing.SpinnerNumberModel
   */
  public JSpinner()
  {
    this(new SpinnerNumberModel());
  }

  /**
503 504 505
   * Creates a new <code>JSpinner with the specified model.  The 
   * {@link #createEditor(SpinnerModel)} method is used to create an editor
   * that is suitable for the model.
Tom Tromey committed
506
   *
507 508 509
   * @param model the model (<code>null</code> not permitted).
   * 
   * @throws NullPointerException if <code>model</code> is <code>null</code>.
Tom Tromey committed
510 511 512 513
   */
  public JSpinner(SpinnerModel model)
  {
    this.model = model;
514 515
    this.editor = createEditor(model);
    model.addChangeListener(new ModelListener());
Tom Tromey committed
516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543
    updateUI();
  }

  /**
   * If the editor is <code>JSpinner.DefaultEditor</code>, then forwards the
   * call to it, otherwise do nothing.
   *
   * @throws ParseException DOCUMENT ME!
   */
  public void commitEdit() throws ParseException
  {
    if (editor instanceof DefaultEditor)
      ((DefaultEditor) editor).commitEdit();
  }

  /**
   * Gets the current editor
   *
   * @return the current editor
   *
   * @see #setEditor
   */
  public JComponent getEditor()
  {
    return editor;
  }

  /**
544 545
   * Changes the current editor to the new editor. The old editor is
   * removed from the spinner's {@link ChangeEvent} list.
Tom Tromey committed
546
   *
547
   * @param editor the new editor (<code>null</code> not permitted.
Tom Tromey committed
548
   *
549 550
   * @throws IllegalArgumentException if <code>editor</code> is 
   *                                  <code>null</code>.
Tom Tromey committed
551 552 553 554 555 556 557 558
   *
   * @see #getEditor
   */
  public void setEditor(JComponent editor)
  {
    if (editor == null)
      throw new IllegalArgumentException("editor may not be null");

559 560 561 562 563 564
    JComponent oldEditor = this.editor;
    if (oldEditor instanceof DefaultEditor)
      ((DefaultEditor) oldEditor).dismiss(this);
    else if (oldEditor instanceof ChangeListener)
      removeChangeListener((ChangeListener) oldEditor);
    
Tom Tromey committed
565
    this.editor = editor;
566
    firePropertyChange("editor", oldEditor, editor);
Tom Tromey committed
567 568 569
  }

  /**
570
   * Returns the model used by the {@link JSpinner} component.
Tom Tromey committed
571
   *
572 573 574
   * @return The model.
   * 
   * @see #setModel(SpinnerModel)
Tom Tromey committed
575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598
   */
  public SpinnerModel getModel()
  {
    return model;
  }

  /**
   * Sets a new underlying model.
   *
   * @param newModel the new model to set
   *
   * @exception IllegalArgumentException if newModel is <code>null</code>
   */
  public void setModel(SpinnerModel newModel)
  {
    if (newModel == null)
      throw new IllegalArgumentException();
    
    if (model == newModel)
      return;

    SpinnerModel oldModel = model;
    model = newModel;
    firePropertyChange("model", oldModel, newModel);
599
    setEditor(createEditor(model));
Tom Tromey committed
600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649
  }

  /**
   * Gets the next value without changing the current value.
   *
   * @return the next value
   *
   * @see javax.swing.SpinnerModel#getNextValue
   */
  public Object getNextValue()
  {
    return model.getNextValue();
  }

  /**
   * Gets the previous value without changing the current value.
   *
   * @return the previous value
   *
   * @see javax.swing.SpinnerModel#getPreviousValue
   */
  public Object getPreviousValue()
  {
    return model.getPreviousValue();
  }

  /**
   * Gets the <code>SpinnerUI</code> that handles this spinner
   *
   * @return the <code>SpinnerUI</code>
   */
  public SpinnerUI getUI()
  {
    return (SpinnerUI) ui;
  }

  /**
   * Gets the current value of the spinner, according to the underly model,
   * not the UI.
   *
   * @return the current value
   *
   * @see javax.swing.SpinnerModel#getValue
   */
  public Object getValue()
  {
    return model.getValue();
  }

  /**
650
   * Sets the value in the model.
Tom Tromey committed
651
   *
652
   * @param value the new value.
Tom Tromey committed
653 654 655 656 657 658 659
   */
  public void setValue(Object value)
  {
    model.setValue(value);
  }

  /**
660
   * Returns the ID that identifies which look and feel class will be
Tom Tromey committed
661 662
   * the UI delegate for this spinner.
   *
663
   * @return <code>"SpinnerUI"</code>.
Tom Tromey committed
664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679
   */
  public String getUIClassID()
  {
    return "SpinnerUI";
  }

  /**
   * This method resets the spinner's UI delegate to the default UI for the
   * current look and feel.
   */
  public void updateUI()
  {
    setUI((SpinnerUI) UIManager.getUI(this));
  }

  /**
680
   * Sets the UI delegate for the component.
Tom Tromey committed
681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732
   *
   * @param ui The spinner's UI delegate.
   */
  public void setUI(SpinnerUI ui)
  {
    super.setUI(ui);
  }

  /**
   * Adds a <code>ChangeListener</code>
   *
   * @param listener the listener to add
   */
  public void addChangeListener(ChangeListener listener)
  {
    listenerList.add(ChangeListener.class, listener);
  }

  /**
   * Remove a particular listener
   *
   * @param listener the listener to remove
   */
  public void removeChangeListener(ChangeListener listener)
  {
    listenerList.remove(ChangeListener.class, listener);
  }

  /**
   * Gets all the <code>ChangeListener</code>s
   *
   * @return all the <code>ChangeListener</code>s
   */
  public ChangeListener[] getChangeListeners()
  {
    return (ChangeListener[]) listenerList.getListeners(ChangeListener.class);
  }

  /**
   * Fires a <code>ChangeEvent</code> to all the <code>ChangeListener</code>s
   * added to this <code>JSpinner</code>
   */
  protected void fireStateChanged()
  {
    ChangeEvent evt = new ChangeEvent(this);
    ChangeListener[] listeners = getChangeListeners();

    for (int i = 0; i < listeners.length; ++i)
      listeners[i].stateChanged(evt);
  }

  /**
733
   * Creates an editor that is appropriate for the specified <code>model</code>.
Tom Tromey committed
734
   *
735
   * @param model the model.
Tom Tromey committed
736
   *
737
   * @return The editor.
Tom Tromey committed
738 739 740 741 742 743 744
   */
  protected JComponent createEditor(SpinnerModel model)
  {
    if (model instanceof SpinnerDateModel)
      return new DateEditor(this);
    else if (model instanceof SpinnerNumberModel)
      return new NumberEditor(this);
745 746
    else if (model instanceof SpinnerListModel)
      return new ListEditor(this);
Tom Tromey committed
747 748 749 750
    else
      return new DefaultEditor(this);
  }
}