OK. the answer is:

CorePortalNode root = Navigation.getCurrentNode();
Map hm =  root.getProperties();   // WINDOW PROPERTIES MAP
Set serta = hm.entrySet();
                Iterator itr = serta.iterator();
                
                while(itr.hasNext()){
                        Entry entry = (Entry)itr.next();
                        out.write("Properties:" + entry.getKey() + "=" + 
entry.getValue()+ "");
                }

Hooooraaaay!!!
Enjoy unlimited architecture designs!!!


View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4061704#4061704

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4061704
_______________________________________________
jboss-user mailing list
[email protected]
https://lists.jboss.org/mailman/listinfo/jboss-user

Reply via email to