Author: dolander
Date: Sun Feb 20 15:20:50 2005
New Revision: 154572

URL: http://svn.apache.org/viewcvs?view=rev&rev=154572
Log:
Renamed the interface method because it had the wrong name and conflicted
with the IAttributeConsumer.



Modified:
    
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/IBehaviorConsumer.java
    
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/Behavior.java

Modified: 
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/IBehaviorConsumer.java
URL: 
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/IBehaviorConsumer.java?view=diff&r1=154571&r2=154572
==============================================================================
--- 
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/IBehaviorConsumer.java
 (original)
+++ 
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/IBehaviorConsumer.java
 Sun Feb 20 15:20:50 2005
@@ -18,5 +18,5 @@
      * @param facet The name of a facet to which the attribute will be 
applied.  This is optional.
      * @throws JspException A JspException may be thrown if there is an error 
setting the attribute.
      */
-    void setAttribute(String name, String value, String facet) throws 
JspException;
+    void setBehavior(String name, String value, String facet) throws 
JspException;
 }

Modified: 
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/Behavior.java
URL: 
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/Behavior.java?view=diff&r1=154571&r2=154572
==============================================================================
--- 
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/Behavior.java
 (original)
+++ 
incubator/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/html/Behavior.java
 Sun Feb 20 15:20:50 2005
@@ -109,7 +109,7 @@
         }
 
         IBehaviorConsumer ac = (IBehaviorConsumer) tag;
-        ac.setAttribute(_name, _value, _facet);
+        ac.setBehavior(_name, _value, _facet);
         return;
     }
 }


Reply via email to