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