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

convex.gui.components.BaseImageButton Maven / Gradle / Ivy

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);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy