package binky.reportrunner.ui.actions.general.metadata; public class Column { public Column(){} /** * @param name * @param label * @param type * @param size */ public Column(String name, String label, String type, int size) { this.name = name; this.label = label; this.type = type; this.size = size; } private String name; private String label; private String type; private int size; public String getName() { return name; } public void setName(String name) { this.name = name; } public String getLabel() { return label; } public void setLabel(String label) { this.label = label; } public String getType() { return type; } public void setType(String type) { this.type = type; } public int getSize() { return size; } public void setSize(int size) { this.size = size; } }