]> git.argeo.org Git - lgpl/argeo-commons.git/blob - org.argeo.util/src/org/argeo/util/tabular/TabularColumn.java
New project conventions
[lgpl/argeo-commons.git] / org.argeo.util / src / org / argeo / util / tabular / TabularColumn.java
1 /*
2 * Copyright (C) 2007-2012 Argeo GmbH
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16 package org.argeo.util.tabular;
17
18 /** The column in a tabular content */
19 public class TabularColumn {
20 private String name;
21 /**
22 * JCR types, see
23 * http://www.day.com/maven/javax.jcr/javadocs/jcr-2.0/index.html
24 * ?javax/jcr/PropertyType.html
25 */
26 private Integer type;
27
28 /** column with default type */
29 public TabularColumn(String name) {
30 super();
31 this.name = name;
32 }
33
34 public TabularColumn(String name, Integer type) {
35 super();
36 this.name = name;
37 this.type = type;
38 }
39
40 public String getName() {
41 return name;
42 }
43
44 public void setName(String name) {
45 this.name = name;
46 }
47
48 public Integer getType() {
49 return type;
50 }
51
52 public void setType(Integer type) {
53 this.type = type;
54 }
55
56 }