*/
public class CleanBeanNode<T> extends BeanNode<T> {
public CleanBeanNode(T o,
final HashMap<String, Class<? extends PropertyEditor>> editors,
String displayName) throws IntrospectionException {
super(o, o instanceof BeanContext ? new BeanChildren((BeanContext)o,
new BeanChildren.Factory() {
public Node createNode(Object bean) throws IntrospectionException {
return new CleanBeanNode<Object>(bean, editors, null);
}
}) : null);