Lines Matching defs:initialSelectionValue

390     /** Bound property name for <code>initialSelectionValue</code>. */
391 public static final String INITIAL_SELECTION_VALUE_PROPERTY = "initialSelectionValue";
423 protected transient Object initialSelectionValue;
446 * the input value initialized to <code>initialSelectionValue</code>. The
451 * @param initialSelectionValue the value used to initialize the input
455 public static String showInputDialog(Object message, Object initialSelectionValue) {
456 return showInputDialog(null, message, initialSelectionValue);
482 * initialized to <code>initialSelectionValue</code>.
489 * @param initialSelectionValue the value used to initialize the input
494 Object initialSelectionValue) {
498 initialSelectionValue);
536 * <code>initialSelectionValue</code> is the initial value to prompt
556 * @param initialSelectionValue the value used to initialize the input
567 Object[] selectionValues, Object initialSelectionValue)
575 pane.setInitialSelectionValue(initialSelectionValue);
1394 * <code>initialSelectionValue</code> is the initial value to prompt
1411 * @param initialSelectionValue the value used to initialize the input
1418 Object[] selectionValues, Object initialSelectionValue) {
1428 pane.setInitialSelectionValue(initialSelectionValue);
2195 Object oldValue = initialSelectionValue;
2197 initialSelectionValue = newValue;
2210 return initialSelectionValue;
2397 // Save the initialSelectionValue, if its Serializable.
2398 if(initialSelectionValue != null &&
2399 initialSelectionValue instanceof Serializable) {
2400 values.addElement("initialSelectionValue");
2401 values.addElement(initialSelectionValue);
2450 equals("initialSelectionValue")) {
2451 initialSelectionValue = values.elementAt(++indexCounter);