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