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

Modified Files:
        RelatedNodesTag.java 
Log Message:
configured some attributes to be 'emnpty ~ absent'


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


Index: RelatedNodesTag.java
===================================================================
RCS file: 
/var/cvs/applications/taglib/src/org/mmbase/bridge/jsp/taglib/RelatedNodesTag.java,v
retrieving revision 1.40
retrieving revision 1.41
diff -u -b -r1.40 -r1.41
--- RelatedNodesTag.java        10 Feb 2007 16:49:27 -0000      1.40
+++ RelatedNodesTag.java        24 Jul 2008 08:08:30 -0000      1.41
@@ -24,7 +24,7 @@
  * @author Michiel Meeuwissen
  * @author Pierre van Rooden
  * @author Jaco de Groot
- * @version $Id: RelatedNodesTag.java,v 1.40 2007/02/10 16:49:27 nklasens Exp $
+ * @version $Id: RelatedNodesTag.java,v 1.41 2008/07/24 08:08:30 michiel Exp $
  */
 public class RelatedNodesTag extends AbstractNodeListTag {
 
@@ -45,13 +45,13 @@
      * @param type a nodeManager
      */
     public void setType(String type) throws JspTagException {
-        this.type = getAttribute(type);
+        this.type = getAttribute(type, true);
     }
     /**
      * @param role a role
      */
     public void setRole(String role) throws JspTagException {
-        this.role = getAttribute(role);
+        this.role = getAttribute(role, true);
     }
 
     /**
@@ -68,19 +68,19 @@
      * @since MMBase-1.7.1
      */
     public void setPath(String p) throws JspTagException {
-        path = getAttribute(p);
+        path = getAttribute(p, true);
     }
     /**
      * @since MMBase-1.7.1
      */
     public void setElement(String e) throws JspTagException {
-        element = getAttribute(e);
+        element = getAttribute(e, true);
     }
     /**
      * @since MMBase-1.7.1
      */
     public void setSearchdirs(String s) throws JspTagException {
-        searchDirs = getAttribute(s);
+        searchDirs = getAttribute(s, true);
     }
 
     /**
_______________________________________________
Cvs mailing list
[email protected]
http://lists.mmbase.org/mailman/listinfo/cvs

Reply via email to