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

org.jdesktop.swingx.JXButtonBeanInfo Maven / Gradle / Ivy

package org.jdesktop.swingx;

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

/**
 * BeanInfo class for JXButton.
 * 
 * @author Jan Stola
 */
public class JXButtonBeanInfo extends BeanInfoSupport {

    public JXButtonBeanInfo() {
        super(JXButton.class);        
    }
    
    @Override
    protected void initialize() {
        setPreferred(true, "backgroundPainter", "foregroundPainter");
        setPropertyEditor(PainterPropertyEditor.class, "backgroundPainter");
        setPropertyEditor(PainterPropertyEditor.class, "foregroundPainter");
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy