Lines Matching defs:changeSupport

654      * the <code>changeSupport</code> field describes them.
662 private PropertyChangeSupport changeSupport;
8213 if (changeSupport == null) {
8214 changeSupport = new PropertyChangeSupport(this);
8216 changeSupport.addPropertyChangeListener(listener);
8236 if (listener == null || changeSupport == null) {
8239 changeSupport.removePropertyChangeListener(listener);
8259 if (changeSupport == null) {
8262 return changeSupport.getPropertyChangeListeners();
8304 if (changeSupport == null) {
8305 changeSupport = new PropertyChangeSupport(this);
8307 changeSupport.addPropertyChangeListener(propertyName, listener);
8331 if (listener == null || changeSupport == null) {
8334 changeSupport.removePropertyChangeListener(propertyName, listener);
8355 if (changeSupport == null) {
8358 return changeSupport.getPropertyChangeListeners(propertyName);
8374 PropertyChangeSupport changeSupport;
8376 changeSupport = this.changeSupport;
8378 if (changeSupport == null ||
8382 changeSupport.firePropertyChange(propertyName, oldValue, newValue);
8398 PropertyChangeSupport changeSupport = this.changeSupport;
8399 if (changeSupport == null || oldValue == newValue) {
8402 changeSupport.firePropertyChange(propertyName, oldValue, newValue);
8418 PropertyChangeSupport changeSupport = this.changeSupport;
8419 if (changeSupport == null || oldValue == newValue) {
8422 changeSupport.firePropertyChange(propertyName, oldValue, newValue);
8437 if (changeSupport == null || oldValue == newValue) {
8455 if (changeSupport == null || oldValue == newValue) {
8473 if (changeSupport == null || oldValue == newValue) {
8492 if (changeSupport == null || oldValue == newValue) {
8510 if (changeSupport == null || oldValue == newValue) {
8528 if (changeSupport == null || oldValue == newValue) {