# This patch can be applied using context Tools: Patch action on respective folder. # It uses platform neutral UTF-8 encoding and \n newlines. # Above lines and this line are ignored by the patching process. Index: j2ee.sun.ddui/src/org/netbeans/modules/j2ee/sun/ddloaders/multiview/common/NamedBeanGroupNode.java --- j2ee.sun.ddui/src/org/netbeans/modules/j2ee/sun/ddloaders/multiview/common/NamedBeanGroupNode.java Base (BASE) +++ j2ee.sun.ddui/src/org/netbeans/modules/j2ee/sun/ddloaders/multiview/common/NamedBeanGroupNode.java Locally Modified (Based On LOCAL) @@ -545,7 +545,7 @@ DDBinding binding = ((NamedBeanNode) parentNode).getBinding(); if(binding != null) { parentName = binding.isBound() ? binding.getBindingName() : binding.getBeanName(); - if(parentName.length() == 0) { + if(parentName == null || parentName.length() == 0) { parentName = null; } }