001    package org.jdesktop.swingx.painter;
002    
003    import org.jdesktop.swingx.BeanInfoSupport;
004    
005    /**
006     * BeanInfo of RectanglePainter.
007     *
008     * @author joshy, Jan Stola
009     */
010    public class RectanglePainterBeanInfo extends BeanInfoSupport {
011        
012        /** Creates a new instance of RectanglePainterBeanInfo */
013        public RectanglePainterBeanInfo() {
014            super(RectanglePainter.class);
015        }
016        
017        protected void initialize() {
018            setPreferred(true, "roundHeight", "roundWidth", "rounded");
019        }
020    
021    }