Searched refs:inputValue (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/swing/
H A DJOptionPane.java254 * String inputValue = JOptionPane.showInputDialog("Please input a value");
392 /** Bound property name for <code>inputValue</code>. */
393 public static final String INPUT_VALUE_PROPERTY = "inputValue";
421 protected transient Object inputValue; field in class:JOptionPane
1845 inputValue = UNINITIALIZED_VALUE;
2152 * value. After the pane as been enabled, <code>inputValue</code> is
2233 Object oldValue = inputValue;
2235 inputValue = newValue;
2252 return inputValue;
2392 // Save the inputValue, i
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicOptionPaneUI.java447 Object inputValue = optionPane
460 if (inputValue != null) {
461 cBox.setSelectedItem(inputValue);
474 if(inputValue != null)
475 list.setSelectedValue(inputValue, true);
487 if (inputValue != null) {
488 String inputString = inputValue.toString();

Completed in 53 milliseconds