summaryrefslogtreecommitdiff
path: root/java/apps/NexusII/classes/awtCommand/CTextArea.java
blob: eacaf5269296eded1ad9c1566b04cdd989c2b079 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
/*
 * Copyright 1996 Jan Newmarch, University of Canberra.
 * Permission to use, copy, modify, and distribute this
 * software and its documentation for any purpose and without
 * fee is hereby granted, provided that the above copyright
 * notice appear in all copies.  The author
 * makes no representations about the suitability of this
 * software for any purpose.  It is provided "as is" without
 * express or implied warranty.
 */

package awtCommand;

import java.awt.*;

public class CTextArea extends TextArea {
    
    protected Command gotFocusCommand = null,
		      lostFocusCommand = null;

    /**
     * Constructs a new TextArea.
     */
    public CTextArea() {
	super();
    }

    /**
     * Constructs a new TextArea with the specified number of rows and columns.
     * @param rows the number of rows
     * @param cols the number of columns
     */
    public CTextArea(int rows, int cols) {
	super(rows, cols);
    }

    /**
     * Constructs a new TextArea with the specified text displayed.
     * @param text the text to be displayed 
     */
    public CTextArea(String text) {
        super(text);
    }

    /**
     * Constructs a new TextArea with the specified text and the 
     * specified number of rows 
     * and columns.
     * @param text the text to be displayed
     * @param rows the number of rows
     * @param cols the number of cols
     */
    public CTextArea(String text, int rows, int cols) {
	super(text, rows, cols);
    }


    /**
     * Called when the text area gains the focus.
     * This results in a call to the gotFocusCommand object 
     * with <code>what</code> set to null.
     */
    public boolean gotFocus(Event evt, Object what) {
	if (gotFocusCommand != null)
            gotFocusCommand.execute(this, evt, what);
	return false;
    }

    /**
     * Called when the text area loses the focus.
     * This results in a call to the lostFocusCommand object 
     * with <code>what</code> set to null.
     */
    public boolean lostFocus(Event evt, Object what) {
	if (lostFocusCommand != null)
            lostFocusCommand.execute(this, evt, what);
	return false;
    }

   /**
    * Sets the gotFocusCommand object.
    */
    public void setGotFocusCommand(Command c) {
	gotFocusCommand = c;
    }

    /**
     * Sets the lostFocusCommand object.
     */
    public void setLostFocusCommand(Command c) {
	lostFocusCommand = c;
    }
}