Here you can find the source of getText(JTextField text)
public static String getText(JTextField text)
//package com.java2s; //License from project: Open Source License import javax.swing.JTextField; public class Main { public static String getText(JTextField text) { return text.getText(); }//from w w w . jav a 2 s . c o m }