1
14
15 package com.liferay.taglib.ui;
16
17 import com.liferay.portal.kernel.dao.search.SearchEntry;
18 import com.liferay.portal.kernel.util.StringPool;
19 import com.liferay.taglib.util.ParamAndPropertyAncestorTagImpl;
20
21
26 public abstract class SearchContainerColumnTag
27 extends ParamAndPropertyAncestorTagImpl {
28
29 public String getAlign() {
30 return align;
31 }
32
33 public int getColspan() {
34 return colspan;
35 }
36
37 public int getIndex() {
38 return index;
39 }
40
41 public String getName() {
42 return name;
43 }
44
45 public String getValign() {
46 return valign;
47 }
48
49 public void setAlign(String align) {
50 this.align = align;
51 }
52
53 public void setColspan(int colspan) {
54 this.colspan = colspan;
55 }
56
57 public void setIndex(int index) {
58 this.index = index;
59 }
60
61 public void setName(String name) {
62 this.name = name;
63 }
64
65 public void setValign(String valign) {
66 this.valign = valign;
67 }
68
69 protected String align = SearchEntry.DEFAULT_ALIGN;
70 protected int colspan = SearchEntry.DEFAULT_COLSPAN;
71 protected int index = -1;
72 protected String name = StringPool.BLANK;
73 protected String valign = SearchEntry.DEFAULT_VALIGN;
74
75 }