Lines Matching defs:inputValue
254 * 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;
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, if its Serializable.
2393 if(inputValue != null && inputValue instanceof Serializable) {
2394 values.addElement("inputValue");
2395 values.addElement(inputValue);
2445 equals("inputValue")) {
2446 inputValue = values.elementAt(++indexCounter);