Here you can find the source of getLabelValue(JLabel lbl)
protected static String getLabelValue(JLabel lbl)
//package com.java2s; //License from project: Open Source License import javax.swing.JLabel; public class Main { protected static String getLabelValue(JLabel lbl) { String ret = lbl.getText().trim(); if (!ret.equals("")) { return ret; }/* w w w . j av a 2s .c o m*/ return null; } }