
org.jdesktop.swingx.painter.effects.AbstractPathEffectBeanInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of swingx Show documentation
Show all versions of swingx Show documentation
Contains extensions to the Swing GUI toolkit, including new and enhanced components that provide functionality commonly required by rich client applications.
The newest version!
/*
* ShapeEffectBeanInfo.java
*
* Created on August 23, 2006, 4:54 PM
*
* To change this template, choose Tools | Template Manager
* and open the template in the editor.
*/
package org.jdesktop.swingx.painter.effects;
import org.jdesktop.swingx.BeanInfoSupport;
import org.jdesktop.swingx.editors.Paint2PropertyEditor;
/**
*
* @author joshy
*/
public class AbstractPathEffectBeanInfo extends BeanInfoSupport {
/** Creates a new instance of ShapeEffectBeanInfo */
public AbstractPathEffectBeanInfo() {
super(AbstractAreaEffect.class);
}
@Override
protected void initialize() {
setHidden(true, "class");
setPropertyEditor(Paint2PropertyEditor.class, "brushColor");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy