package plugins.rplot; public class PlotParameters { String title; String yLabel; String xLabel; String function; String type; int width; int height; public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } public String getyLabel() { return yLabel; } public void setyLabel(String yLabel) { this.yLabel = yLabel; } public String getxLabel() { return xLabel; } public void setxLabel(String xLabel) { this.xLabel = xLabel; } public String getFunction() { return function; } public void setFunction(String function) { this.function = function; } public String get__Type() { return type; } public void setType(String type) { this.type = type; } 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; } }