Searched defs:propertyName (Results 1 - 10 of 10) sorted by relevance

/libcore/ojluni/src/main/java/java/beans/
H A DPropertyChangeListenerProxy.java50 private final String propertyName; field in class:PropertyChangeListenerProxy
56 * @param propertyName the name of the property to listen on
59 public PropertyChangeListenerProxy(String propertyName, PropertyChangeListener listener) { argument
61 this.propertyName = propertyName;
79 return this.propertyName;
H A DIndexedPropertyChangeEvent.java52 * @param propertyName The programmatic name of the property that
58 public IndexedPropertyChangeEvent(Object source, String propertyName, argument
61 super (source, propertyName, oldValue, newValue);
H A DPropertyChangeEvent.java54 * @param propertyName the programmatic name of the property that was changed
60 public PropertyChangeEvent(Object source, String propertyName, argument
63 this.propertyName = propertyName;
75 return propertyName;
125 private String propertyName; field in class:PropertyChangeEvent
155 sb.append("[propertyName=").append(getPropertyName());
H A DPropertyChangeSupport.java189 * If <code>propertyName</code> or <code>listener</code> is null, no
192 * @param propertyName The name of the property to listen on.
196 String propertyName,
198 if (listener == null || propertyName == null) {
203 this.map.add(propertyName, listener);
212 * If <code>propertyName</code> is null, no exception is thrown and no
217 * @param propertyName The name of the property that was listened on.
221 String propertyName,
223 if (listener == null || propertyName == null) {
228 this.map.remove(propertyName, listene
195 addPropertyChangeListener( String propertyName, PropertyChangeListener listener) argument
220 removePropertyChangeListener( String propertyName, PropertyChangeListener listener) argument
243 getPropertyChangeListeners(String propertyName) argument
261 firePropertyChange(String propertyName, Object oldValue, Object newValue) argument
281 firePropertyChange(String propertyName, int oldValue, int newValue) argument
301 firePropertyChange(String propertyName, boolean oldValue, boolean newValue) argument
356 fireIndexedPropertyChange(String propertyName, int index, Object oldValue, Object newValue) argument
378 fireIndexedPropertyChange(String propertyName, int index, int oldValue, int newValue) argument
400 fireIndexedPropertyChange(String propertyName, int index, boolean oldValue, boolean newValue) argument
414 hasListeners(String propertyName) argument
[all...]
/libcore/ojluni/src/main/java/sun/security/util/
H A DAbstractAlgorithmConstraints.java47 static String[] getAlgorithms(String propertyName) { argument
52 return Security.getProperty(propertyName);
H A DDisabledAlgorithmConstraints.java69 * @param propertyName the security property name that define the disabled
72 public DisabledAlgorithmConstraints(String propertyName) { argument
73 this(propertyName, new AlgorithmDecomposer());
80 * @param propertyName the security property name that define the disabled
84 public DisabledAlgorithmConstraints(String propertyName, argument
87 disabledAlgorithms = getAlgorithms(propertyName);
/libcore/benchmarks/src/benchmarks/regression/
H A DDoPrivilegedBenchmark.java62 private final String propertyName; field in class:DoPrivilegedBenchmark.ReusableAction
64 public ReusableAction(String propertyName) { argument
65 this.propertyName = propertyName;
69 return System.getProperty(propertyName);
H A DR.java2069 public static final int propertyName = 0; field in class:R
/libcore/support/src/test/java/tests/util/
H A DClassLoaderBuilder.java138 private List<URL> classpathToUrls(String propertyName) { argument
140 String classpath = System.getProperty(propertyName);
/libcore/ojluni/src/main/java/java/util/logging/
H A DLogManager.java1367 private String[] parseClassNames(String propertyName) { argument
1368 String hands = getProperty(propertyName);

Completed in 154 milliseconds