/openjdk7/jdk/src/share/demo/jfc/SampleTree/ |
H A D | SampleTreeModel.java | 73 public void valueForPathChanged(TreePath path, Object newValue) { argument 79 sampleData.setString((String) newValue);
|
/openjdk7/jdk/test/java/util/HashMap/ |
H A D | SetValue.java | 36 static final String newValue = "new"; field in class:SetValue 42 Object returnVal = e.setValue(newValue);
|
/openjdk7/jdk/src/share/classes/java/beans/ |
H A D | IndexedPropertyChangeEvent.java | 55 * @param newValue The new value of the property. 59 Object oldValue, Object newValue, 61 super (source, propertyName, oldValue, newValue); 58 IndexedPropertyChangeEvent(Object source, String propertyName, Object oldValue, Object newValue, int index) argument
|
H A D | PropertyChangeEvent.java | 56 * @param newValue The new value of the property. 59 Object oldValue, Object newValue) { 62 this.newValue = newValue; 83 return newValue; 129 private Object newValue; field in class:PropertyChangeEvent 156 sb.append("; newValue=").append(getNewValue()); 58 PropertyChangeEvent(Object source, String propertyName, Object oldValue, Object newValue) argument
|
H A D | VetoableChangeSupport.java | 63 * public void setValue(String newValue) throws PropertyVetoException { 65 * this.vcs.fireVetoableChange("value", oldValue, newValue); 66 * this.value = newValue; 265 * @param newValue the new value of the property 268 public void fireVetoableChange(String propertyName, Object oldValue, Object newValue) argument 270 if (oldValue == null || newValue == null || !oldValue.equals(newValue)) { 271 fireVetoableChange(new PropertyChangeEvent(this.source, propertyName, oldValue, newValue)); 293 * @param newValue the new value of the property 296 public void fireVetoableChange(String propertyName, int oldValue, int newValue) argument 324 fireVetoableChange(String propertyName, boolean oldValue, boolean newValue) argument [all...] |
/openjdk7/jdk/src/share/classes/java/util/concurrent/ |
H A D | ConcurrentMap.java | 119 * map.put(key, newValue); 126 * @param newValue value to be associated with the specified key 137 boolean replace(K key, V oldValue, V newValue); argument
|
/openjdk7/jdk/src/share/classes/java/util/prefs/ |
H A D | PreferenceChangeEvent.java | 59 private String newValue; field in class:PreferenceChangeEvent 66 * @param newValue The new value of the preference, or <tt>null</tt> 70 String newValue) { 73 this.newValue = newValue; 101 return newValue; 69 PreferenceChangeEvent(Preferences node, String key, String newValue) argument
|
/openjdk7/jdk/src/share/classes/javax/management/modelmbean/ |
H A D | ModelMBeanNotificationBroadcaster.java | 129 * @param newValue The current value for the Attribute 139 * attributeNewValue newValue.getValue() 146 public void sendAttributeChangeNotification(Attribute oldValue, Attribute newValue) argument
|
/openjdk7/jdk/src/share/instrument/ |
H A D | Reentrancy.c | 54 const void * newValue); 70 const void * newValue) { 76 newValue); 82 newValue); 68 confirmingTLSSet( jvmtiEnv * jvmtienv, jthread thread, const void * newValue) argument
|
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/ |
H A D | ConstEntry.java | 105 public void value (Expression newValue) argument 107 _value = newValue;
|
/openjdk7/hotspot/agent/src/share/classes/com/sun/java/swing/action/ |
H A D | StateChangeAction.java | 56 public synchronized void setSelected(boolean newValue) argument 59 if(oldValue != newValue) 61 selected = newValue; 62 firePropertyChange("selected", Boolean.valueOf(oldValue), Boolean.valueOf(newValue));
|
/openjdk7/jdk/src/share/classes/javax/swing/tree/ |
H A D | TreeModel.java | 115 * by <code>path</code> to <code>newValue</code>. 116 * If <code>newValue</code> signifies a truly new value 120 * @param newValue the new value from the TreeCellEditor 122 public void valueForPathChanged(TreePath path, Object newValue); argument
|
/openjdk7/jdk/src/share/classes/java/util/concurrent/atomic/ |
H A D | AtomicBoolean.java | 125 * @param newValue the new value 127 public final void set(boolean newValue) { argument 128 value = newValue ? 1 : 0; 134 * @param newValue the new value 137 public final void lazySet(boolean newValue) { argument 138 int v = newValue ? 1 : 0; 145 * @param newValue the new value 148 public final boolean getAndSet(boolean newValue) { argument 151 if (compareAndSet(current, newValue))
|
H A D | AtomicReference.java | 89 * @param newValue the new value 91 public final void set(V newValue) { argument 92 value = newValue; 98 * @param newValue the new value 101 public final void lazySet(V newValue) { argument 102 unsafe.putOrderedObject(this, valueOffset, newValue); 136 * @param newValue the new value 139 public final V getAndSet(V newValue) { argument 142 if (compareAndSet(x, newValue))
|
H A D | AtomicReferenceFieldUpdater.java | 145 * @param newValue the new value 147 public abstract void set(T obj, V newValue); argument 154 * @param newValue the new value 157 public abstract void lazySet(T obj, V newValue); argument 173 * @param newValue the new value 176 public V getAndSet(T obj, V newValue) { argument 179 if (compareAndSet(obj, current, newValue)) 270 public void set(T obj, V newValue) { argument 272 (newValue != null && vclass != null && 273 vclass != newValue 278 lazySet(T obj, V newValue) argument [all...] |
/openjdk7/jdk/src/share/classes/javax/management/ |
H A D | AttributeChangeNotification.java | 47 * "myString", "String", oldValue, newValue); 82 private Object newValue = null; field in class:AttributeChangeNotification 97 * @param newValue An object representing value of the attribute after the change. 100 String attributeName, String attributeType, Object oldValue, Object newValue) { 106 this.newValue = newValue; 143 return newValue; 99 AttributeChangeNotification(Object source, long sequenceNumber, long timeStamp, String msg, String attributeName, String attributeType, Object oldValue, Object newValue) argument
|
/openjdk7/jdk/test/java/beans/VetoableChangeSupport/ |
H A D | TestMethods.java | 67 public void fireVetoableChange(String property, Object oldValue, Object newValue) throws PropertyVetoException { argument 72 super.fireVetoableChange(property, oldValue, newValue); 76 public void fireVetoableChange(String property, int oldValue, int newValue) throws PropertyVetoException { argument 81 super.fireVetoableChange(property, oldValue, newValue); 85 public void fireVetoableChange(String property, boolean oldValue, boolean newValue) throws PropertyVetoException { argument 90 super.fireVetoableChange(property, oldValue, newValue);
|
/openjdk7/jdk/test/java/util/PluggableLocale/providersrc/ |
H A D | FooNumberFormat.java | 78 public void setDecimalSeparatorAlwaysShown(boolean newValue) { argument 79 df.setDecimalSeparatorAlwaysShown(newValue);
|
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/tree/ |
H A D | SimpleTreeModel.java | 80 public void valueForPathChanged(TreePath path, Object newValue) { argument
|
/openjdk7/jdk/src/share/classes/javax/swing/ |
H A D | BoundedRangeModel.java | 147 * Sets the model's current value to <code>newValue</code> if <code>newValue</code> 152 * Otherwise, if <code>newValue</code> is less than <code>minimum</code> 165 * @param newValue the model's new value 168 void setValue(int newValue); argument
|
/openjdk7/jdk/src/share/classes/java/awt/ |
H A D | SystemTray.java | 137 Object newValue) { 138 tray.firePropertyChange(propertyName, oldValue, newValue); 464 * @param newValue the property's new value 467 Object oldValue, Object newValue) 469 if (oldValue != null && newValue != null && oldValue.equals(newValue)) { 472 getCurrentChangeSupport().firePropertyChange(propertyName, oldValue, newValue); 466 firePropertyChange(String propertyName, Object oldValue, Object newValue) argument
|
/openjdk7/jdk/test/java/beans/PropertyChangeSupport/ |
H A D | TestMethods.java | 72 public void firePropertyChange(String property, Object oldValue, Object newValue) { argument 77 super.firePropertyChange(property, oldValue, newValue); 81 public void firePropertyChange(String property, int oldValue, int newValue) { argument 86 super.firePropertyChange(property, oldValue, newValue); 90 public void firePropertyChange(String property, boolean oldValue, boolean newValue) { argument 95 super.firePropertyChange(property, oldValue, newValue); 108 public void fireIndexedPropertyChange(String property, int index, Object oldValue, Object newValue) { argument 113 super.fireIndexedPropertyChange(property, index, oldValue, newValue); 117 public void fireIndexedPropertyChange(String property, int index, int oldValue, int newValue) { argument 122 super.fireIndexedPropertyChange(property, index, oldValue, newValue); 126 fireIndexedPropertyChange(String property, int index, boolean oldValue, boolean newValue) argument [all...] |
/openjdk7/jdk/test/java/beans/XMLEncoder/ |
H A D | javax_swing_JTree.java | 72 public void valueForPathChanged(TreePath path, Object newValue) { argument
|
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/dom/events/ |
H A D | MutationEventImpl.java | 36 String prevValue=null,newValue=null,attrName=null; field in class:MutationEventImpl 75 return newValue; 106 newValue=newValueArg;
|
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/treetable/ |
H A D | AbstractTreeTableModel.java | 56 public void valueForPathChanged(TreePath path, Object newValue) {} argument
|