Here you can find the source of getIntValue(JTextField component)
public static int getIntValue(JTextField component)
//package com.java2s; // LICENSE: This file is distributed under the BSD license. import javax.swing.*; public class Main { public static int getIntValue(JTextField component) { return Integer.parseInt(component.getText()); }/* ww w .ja v a 2 s . c o m*/ }