Lines Matching refs:name

151      * If <code>name</code> or <code>pcl</code> is null, no exception is thrown
154 * @param name The name of the property to listen on
157 public void addPropertyChangeListener(String name, PropertyChangeListener pcl) {
158 pcSupport.addPropertyChangeListener(name, pcl);
166 * If <code>name</code> is null, no exception is thrown
171 * @param name The name of the property that was listened on
174 public void removePropertyChangeListener(String name, PropertyChangeListener pcl) {
175 pcSupport.removePropertyChangeListener(name, pcl);
183 * If <code>name</code> or <code>vcl</code> is null, no exception is thrown
186 * @param name The name of the property to listen on
189 public void addVetoableChangeListener(String name, VetoableChangeListener vcl) {
190 vcSupport.addVetoableChangeListener(name, vcl);
198 * If <code>name</code> is null, no exception is thrown
203 * @param name The name of the property that was listened on
206 public void removeVetoableChangeListener(String name, VetoableChangeListener vcl) {
207 vcSupport.removeVetoableChangeListener(name, vcl);
249 * @param name The programmatic name of the property that was changed
253 public void firePropertyChange(String name, Object oldValue, Object newValue) {
254 pcSupport.firePropertyChange(name, oldValue, newValue);
265 * @param name The programmatic name of the property that is about to
274 public void fireVetoableChange(String name, Object oldValue, Object newValue) throws PropertyVetoException {
275 vcSupport.fireVetoableChange(name, oldValue, newValue);