1   /**
2    * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
3    *
4    * The contents of this file are subject to the terms of the Liferay Enterprise
5    * Subscription License ("License"). You may not use this file except in
6    * compliance with the License. You can obtain a copy of the License by
7    * contacting Liferay, Inc. See the License for the specific language governing
8    * permissions and limitations under the License, including but not limited to
9    * distribution rights of the Software.
10   *
11   *
12   *
13   */
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  /**
22   * <a href="SearchContainerColumnTag.java.html"><b><i>View Source</i></b></a>
23   *
24   * @author Raymond Augé
25   */
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  }