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

org.jdesktop.swingx.painter.ShapePainterBeanInfo Maven / Gradle / Ivy

package org.jdesktop.swingx.painter;

import org.jdesktop.beans.BeanInfoSupport;
import org.jdesktop.beans.editors.ShapePropertyEditor;

/**
 * BeanInfo of ShapePainter.
 *
 * @author joshy, Jan Stola
 */
public class ShapePainterBeanInfo extends BeanInfoSupport {
    
    /** Creates a new instance of ShapePainterBeanInfo */
    public ShapePainterBeanInfo() {
        super(ShapePainter.class);
    }
    
    @Override
    protected void initialize() {
        setPropertyEditor(ShapePropertyEditor.class, "shape");
        setPreferred(true, "shape");
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy