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

xq.gwt.mvc.model.EntityChangedEvent 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;

import java.io.Serializable;

public class EntityChangedEvent implements Serializable{
		
	private static final long serialVersionUID = -379125732406869772L;
	private Object source;	
	
	public EntityChangedEvent(){}
	
	public EntityChangedEvent(Object source){
		this.source = source;
	}
	
	public Object getSource() {
		return source;
	}
	public void setSource(Object source) {
		this.source = source;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy