001 /*
002 * CompoundPainterBeanInfo.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 CompoundPainterBeanInfo extends BeanInfoSupport {
019
020 /** Creates a new instance of CompoundPainterBeanInfo */
021 public CompoundPainterBeanInfo() {
022 super(CompoundPainter.class);
023 }
024
025 protected void initialize() {
026 setPreferred(true, "painters");
027 setHidden(true, "class", "propertyChangeListeners");
028 }
029 }