1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21 package org.apache.struts.taglib.html;
22
23
24 /**
25 * Manifest constants for this package.
26 */
27 public class Constants {
28 /**
29 * The name of this package.
30 */
31 public static final String Package = "org.apache.struts.taglib.html";
32
33 /**
34 * The attribute key for the bean our form is related to.
35 */
36 public static final String BEAN_KEY = Package + ".BEAN";
37
38 /**
39 * The property under which a Cancel button press is reported.
40 */
41 public static final String CANCEL_PROPERTY = Package + ".CANCEL";
42
43 /**
44 * The property under which a Cancel button press is reported, if the
45 * Cancel button is rendered as an image.
46 */
47 public static final String CANCEL_PROPERTY_X = Package + ".CANCEL.x";
48
49 /**
50 * The attribute key for the form tag itself.
51 */
52 public static final String FORM_KEY = Package + ".FORM";
53
54 /**
55 * The attribute key for the select tag itself.
56 */
57 public static final String SELECT_KEY = Package + ".SELECT";
58
59 /**
60 * The property under which a transaction token is reported.
61 */
62 public static final String TOKEN_KEY = Package + ".TOKEN";
63 }