001 package org.jdesktop.swingx; 002 003 /** 004 * BeanInfo class for JXButton. 005 * 006 * @author Jan Stola 007 */ 008 public class JXButtonBeanInfo extends BeanInfoSupport { 009 010 public JXButtonBeanInfo() { 011 super(JXButton.class); 012 } 013 014 protected void initialize() { 015 setPreferred(true, "backgroundPainter", "foregroundPainter"); 016 } 017 }