001    /*
002     * BackgroundPainterBeanInfo.java
003     *
004     * Created on March 21, 2006, 12:10 PM
005     *
006     * To change this template, choose Tools | Template Manager
007     * and open the template in the editor.
008     */
009    
010    package org.jdesktop.swingx.painter;
011    
012    import org.jdesktop.swingx.BeanInfoSupport;
013    
014    /**
015     *
016     * @author Richard
017     */
018    public class BackgroundPainterBeanInfo extends BeanInfoSupport {
019        
020        /** Creates a new instance of BackgroundPainterBeanInfo */
021        public BackgroundPainterBeanInfo() {
022            super(BackgroundPainter.class);
023        }
024    
025        protected void initialize() {
026            setHidden(true, "class", "propertyChangeListeners");
027        }
028    }