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