1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19 package org.apache.struts.tiles.beans;
20
21 import java.io.Serializable;
22
23 /***
24 * Interface for MenuItems.
25 * @see SimpleMenuItem
26 */
27 public interface MenuItem extends Serializable {
28
29 /***
30 * Set value property.
31 */
32 public void setValue(String value);
33
34 /***
35 * Get value property.
36 */
37 public String getValue();
38
39 /***
40 * Set link property.
41 */
42 public void setLink(String link);
43
44 /***
45 * Get link property.
46 */
47 public String getLink();
48
49 /***
50 * Set icon property.
51 */
52 public void setIcon(String link);
53
54 /***
55 * Get icon property.
56 */
57 public String getIcon();
58
59 /***
60 * Set tooltip property.
61 */
62 public void setTooltip(String link);
63
64 /***
65 * Get tooltip property.
66 */
67 public String getTooltip();
68 }