package es.icarto.gvsig.navtableforms.forms.windowproperties;
public class FormWindowProperties {
private String formName;
private int formWindowHeight;
private int formWindowWidth;
private int formWindowXPosition;
private int formWindowYPosition;
public String getFormName() {
return this.formName;
}
public void setFormName(String formName) {
this.formName = formName;
}
public int getFormWindowHeight() {
return this.formWindowHeight;
}
public void setFormWindowHeight(int formWindowHeight) {
this.formWindowHeight = formWindowHeight;
}
public int getFormWindowWidth() {
return this.formWindowWidth;
}
public void setFormWindowWidth(int formWindowWidth) {
this.formWindowWidth = formWindowWidth;
}
public int getFormWindowXPosition() {
return this.formWindowXPosition;
}
public void setFormWindowXPosition(int formWindowXPosition) {
this.formWindowXPosition = formWindowXPosition;
}
public int getFormWindowYPosition() {
return this.formWindowYPosition;
}
public void setFormWindowYPosition(int formWindowYPosition) {
this.formWindowYPosition = formWindowYPosition;
}
}