All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jdesktop.swingx.painter.effects.AbstractPathEffectBeanInfo Maven / Gradle / Ivy

/*
 * 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.beans.BeanInfoSupport;
import org.jdesktop.beans.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