Here you can find the source of getInt(JTextField tf)
public static int getInt(JTextField tf)
//package com.java2s; //License from project: Apache License import javax.swing.JTextField; public class Main { public static int getInt(JTextField tf) { return Integer.parseInt(tf.getText()); }//from w w w . ja v a 2s. co m }