001 /* 002 * LinearGradientPainterBeanInfo.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.gradient; 011 012 import org.jdesktop.swingx.BeanInfoSupport; 013 014 /** 015 * 016 * @author Richard 017 */ 018 public class LinearGradientPainterBeanInfo extends BeanInfoSupport { 019 020 /** Creates a new instance of LinearGradientPainterBeanInfo */ 021 public LinearGradientPainterBeanInfo() { 022 super(LinearGradientPainter.class); 023 } 024 025 protected void initialize() { 026 setHidden(true, "class", "propertyChangeListeners"); 027 } 028 029 // protected Class getCustomizerClass() { 030 // return TestCustomizer.class; 031 // } 032 }