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
 *
 * @author Ka-Hing Cheung
69
 *
Tom Tromey committed
70 71 72 73 74
 * @since 1.4
 */
public class JSpinner extends JComponent
{
  /**
75
   * The base class for the editor used by the {@link JSpinner} component.
76 77
   * The editor is in fact a panel containing a {@link JFormattedTextField}
   * component.
Tom Tromey committed
78
   */
79 80
  public static class DefaultEditor
    extends JPanel
81
    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
     * Creates a new <code>DefaultEditor</code> object.  The editor is
96
     * 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);
109
      if (getComponentOrientation().isLeftToRight())
110
        ftf.setHorizontalAlignment(JTextField.RIGHT);
111
      else
112
        ftf.setHorizontalAlignment(JTextField.LEFT);
Tom Tromey committed
113 114 115 116
      spinner.addChangeListener(this);
    }

    /**
117 118
     * Returns the <code>JSpinner</code> component that the editor is assigned
     * to.
119
     *
120
     * @return The spinner that the editor is assigned to.
Tom Tromey committed
121 122 123 124 125
     */
    public JSpinner getSpinner()
    {
      return spinner;
    }
126

Tom Tromey committed
127 128 129
    /**
     * DOCUMENT ME!
     */
130
    public void commitEdit() throws ParseException
Tom Tromey committed
131
    {
132 133
      // TODO: Implement this properly.
    }
Tom Tromey committed
134 135

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

    /**
147
     * Returns the text field used to display and edit the current value in
148
     * the spinner.
Tom Tromey committed
149
     *
150
     * @return The text field.
Tom Tromey committed
151 152 153 154 155
     */
    public JFormattedTextField getTextField()
    {
      return ftf;
    }
156

Tom Tromey committed
157
    /**
158 159
     * 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
160
     *
161
     * @param parent the parent container.
Tom Tromey committed
162 163 164 165 166 167 168 169 170
     */
    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);
    }
171

Tom Tromey committed
172
    /**
173 174 175
     * 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
176
     *
177
     * @param parent  the parent container.
Tom Tromey committed
178
     *
179
     * @return The minimum size.
Tom Tromey committed
180 181 182 183 184 185 186 187
     */
    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);
    }
188

Tom Tromey committed
189
    /**
190
     * Calculates the preferred size for this component.  In this case, the
191
     * text field is the only subcomponent, so the return value is the
192
     * preferred size of the text field plus the insets of this component.
Tom Tromey committed
193
     *
194
     * @param parent  the parent container.
Tom Tromey committed
195
     *
196
     * @return The preferred size.
Tom Tromey committed
197 198 199 200 201 202 203 204
     */
    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);
    }
205

Tom Tromey committed
206
    /**
207
     * Receives notification of property changes.  If the text field's 'value'
208
     * property changes, the spinner's model is updated accordingly.
Tom Tromey committed
209
     *
210
     * @param event the event.
Tom Tromey committed
211 212 213
     */
    public void propertyChange(PropertyChangeEvent event)
    {
214
      if (event.getSource() == ftf)
215 216 217 218
        {
          if (event.getPropertyName().equals("value"))
            spinner.getModel().setValue(event.getNewValue());
        }
219
    }
220

Tom Tromey committed
221
    /**
222 223
     * Receives notification of changes in the state of the {@link JSpinner}
     * that the editor belongs to - the content of the text field is updated
224
     * accordingly.
Tom Tromey committed
225
     *
226
     * @param event  the change event.
Tom Tromey committed
227 228 229
     */
    public void stateChanged(ChangeEvent event)
    {
230
      ftf.setValue(spinner.getValue());
231
    }
232

233 234 235 236
    /**
     * 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.
237
     *
238 239
     * @param child  the child component to remove.
     */
Tom Tromey committed
240 241
    public void removeLayoutComponent(Component child)
    {
242
      // Nothing to do here.
Tom Tromey committed
243 244 245
    }

    /**
246 247 248
     * 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.
249
     *
250 251
     * @param name  the name.
     * @param child  the child component to add.
Tom Tromey committed
252 253 254
     */
    public void addLayoutComponent(String name, Component child)
    {
255
      // Nothing to do here.
Tom Tromey committed
256 257 258 259
    }
  }

  /**
260 261 262
   * 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}.
263
   *
264
   * @see JSpinner#createEditor(SpinnerModel)
Tom Tromey committed
265 266 267 268 269 270 271 272 273
   */
  public static class NumberEditor extends DefaultEditor
  {
    /**
     * For compatability with Sun's JDK
     */
    private static final long serialVersionUID = 3791956183098282942L;

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

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

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

316 317 318
    /**
     * Returns the model used by the editor's {@link JSpinner} component,
     * cast to a {@link SpinnerNumberModel}.
319
     *
320 321
     * @return The model.
     */
Tom Tromey committed
322 323 324 325 326
    public SpinnerNumberModel getModel()
    {
      return (SpinnerNumberModel) getSpinner().getModel();
    }
  }
327 328

  static class NumberEditorFormatter
329 330
    extends NumberFormatter
  {
331
    public NumberEditorFormatter()
332 333 334 335 336 337 338 339
    {
      super(NumberFormat.getInstance());
    }
    public NumberEditorFormatter(String decimalFormatPattern)
    {
      super(new DecimalFormat(decimalFormatPattern));
    }
  }
Tom Tromey committed
340 341

  /**
342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359
   * 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);
    }

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

  /**
Tom Tromey committed
372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394
   * 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);
395 396 397 398
      DateEditorFormatter nef = new DateEditorFormatter();
      nef.setMinimum(getModel().getStart());
      nef.setMaximum(getModel().getEnd());
      ftf.setFormatterFactory(new DefaultFormatterFactory(nef));
Tom Tromey committed
399 400 401 402 403 404 405 406 407 408 409
    }

    /**
     * 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
410
     * @see SimpleDateFormat#SimpleDateFormat(String)
Tom Tromey committed
411 412 413 414
     */
    public DateEditor(JSpinner spinner, String dateFormatPattern)
    {
      super(spinner);
415 416 417 418
      DateEditorFormatter nef = new DateEditorFormatter(dateFormatPattern);
      nef.setMinimum(getModel().getStart());
      nef.setMaximum(getModel().getEnd());
      ftf.setFormatterFactory(new DefaultFormatterFactory(nef));
Tom Tromey committed
419 420 421 422 423 424 425 426 427 428 429
    }

    /**
     * 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()
    {
430 431
      DateFormatter formatter = (DateFormatter) ftf.getFormatter();
      return (SimpleDateFormat) formatter.getFormat();
Tom Tromey committed
432 433 434 435 436 437 438 439 440 441 442 443 444
    }

    /**
     * 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();
    }
  }

445
  static class DateEditorFormatter
446 447
    extends DateFormatter
  {
448
    public DateEditorFormatter()
449 450 451 452 453 454 455 456 457
    {
      super(DateFormat.getInstance());
    }
    public DateEditorFormatter(String dateFormatPattern)
    {
      super(new SimpleDateFormat(dateFormatPattern));
    }
  }

458
  /**
459
   * A listener that forwards {@link ChangeEvent} notifications from the model
460
   * to the {@link JSpinner}'s listeners.
461 462 463 464 465 466 467 468 469 470
   */
  class ModelListener implements ChangeListener
  {
    /**
     * Creates a new listener.
     */
    public ModelListener()
    {
      // nothing to do here
    }
471

472 473
    /**
     * Receives notification from the model that its state has changed.
474
     *
475 476 477 478 479 480 481
     * @param event  the event (ignored).
     */
    public void stateChanged(ChangeEvent event)
    {
      fireStateChanged();
    }
  }
Tom Tromey committed
482

483 484 485
  /**
   * The model that defines the current value and permitted values for the
   * spinner.
486
   */
Tom Tromey committed
487 488
  private SpinnerModel model;

489
  /** The current editor. */
Tom Tromey committed
490 491
  private JComponent editor;

492
  private static final long serialVersionUID = 3412663575706551720L;
Tom Tromey committed
493 494

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

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

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

563 564 565 566 567
    JComponent oldEditor = this.editor;
    if (oldEditor instanceof DefaultEditor)
      ((DefaultEditor) oldEditor).dismiss(this);
    else if (oldEditor instanceof ChangeListener)
      removeChangeListener((ChangeListener) oldEditor);
568

Tom Tromey committed
569
    this.editor = editor;
570
    firePropertyChange("editor", oldEditor, editor);
Tom Tromey committed
571 572 573
  }

  /**
574
   * Returns the model used by the {@link JSpinner} component.
Tom Tromey committed
575
   *
576
   * @return The model.
577
   *
578
   * @see #setModel(SpinnerModel)
Tom Tromey committed
579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595
   */
  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();
596

Tom Tromey committed
597 598 599 600 601 602
    if (model == newModel)
      return;

    SpinnerModel oldModel = model;
    model = newModel;
    firePropertyChange("model", oldModel, newModel);
603
    setEditor(createEditor(model));
Tom Tromey committed
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 650 651 652 653
  }

  /**
   * 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();
  }

  /**
654
   * Sets the value in the model.
Tom Tromey committed
655
   *
656
   * @param value the new value.
Tom Tromey committed
657 658 659 660 661 662 663
   */
  public void setValue(Object value)
  {
    model.setValue(value);
  }

  /**
664
   * Returns the ID that identifies which look and feel class will be
Tom Tromey committed
665 666
   * the UI delegate for this spinner.
   *
667
   * @return <code>"SpinnerUI"</code>.
Tom Tromey committed
668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683
   */
  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));
  }

  /**
684
   * Sets the UI delegate for the component.
Tom Tromey committed
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 733 734 735 736
   *
   * @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);
  }

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