Here you can find the source of createButton(Action action)
private static JButton createButton(Action action)
//package com.java2s; //License from project: Open Source License import javax.swing.Action; import javax.swing.JButton; import javax.swing.Icon; public class Main { private static JButton createButton(String text, Icon icon) { return new JButton(text, icon); }/*w w w.j a va2s . c om*/ private static JButton createButton(Action action) { return new JButton(action); } }