/**
* @author AKAPUSTA
*/
package de.laures.cewolf.example;
public class plotParams {
private int width = 800;
private int height = 400;
private String date = "none";
public int getWidth(){
return width;
}
public void setWidth(int width){
this.width = width;
}
public int getHeight(){
return height;
}
public void setHeight(int height){
this.height = height;
}
}