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

examples.button.ButtonDialog Maven / Gradle / Ivy

The newest version!
package examples.button;

import java.awt.event.ActionEvent;

import javax.swing.JDialog;
import javax.swing.JToggleButton;

import org.jdesktop.application.Action;

@SuppressWarnings("serial")
public class ButtonDialog extends JDialog {
	JToggleButton toggleButton;

	@Action
	public void onCLick( ActionEvent e ) {
	
		System.out.println( e );
	}

	@Action
	public void close() {
	
		System.out.println( "close" );
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy