[jboss-user] [JBoss Portal] - Re: How to access in code to the Window Properties map in do
nystaa
do-not-reply at jboss.com
Sun Jul 8 09:32:51 EDT 2007
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
More information about the jboss-user
mailing list