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

net.sf.javagimmicks.swing.builder.ButtonBuilder Maven / Gradle / Ivy

package net.sf.javagimmicks.swing.builder;

import java.awt.event.ActionListener;

import javax.swing.JButton;


public class ButtonBuilder

> extends ComponentBuilder { ButtonBuilder(P parentBuilder, JButton component) { super(parentBuilder, component); } public ButtonBuilder

text(String text) { get().setText(text); return this; } public ButtonBuilder

actionListener(ActionListener listener) { get().addActionListener(listener); return this; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy