
com.dmurph.mvc.IModel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-simple-mvc Show documentation
Show all versions of java-simple-mvc Show documentation
A simple mvc framework for java application and gui developers.
The newest version!
/**
* Created on Jul 16, 2010, 6:17:37 PM
*/
package com.dmurph.mvc;
import java.beans.PropertyChangeListener;
/**
* @author Daniel Murphy
*
*/
public interface IModel {
public static final String DIRTY = "MODEL_DIRTY";
/**
* Adds a property change listener to this model
* @param argListener
*/
public abstract void addPropertyChangeListener(PropertyChangeListener argListener);
/**
* Removes a property change listener to this model
* @param argListener
*/
public abstract void removePropertyChangeListener(PropertyChangeListener argListener);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy