Package com.dmurph.mvc.support

Examples of com.dmurph.mvc.support.MVCPropertyChangeSupport


public abstract class AbstractModel implements Serializable, IModel{
  private static final long serialVersionUID = 1L;
  protected final MVCPropertyChangeSupport propertyChangeSupport;
   
    public AbstractModel(){
        propertyChangeSupport = new MVCPropertyChangeSupport(this);
    }
View Full Code Here

TOP

Related Classes of com.dmurph.mvc.support.MVCPropertyChangeSupport

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.