KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > blandware > atleap > webapp > taglib > core > util > TaglibConstants


1 /*
2  * Copyright 2004 Blandware (http://www.blandware.com)
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 com.blandware.atleap.webapp.taglib.core.util;
17
18 /**
19  * <p>Contains various constants used in this tag library</p>
20  * <p><a HREF="TaglibConstants.java.htm"><i>View Source</i></a></p>
21  *
22  * @author Sergey Zubtcovskii <a HREF="mailto:sergey.zubtcovskii@blandware.com">&lt;sergey.zubtcovskii@blandware.com&gt;</a>
23  * @version $Revision: 1.6 $ $Date: 2005/07/30 20:57:42 $
24  */

25 public class TaglibConstants {
26
27     /**
28      * Context key, under which map with grids is stored
29      */

30     public static final String JavaDoc GRIDS = "com.blandware.atleap.webapp.taglib.grid.GRIDS";
31
32     /**
33      * Default page context key under which row class is stored
34      * on each iteration of rows iterator
35      *
36      * @see com.blandware.atleap.webapp.taglib.core.grid.RowsIteratorTag
37      */

38     public static final String JavaDoc ROW_CLASS_ATTR = "rowClass";
39
40     /**
41      * Default page context key under which index of each iteration is stored
42      *
43      * @see com.blandware.atleap.webapp.taglib.core.grid.RowsIteratorTag
44      */

45     public static final String JavaDoc INDEX_ID_ATTR = "indexId";
46
47     /**
48      * Default page context key under which page number is stored
49      * on each iteration of pages iterator
50      *
51      * @see com.blandware.atleap.webapp.taglib.core.grid.PagerTag
52      * @see com.blandware.atleap.webapp.taglib.core.grid.PagesIteratorTag
53      */

54     public static final String JavaDoc PAGE_NUMBER_ATTR = "pageNumber";
55
56     /**
57      * Default page context key under which field name is stored in inside 'column' tag
58      *
59      * @see com.blandware.atleap.webapp.taglib.core.grid.ColumnTag
60      */

61     public static final String JavaDoc FIELD_NAME_ATTR = "fieldName";
62
63     /**
64      * Default page context key under which field key is stored in inside 'column' tag
65      *
66      * @see com.blandware.atleap.webapp.taglib.core.grid.ColumnTag
67      */

68     public static final String JavaDoc FIELD_KEY_ATTR = "fieldKey";
69
70     /**
71      * Context key under which name of field in grid is stored
72      * between filter actions executions
73      */

74     public static final String JavaDoc FIELD_NAME = "com.blandware.atleap.taglib.grid.FIELD_NAME";
75
76     /**
77      * Context key under which field bundle key is stored
78      * between filter actions executions
79      */

80     public static final String JavaDoc FIELD_KEY = "com.blandware.atleap.taglib.grid.FIELD_KEY";
81
82     /**
83      * Context key under which name grid is stored
84      * between filter actions executions
85      */

86     public static final String JavaDoc GRID_NAME = "com.blandware.atleap.taglib.grid.GRID_NAME";
87
88     /**
89      * Context key under which page URL where grid is located is stored
90      * between filter actions executions
91      */

92     public static final String JavaDoc PAGE_URL = "com.blandware.atleap.taglib.grid.PAGE_URL";
93
94 }
95
Popular Tags