xq.gwt.mvc.model.PropertyRelation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of XqGwtMvc Show documentation
Show all versions of XqGwtMvc Show documentation
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 extends EntityModel> toEntity;
private String toPropertyName;
public PropertyRelation(){
}
public PropertyRelation(Class extends EntityModel> toEntity, String toPropertyName){
this.toEntity = toEntity;
this.toPropertyName = toPropertyName;
}
public Class extends EntityModel> getToEntity() {
return toEntity;
}
public void setToEntity(Class extends EntityModel> toEntity) {
this.toEntity = toEntity;
}
public String getToPropertyName() {
return toPropertyName;
}
public void setToPropertyName(String toPropertyName) {
this.toPropertyName = toPropertyName;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy