convex.gui.components.BaseImageButton Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of convex-gui Show documentation
Show all versions of convex-gui Show documentation
Convex desktop GUI and test applications
The newest version!
package convex.gui.components;
import javax.swing.Icon;
import javax.swing.JButton;
@SuppressWarnings("serial")
public class BaseImageButton extends JButton {
public BaseImageButton(Icon icon) {
super(icon);
this.setAlignmentX(JButton.CENTER_ALIGNMENT);
}
}