01: package net.matuschek.swing;
02:
03: /*********************************************
04: Copyright (c) 2001 by Daniel Matuschek
05: *********************************************/
06:
07: import javax.swing.*;
08:
09: /**
10: * Some Swing helper functions (mostly static)
11: *
12: * @author Daniel Matuschek
13: * @version $Revision: 1.4 $
14: */
15: public class SwingHelper {
16:
17: /**
18: * create a simple JTextField input field with a given length
19: */
20: public static JTextField createInputField(int length) {
21: JTextField field = new JTextField();
22: field.setColumns(length);
23: return field;
24: }
25:
26: } // SwingHelper
|