All Downloads are FREE. Search and download functionalities are using the official Maven repository.

xq.gwt.mvc.model.EntityModel Maven / Gradle / Ivy

Go to download

A framework for implementing the MVP variant of the Model View Controller design pattern in the context of GWT

The newest version!
package xq.gwt.mvc.model;

public interface EntityModel {	
	public String getTitle();
    public String getName();
	public PropertyModel[] getProperties();	
	public CommandModel[] getCommands();
	public void addEntityChangedListener(EntityChangedListener listener);
	public void removeEntityChangedListener(EntityChangedListener listener);
	public String getIdentifier();
	public boolean isValid();
	public PropertyModel getProperty(String name);
	public EntityModel copy()throws Exception;
	public boolean hasRelations();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy