001 /* 002 * ShapeEffectBeanInfo.java 003 * 004 * Created on August 23, 2006, 4:54 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.effects; 011 012 import org.jdesktop.swingx.BeanInfoSupport; 013 import org.jdesktop.swingx.editors.Paint2PropertyEditor; 014 import org.jdesktop.swingx.painter.effects.*; 015 016 /** 017 * 018 * @author joshy 019 */ 020 public class AbstractPathEffectBeanInfo extends BeanInfoSupport { 021 022 /** Creates a new instance of ShapeEffectBeanInfo */ 023 public AbstractPathEffectBeanInfo() { 024 super(AbstractAreaEffect.class); 025 } 026 027 protected void initialize() { 028 setHidden(true, "class"); 029 setPropertyEditor(Paint2PropertyEditor.class, "brushColor"); 030 } 031 032 }