You are viewing a plain text version of this content. The canonical link for it is here.
Posted to taglibs-dev@jakarta.apache.org by gl...@apache.org on 2002/04/04 20:46:27 UTC

cvs commit: jakarta-taglibs/page/src/org/apache/taglibs/page AttributesTag.java

glenn       02/04/04 10:46:27

  Modified:    page/src/org/apache/taglibs/page AttributesTag.java
  Log:
  Change name of getAttribute() to getValue() to match docs
  
  Revision  Changes    Path
  1.3       +2 -2      jakarta-taglibs/page/src/org/apache/taglibs/page/AttributesTag.java
  
  Index: AttributesTag.java
  ===================================================================
  RCS file: /home/cvs/jakarta-taglibs/page/src/org/apache/taglibs/page/AttributesTag.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- AttributesTag.java	13 Jul 2001 23:19:04 -0000	1.2
  +++ AttributesTag.java	4 Apr 2002 18:46:27 -0000	1.3
  @@ -165,11 +165,11 @@
       /**
        * Returns the value of the attribute.
        * <p>
  -     * &lt;jsp:getProperty name=<i>"id"</i> property="attribute"/&gt;
  +     * &lt;jsp:getProperty name=<i>"id"</i> property="value"/&gt;
        *
        * @return String - value of the attribute
        */
  -    public final String getAttribute()
  +    public final String getValue()
       {
   	Object value = pageContext.getAttribute(attribute);
   	if( value == null )
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>