|
Java Platform 1.2 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--java.awt.Component | +--java.awt.TextComponent | +--java.awt.TextField
A TextField
object is a text component
that allows for the editing of a single line of text.
For example, the following image depicts a frame with four
text fields of varying widths. Two of these text fields
display the predefined text "Hello"
.
Here is the code that produces these four text fields:
TextField tf1, tf2, tf3, tf4; // a blank text field tf1 = new TextField(); // blank field of 20 columns tf2 = new TextField("", 20); // predefined text displayed tf3 = new TextField("Hello!"); // predefined text in 30 columns tf4 = new TextField("Hello", 30);
Every time the user types a key in the text field, AWT sends two action events to the text field. The first one represents the key press and the second one, the key release. Each action event embodies the state of the system at the time that some action occurred. The properties of an action event indicate which key was pressed, what modifier keys were also pressed, and the time at which the event occurred.
Since the event is an instance of ActionEvent
,
the TextField
class's processEvent
method examines the event and passes it along to
processActionEvent
. The latter method redirects the
event to any ActionListener
objects that have
registered an interest in action events generated by this
text field.
ActionEvent
,
processEvent(java.awt.AWTEvent)
,
processActionEvent(java.awt.event.ActionEvent)
, Serialized FormFields inherited from class java.awt.TextComponent |
textListener |
Fields inherited from class java.awt.Component |
BOTTOM_ALIGNMENT,
CENTER_ALIGNMENT,
LEFT_ALIGNMENT,
RIGHT_ALIGNMENT,
TOP_ALIGNMENT |
Constructor Summary | |
TextField()
Constructs a new text field. |
|
TextField(int columns)
Constructs a new empty TextField with the specified number of columns. |
|
TextField(String text)
Constructs a new text field initialized with the specified text. |
|
TextField(String text,
int columns)
Constructs a new text field initialized with the specified text to be displayed, and wide enough to hold the specified number of columns. |
Method Summary | |
void |
addActionListener(ActionListener l)
Adds the specified action listener to recieve action events from this text field. |
void |
addNotify()
Creates the TextField's peer. |
boolean |
echoCharIsSet()
Indicates whether or not this text field has a character set for echoing. |
int |
getColumns()
Gets the number of columns in this text field. |
char |
getEchoChar()
Gets the character that is to be used for echoing. |
Dimension |
getMinimumSize()
Gets the minumum dimensions for this text field. |
Dimension |
getMinimumSize(int columns)
Gets the minumum dimensions for a text field with the specified number of columns. |
Dimension |
getPreferredSize()
Gets the preferred size of this text field. |
Dimension |
getPreferredSize(int columns)
Gets the preferred size of this text field with the specified number of columns. |
Dimension |
minimumSize()
Deprecated. As of JDK version 1.1, replaced by getMinimumSize() . |
Dimension |
minimumSize(int columns)
Deprecated. As of JDK version 1.1, replaced by getMinimumSize(int) . |
protected String |
paramString()
Returns the parameter string representing the state of this text field. |
Dimension |
preferredSize()
Deprecated. As of JDK version 1.1, replaced by getPreferredSize() . |
Dimension |
preferredSize(int columns)
Deprecated. As of JDK version 1.1, replaced by getPreferredSize(int) . |
protected void |
processActionEvent(ActionEvent e)
Processes action events occurring on this text field by dispatching them to any registered ActionListener objects. |
protected void |
processEvent(AWTEvent e)
Processes events on this text field. |
void |
removeActionListener(ActionListener l)
Removes the specified action listener so that it no longer receives action events from this text field. |
void |
setColumns(int columns)
Sets the number of columns in this text field. |
void |
setEchoChar(char c)
Sets the echo character for this text field. |
void |
setEchoCharacter(char c)
Deprecated. As of JDK version 1.1, replaced by setEchoChar(char) . |
void |
setText(String t)
Sets the text that is presented by this text component to be the specified text. |
Methods inherited from class java.awt.TextComponent |
addTextListener,
getCaretPosition,
getSelectedText,
getSelectionEnd,
getSelectionStart,
getText,
isEditable,
processTextEvent,
removeNotify,
removeTextListener,
select,
selectAll,
setCaretPosition,
setEditable,
setSelectionEnd,
setSelectionStart |
Methods inherited from class java.lang.Object |
clone,
equals,
finalize,
getClass,
hashCode,
notify,
notifyAll,
wait,
wait,
wait |
Constructor Detail |
public TextField()
public TextField(String text)
text
- the text to be displayed. If
text
is null
, the empty
string ""
will be displayed.public TextField(int columns)
columns
- the number of columnspublic TextField(String text, int columns)
text
- the text to be displayed. If
text
is null
, the empty
string ""
will be displayed.columns
- the number of columns.Method Detail |
public void addNotify()
public char getEchoChar()
An echo character is useful for text fields where user input should not be echoed to the screen, as in the case of a text field for entering a password.
echoCharIsSet()
,
setEchoChar(char)
public void setEchoChar(char c)
An echo character is useful for text fields where user input should not be echoed to the screen, as in the case of a text field for entering a password.
c
- the echo character for this text field.echoCharIsSet()
,
getEchoChar()
public void setEchoCharacter(char c)
setEchoChar(char)
.public void setText(String t)
t
- the new text.TextComponent.getText()
public boolean echoCharIsSet()
An echo character is useful for text fields where user input should not be echoed to the screen, as in the case of a text field for entering a password.
true
if this text field has
a character set for echoing;
false
otherwise.setEchoChar(char)
,
getEchoChar()
public int getColumns()
setColumns(int)
public void setColumns(int columns)
columns
- the number of columns.columns
is less than zero.getColumns()
public Dimension getPreferredSize(int columns)
columns
- the number of columns
in this text field.public Dimension preferredSize(int columns)
getPreferredSize(int)
.public Dimension getPreferredSize()
public Dimension preferredSize()
getPreferredSize()
.public Dimension getMinimumSize(int columns)
columns
- the number of columns in
this text field.public Dimension minimumSize(int columns)
getMinimumSize(int)
.public Dimension getMinimumSize()
public Dimension minimumSize()
getMinimumSize()
.public void addActionListener(ActionListener l)
l
- the action listener.removeActionListener(java.awt.event.ActionListener)
public void removeActionListener(ActionListener l)
l
- the action listener.addActionListener(java.awt.event.ActionListener)
protected void processEvent(AWTEvent e)
ActionEvent
,
it invokes the processActionEvent
method. Otherwise, it invokes processEvent
on the superclass.e
- the event.ActionEvent
,
processActionEvent(java.awt.event.ActionEvent)
protected void processActionEvent(ActionEvent e)
ActionListener
objects.
This method is not called unless action events are enabled for this component. Action events are enabled when one of the following occurs:
ActionListener
object is registered
via addActionListener
.
enableEvents
.
e
- the action event.ActionListener
,
addActionListener(java.awt.event.ActionListener)
,
Component.enableEvents(long)
protected String paramString()
|
Java Platform 1.2 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |