You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by js...@apache.org on 2002/06/25 19:59:32 UTC

cvs commit: jakarta-commons-sandbox/jelly/src/java/org/apache/commons/jelly DynaTag.java

jstrachan    2002/06/25 10:59:32

  Modified:    jelly/src/java/org/apache/commons/jelly DynaTag.java
  Log:
  allowed setAttribute() to throw an exception so that DynaTag errors can popup to the TagScript for better error reporting
  
  Revision  Changes    Path
  1.4       +6 -6      jakarta-commons-sandbox/jelly/src/java/org/apache/commons/jelly/DynaTag.java
  
  Index: DynaTag.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons-sandbox/jelly/src/java/org/apache/commons/jelly/DynaTag.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- DynaTag.java	17 May 2002 15:18:12 -0000	1.3
  +++ DynaTag.java	25 Jun 2002 17:59:32 -0000	1.4
  @@ -82,6 +82,6 @@
       /** Sets an attribute value of this tag before the tag is invoked
        */
   
  -    public void setAttribute(String name, Object value);
  +    public void setAttribute(String name, Object value) throws Exception;
   
   }
  
  
  

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