Searched defs:newValue (Results 1 - 25 of 99) sorted by relevance

1234

/openjdk7/jdk/src/share/demo/jfc/SampleTree/
H A DSampleTreeModel.java73 public void valueForPathChanged(TreePath path, Object newValue) { argument
79 sampleData.setString((String) newValue);
/openjdk7/jdk/test/java/util/HashMap/
H A DSetValue.java36 static final String newValue = "new"; field in class:SetValue
42 Object returnVal = e.setValue(newValue);
/openjdk7/jdk/src/share/classes/java/beans/
H A DIndexedPropertyChangeEvent.java55 * @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 DPropertyChangeEvent.java56 * @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 DVetoableChangeSupport.java63 * 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 DConcurrentMap.java119 * 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 DPreferenceChangeEvent.java59 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 DModelMBeanNotificationBroadcaster.java129 * @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 DReentrancy.c54 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 DConstEntry.java105 public void value (Expression newValue) argument
107 _value = newValue;
/openjdk7/hotspot/agent/src/share/classes/com/sun/java/swing/action/
H A DStateChangeAction.java56 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 DTreeModel.java115 * 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 DAtomicBoolean.java125 * @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 DAtomicReference.java89 * @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 DAtomicReferenceFieldUpdater.java145 * @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 DAttributeChangeNotification.java47 * "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 DTestMethods.java67 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 DFooNumberFormat.java78 public void setDecimalSeparatorAlwaysShown(boolean newValue) { argument
79 df.setDecimalSeparatorAlwaysShown(newValue);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/tree/
H A DSimpleTreeModel.java80 public void valueForPathChanged(TreePath path, Object newValue) { argument
/openjdk7/jdk/src/share/classes/javax/swing/
H A DBoundedRangeModel.java147 * 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 DSystemTray.java137 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 DTestMethods.java72 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 Djavax_swing_JTree.java72 public void valueForPathChanged(TreePath path, Object newValue) { argument
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/dom/events/
H A DMutationEventImpl.java36 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 DAbstractTreeTableModel.java56 public void valueForPathChanged(TreePath path, Object newValue) {} argument

Completed in 83 milliseconds

1234