001 package org.jdesktop.swingx; 002 003 import java.beans.BeanDescriptor; 004 005 /** 006 * BeanInfo class for JXFindPanel. 007 * 008 * @author Jan Stola 009 */ 010 public class JXFindPanelBeanInfo extends BeanInfoSupport { 011 012 public JXFindPanelBeanInfo() { 013 super(JXFindPanel.class); 014 } 015 016 protected void initialize() { 017 BeanDescriptor bd = getBeanDescriptor(); 018 bd.setValue("isContainer", Boolean.FALSE); 019 } 020 021 }