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