~ubuntu-branches/ubuntu/trusty/libstruts1.2-java/trusty-proposed

« back to all changes in this revision

Viewing changes to src/share/org/apache/struts/taglib/nested/NestedPropertySupport.java

  • Committer: Bazaar Package Importer
  • Author(s): Arnaud Vandyck
  • Date: 2004-11-19 15:35:25 UTC
  • Revision ID: james.westby@ubuntu.com-20041119153525-mdu08a76z4zo67xt
Tags: upstream-1.2.4
ImportĀ upstreamĀ versionĀ 1.2.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * $Header: /home/cvs/jakarta-struts/src/share/org/apache/struts/taglib/nested/NestedPropertySupport.java,v 1.6 2004/03/14 06:23:47 sraeburn Exp $
 
3
 * $Revision: 1.6 $
 
4
 * $Date: 2004/03/14 06:23:47 $
 
5
 *
 
6
 * Copyright 1999-2004 The Apache Software Foundation.
 
7
 * 
 
8
 * Licensed under the Apache License, Version 2.0 (the "License");
 
9
 * you may not use this file except in compliance with the License.
 
10
 * 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, software
 
15
 * distributed under the License is distributed on an "AS IS" BASIS,
 
16
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 
17
 * See the License for the specific language governing permissions and
 
18
 * limitations under the License.
 
19
 */
 
20
package org.apache.struts.taglib.nested;
 
21
 
 
22
/**
 
23
 * This interface is for managing classes of the nested extension, so they can
 
24
 * know to set the tag's <i>property</i> property.
 
25
 *
 
26
 * @since Struts 1.1
 
27
 * @version $Revision: 1.6 $ $Date: 2004/03/14 06:23:47 $
 
28
 */
 
29
public interface NestedPropertySupport extends NestedTagSupport {
 
30
  
 
31
  /**
 
32
   * The getters and setters required to set a tags <i>property</i> property.
 
33
   * @return String value of the tags' property property
 
34
   */
 
35
  public String getProperty();
 
36
  
 
37
  /**
 
38
   * The setter for the poroperty property
 
39
   * @param newProperty new String value to set the property property to
 
40
   */
 
41
  public void setProperty(String newProperty);
 
42
  
 
43
}