Here you can find the source of findButtonComponents(Container container, String label)
public static JButton findButtonComponents(Container container, String label)
//package com.java2s; //License from project: LGPL import java.awt.Component; import java.awt.Container; import javax.swing.JButton; public class Main { public static JButton findButtonComponents(Container container, String label) { for (Component c : container.getComponents()) { if (c instanceof JButton) { final JButton button = (JButton) c; if (button.getText().equalsIgnoreCase(label)) return button; }//from w w w .j av a 2 s. co m } return null; } }