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

xq.gwt.mvc.model.PropertyRelation 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 PropertyRelation implements Serializable{		
	private static final long serialVersionUID = -3872376249287708074L;
	private Class toEntity;	
	private String toPropertyName;
	
	public PropertyRelation(){
		
	}
	
	public PropertyRelation(Class toEntity, String toPropertyName){
		this.toEntity = toEntity;
		this.toPropertyName = toPropertyName;
	}
	
	public Class getToEntity() {
		return toEntity;
	}
	public void setToEntity(Class toEntity) {
		this.toEntity = toEntity;
	}
	public String getToPropertyName() {
		return toPropertyName;
	}
	public void setToPropertyName(String toPropertyName) {
		this.toPropertyName = toPropertyName;
	}
	
	
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy