Here you can find the source of cleanTextFields(JTextField... textFields)
public static void cleanTextFields(JTextField... textFields)
//package com.java2s; //License from project: Open Source License import javax.swing.JTextField; public class Main { public static void cleanTextFields(JTextField... textFields) { for (JTextField textField : textFields) textField.setText(null);/*from ww w.ja v a 2 s.c om*/ } }