1 /*
2 * $Id: NestedNameSupport.java 471754 2006-11-06 14:55:09Z husted $
3 *
4 * Licensed to the Apache Software Foundation (ASF) under one
5 * or more contributor license agreements. See the NOTICE file
6 * distributed with this work for additional information
7 * regarding copyright ownership. The ASF licenses this file
8 * to you under the Apache License, Version 2.0 (the
9 * "License"); you may not use this file except in compliance
10 * with the License. You may obtain a copy of the License at
11 *
12 * http://www.apache.org/licenses/LICENSE-2.0
13 *
14 * Unless required by applicable law or agreed to in writing,
15 * software distributed under the License is distributed on an
16 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17 * KIND, either express or implied. See the License for the
18 * specific language governing permissions and limitations
19 * under the License.
20 */
21 package org.apache.struts.taglib.nested;
22
23
24 /**
25 * This is so that managing classes can tell if a nested tag needs to have its
26 * <i>name</i> property set. From what I know, these tags use the property
27 * property, and the name is an addition.
28 *
29 * @version $Rev: 471754 $ $Date: 2004-10-16 12:38:42 -0400 (Sat, 16 Oct 2004)
30 * $
31 * @since Struts 1.1
32 */
33 public interface NestedNameSupport extends NestedPropertySupport {
34 /**
35 * The getters and setters required to set a tags <i>name</i> property.
36 *
37 * @return String value of the tags' name property
38 */
39 public String getName();
40
41 /**
42 * The setter for the <i>name</i> property
43 *
44 * @param newNamed new String value to set the name property to
45 */
46 public void setName(String newNamed);
47 }