01: package com.calipso.reportgenerator.userinterface;
02:
03: import com.calipso.reportgenerator.common.InfoException;
04:
05: import javax.swing.*;
06: import javax.swing.text.Document;
07:
08: /**
09: *
10: * User: soliveri
11: * Date: Dec 10, 2003
12: * Time: 1:36:06 PM
13: *
14: */
15:
16: public abstract class UserParameterTextField extends JTextField {
17:
18: public UserParameterTextField() {
19: }
20:
21: public UserParameterTextField(String text) {
22: super (text);
23: }
24:
25: public UserParameterTextField(int columns) {
26: super (columns);
27: }
28:
29: public UserParameterTextField(String text, int columns) {
30: super (text, columns);
31: }
32:
33: public UserParameterTextField(Document doc, String text, int columns) {
34: super (doc, text, columns);
35: }
36:
37: public abstract Object getFieldText() throws InfoException;
38: }
|