1 package org.kuali.maven.ec2.pojo;
2
3 public class Column {
4
5 String title;
6 int width;
7
8 public Column() {
9 this(null);
10 }
11
12 public Column(String title) {
13 super();
14 this.title = title;
15 this.width = title == null ? 0 : title.length();
16 }
17
18 public String getTitle() {
19 return title;
20 }
21
22 public void setTitle(String title) {
23 this.title = title;
24 }
25
26 public int getWidth() {
27 return width;
28 }
29
30 public void setWidth(int width) {
31 this.width = width;
32 }
33
34 }