Here you can find the source of upperText(JTextField text)
public static String upperText(JTextField text)
//package com.java2s; //License from project: Open Source License import javax.swing.JTextField; public class Main { public static String upperText(JTextField text) { String str = text.getText().toUpperCase(); text.setText(str);/*w ww.j a v a2s . com*/ return str; } public static String getText(JTextField text) { return text.getText(); } }