Package org.jspresso.framework.util.bean

Examples of org.jspresso.framework.util.bean.SinglePropertyChangeSupport


  /**
   * Constructs a new <code>ObjectEqualityMap</code> instance.
   */
  public ObjectEqualityMap() {
    super();
    propertyChangeSupport = new SinglePropertyChangeSupport(this);
  }
View Full Code Here


   * @param initialCapacity
   *          initialCapacity.
   */
  public ObjectEqualityMap(int initialCapacity) {
    super(initialCapacity);
    propertyChangeSupport = new SinglePropertyChangeSupport(this);
  }
View Full Code Here

   * @param loadFactor
   *          loadFactor.
   */
  public ObjectEqualityMap(int initialCapacity, float loadFactor) {
    super(initialCapacity, loadFactor);
    propertyChangeSupport = new SinglePropertyChangeSupport(this);
  }
View Full Code Here

   * @param m
   *          map.
   */
  public ObjectEqualityMap(Map<? extends K, ? extends V> m) {
    super(m);
    propertyChangeSupport = new SinglePropertyChangeSupport(this);
  }
View Full Code Here

  }

  private void readObject(ObjectInputStream in) throws IOException,
      ClassNotFoundException {
    in.defaultReadObject();
    propertyChangeSupport = new SinglePropertyChangeSupport(this);
  }
View Full Code Here

   */
  @Override
  public ObjectEqualityMap<K, V> clone() {
    @SuppressWarnings("unchecked") ObjectEqualityMap<K, V> clone = (ObjectEqualityMap<K, V>) super
        .clone();
    clone.propertyChangeSupport = new SinglePropertyChangeSupport(this);
    return clone;
  }
View Full Code Here

      PropertyChangeListener listener) {
    if (listener == null) {
      return;
    }
    if (changeSupport == null) {
      changeSupport = new SinglePropertyChangeSupport(proxy);
    }
    changeSupport.addPropertyChangeListener(listener);
  }
View Full Code Here

      String propertyName, PropertyChangeListener listener) {
    if (listener == null) {
      return;
    }
    if (changeSupport == null) {
      changeSupport = new SinglePropertyChangeSupport(proxy);
    }
    changeSupport.addPropertyChangeListener(propertyName, listener);
  }
View Full Code Here

TOP

Related Classes of org.jspresso.framework.util.bean.SinglePropertyChangeSupport

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.