1 /*
2 * $Id: Constants.java 54929 2004-10-16 16:38:42Z germuska $
3 *
4 * Copyright 1999,2004 The Apache Software Foundation.
5 *
6 * Licensed under the Apache License, Version 2.0 (the "License");
7 * you may not use this file except in compliance with the License.
8 * You may obtain a copy of the License at
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an "AS IS" BASIS,
14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 * See the License for the specific language governing permissions and
16 * limitations under the License.
17 */
18
19
20 package org.apache.struts.taglib.html;
21
22
23 /**
24 * Manifest constants for this package.
25 */
26
27 public class Constants {
28
29
30 /**
31 * The name of this package.
32 */
33 public static final String Package = "org.apache.struts.taglib.html";
34
35
36 /**
37 * The attribute key for the bean our form is related to.
38 */
39 public static final String BEAN_KEY = Package + ".BEAN";
40
41
42 /**
43 * The property under which a Cancel button press is reported.
44 */
45 public static final String CANCEL_PROPERTY = Package + ".CANCEL";
46
47
48 /**
49 * The property under which a Cancel button press is reported, if the
50 * Cancel button is rendered as an image.
51 */
52 public static final String CANCEL_PROPERTY_X = Package + ".CANCEL.x";
53
54
55 /**
56 * The attribute key for the form tag itself.
57 */
58 public static final String FORM_KEY = Package + ".FORM";
59
60
61 /**
62 * The attribute key for the select tag itself.
63 */
64 public static final String SELECT_KEY = Package + ".SELECT";
65
66
67 /**
68 * The property under which a transaction token is reported.
69 */
70 public static final String TOKEN_KEY = Package + ".TOKEN";
71
72
73 }