1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18 package org.apache.struts.taglib.nested;
19
20
21 /***
22 * This interface is for managing classes of the nested extension, so they can
23 * know to set the tag's <i>property</i> property.
24 *
25 * @version $Rev: 376843 $ $Date: 2004-10-16 12:38:42 -0400 (Sat, 16 Oct 2004)
26 * $
27 * @since Struts 1.1
28 */
29 public interface NestedPropertySupport extends NestedTagSupport {
30 /***
31 * The getters and setters required to set a tags <i>property</i>
32 * property.
33 *
34 * @return String value of the tags' property property
35 */
36 public String getProperty();
37
38 /***
39 * The setter for the poroperty property
40 *
41 * @param newProperty new String value to set the property property to
42 */
43 public void setProperty(String newProperty);
44 }