]> git.argeo.org Git - lgpl/argeo-commons.git/blob - basic/runtime/org.argeo.basic.nodeps/src/main/java/org/argeo/util/tabular/TabularColumn.java
Make separator writable
[lgpl/argeo-commons.git] / basic / runtime / org.argeo.basic.nodeps / src / main / java / org / argeo / util / tabular / TabularColumn.java
1 package org.argeo.util.tabular;
2
3 /** The column in a tabular content */
4 public class TabularColumn {
5 private String name;
6 /**
7 * JCR types, see
8 * http://www.day.com/maven/javax.jcr/javadocs/jcr-2.0/index.html
9 * ?javax/jcr/Property.html
10 */
11 private Integer type;
12
13 public TabularColumn(String name, Integer type) {
14 super();
15 this.name = name;
16 this.type = type;
17 }
18
19 public String getName() {
20 return name;
21 }
22
23 public void setName(String name) {
24 this.name = name;
25 }
26
27 public Integer getType() {
28 return type;
29 }
30
31 public void setType(Integer type) {
32 this.type = type;
33 }
34
35 }