Update of /var/cvs/applications/taglib/src/org/mmbase/bridge/jsp/taglib/pageflow
In directory james.mmbase.org:/tmp/cvs-serv24976

Modified Files:
        UrlTag.java 
Log Message:
a getter for ExtraParameters. Mainly for forward compatibility, because in 1.9 
extraParameters has become a Map, but this method can return the same type in 
1.9


See also: 
http://cvs.mmbase.org/viewcvs/applications/taglib/src/org/mmbase/bridge/jsp/taglib/pageflow


Index: UrlTag.java
===================================================================
RCS file: 
/var/cvs/applications/taglib/src/org/mmbase/bridge/jsp/taglib/pageflow/UrlTag.java,v
retrieving revision 1.120
retrieving revision 1.121
diff -u -b -r1.120 -r1.121
--- UrlTag.java 22 Dec 2008 14:50:50 -0000      1.120
+++ UrlTag.java 22 Dec 2008 15:11:49 -0000      1.121
@@ -30,7 +30,7 @@
  * A Tag to produce an URL with parameters. It can use 'context' parameters 
easily.
  *
  * @author Michiel Meeuwissen
- * @version $Id: UrlTag.java,v 1.120 2008/12/22 14:50:50 michiel Exp $
+ * @version $Id: UrlTag.java,v 1.121 2008/12/22 15:11:49 michiel Exp $
  */
 
 public class UrlTag extends CloudReferrerTag  implements  ParamHandler, 
FrameworkParamHandler {
@@ -156,7 +156,12 @@
         }
     }
 
-
+    /**
+     * @since MMBase-1.8.7
+     */
+    protected Collection<Map.Entry<String, Object>> getExtraParameters() {
+        return extraParameter.entrySet();
+    }
 
     protected void initTag(boolean internal) throws JspTagException {
         extraParameters = new HashMap<String, Object>();
_______________________________________________
Cvs mailing list
[email protected]
http://lists.mmbase.org/mailman/listinfo/cvs

Reply via email to