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