|
JavaTM 2 Platform Std. Ed. v1.3.1 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--java.awt.Component | +--java.awt.Container | +--javax.swing.JComponent | +--javax.swing.text.JTextComponent | +--javax.swing.JTextField
JTextField is a lightweight component that allows the editing of a single line of text. For information on and examples of using text fields, see How to Use Text Fields in The Java Tutorial.
JTextField is intended to be source-compatible with java.awt.TextField where it is reasonable to do so. This component has capabilities not found in the java.awt.TextField class. The superclass should be consulted for additional capabilities.
JTextField has a method to establish the string used as the
command string for the action event that gets fired. The
java.awt.TextField used the text of the field as the command
string for the ActionEvent. JTextField will use the command
string set with the setActionCommand
method if not null,
otherwise it will use the text of the field as a compatibility with
java.awt.TextField.
The method setEchoChar
and getEchoChar
are not provided directly to avoid a new implementation of a
pluggable look-and-feel inadvertently exposing password characters.
To provide password-like services a separate class JPasswordField
extends JTextField to provide this service with an independently
pluggable look-and-feel.
The java.awt.TextField could be monitored for changes by adding a TextListener for TextEvent's. In the JTextComponent based components, changes are broadcasted from the model via a DocumentEvent to DocumentListeners. The DocumentEvent gives the location of the change and the kind of change if desired. The code fragment might look something like:
DocumentListener myListener = ??;
JTextField myArea = ??;
myArea.getDocument().addDocumentListener(myListener);
The horizontal alignment of JTextField can be set to be left
justified, leading justified, centered, right justified or trailing justified.
Right/trailing justification is useful if the required size
of the field text is smaller than the size allocated to it.
This is determined by the setHorizontalAlignment
and getHorizontalAlignment
methods. The default
is to be leading justified.
For the keyboard keys used by this component in the standard Look and Feel (L&F) renditions, see the JTextField key assignments.
How the text field consumes VK_ENTER events depends on whether the text field has any action listeners. If so, then VK_ENTER results in the listeners getting an ActionEvent, and the VK_ENTER event is consumed. This is compatible with how AWT text fields handle VK_ENTER events. If the text field has no action listeners, then as of v 1.3 the VK_ENTER event is not consumed. Instead, the bindings of ancestor components are processed, which enables the default button feature of JFC/Swing to work.
Customized fields can easily be created by extending the model and changing the default model provided. For example, the following piece of code will create a field that holds only upper case characters. It will work even if text is pasted into from the clipboard or it is altered via programmatic changes.
public class UpperCaseField extends JTextField {
public UpperCaseField(int cols) {
super(cols);
}
protected Document createDefaultModel() {
return new UpperCaseDocument();
}
static class UpperCaseDocument extends PlainDocument {
public void insertString(int offs, String str, AttributeSet a)
throws BadLocationException {
if (str == null) {
return;
}
char[] upper = str.toCharArray();
for (int i = 0; i < upper.length; i++) {
upper[i] = Character.toUpperCase(upper[i]);
}
super.insertString(offs, new String(upper), a);
}
}
}
Warning: Serialized objects of this class will not be compatible with future Swing releases. The current serialization support is appropriate for short term storage or RMI between applications running the same version of Swing. A future release of Swing will provide support for long term persistence.
setActionCommand(java.lang.String)
,
JPasswordField
,
addActionListener(java.awt.event.ActionListener)
, Serialized FormInner Class Summary | |
protected class |
JTextField.AccessibleJTextField
This class implements accessibility support for the JTextField class. |
Inner classes inherited from class javax.swing.text.JTextComponent |
JTextComponent.AccessibleJTextComponent, JTextComponent.KeyBinding |
Inner classes inherited from class javax.swing.JComponent |
JComponent.AccessibleJComponent |
Inner classes inherited from class java.awt.Container |
Container.AccessibleAWTContainer |
Inner classes inherited from class java.awt.Component |
Component.AccessibleAWTComponent |
Field Summary | |
static String |
notifyAction
Name of the action to send notification that the contents of the field have been accepted. |
Fields inherited from class javax.swing.text.JTextComponent |
DEFAULT_KEYMAP, FOCUS_ACCELERATOR_KEY |
Fields inherited from class javax.swing.JComponent |
accessibleContext, listenerList, TOOL_TIP_TEXT_KEY, ui, UNDEFINED_CONDITION, WHEN_ANCESTOR_OF_FOCUSED_COMPONENT, WHEN_FOCUSED, WHEN_IN_FOCUSED_WINDOW |
Fields inherited from class java.awt.Component |
BOTTOM_ALIGNMENT, CENTER_ALIGNMENT, LEFT_ALIGNMENT, RIGHT_ALIGNMENT, TOP_ALIGNMENT |
Fields inherited from interface javax.swing.SwingConstants |
BOTTOM, CENTER, EAST, HORIZONTAL, LEADING, LEFT, NORTH, NORTH_EAST, NORTH_WEST, RIGHT, SOUTH, SOUTH_EAST, SOUTH_WEST, TOP, TRAILING, VERTICAL, WEST |
Fields inherited from interface java.awt.image.ImageObserver |
ABORT, ALLBITS, ERROR, FRAMEBITS, HEIGHT, PROPERTIES, SOMEBITS, WIDTH |
Constructor Summary | |
JTextField()
Constructs a new TextField. |
|
JTextField(Document doc,
String text,
int columns)
Constructs a new JTextField that uses the given text storage model and the given number of columns. |
|
JTextField(int columns)
Constructs a new empty TextField with the specified number of columns. |
|
JTextField(String text)
Constructs a new TextField initialized with the specified text. |
|
JTextField(String text,
int columns)
Constructs a new TextField initialized with the specified text and columns. |
Method Summary | |
void |
addActionListener(ActionListener l)
Adds the specified action listener to receive action events from this textfield. |
protected void |
configurePropertiesFromAction(Action a)
Factory method which sets the ActionEvent source's properties according to values from the Action instance. |
protected PropertyChangeListener |
createActionPropertyChangeListener(Action a)
Factory method which creates the PropertyChangeListener used to update the ActionEvent source as properties change on its Action instance. |
protected Document |
createDefaultModel()
Creates the default implementation of the model to be used at construction if one isn't explicitly given. |
protected void |
fireActionPerformed()
Notifies all listeners that have registered interest for notification on this event type. |
AccessibleContext |
getAccessibleContext()
Gets the AccessibleContext associated with this JTextField. |
Action |
getAction()
Returns the currently set Action for this ActionEvent source, or null if no Action is set. |
Action[] |
getActions()
Fetches the command list for the editor. |
int |
getColumns()
Returns the number of columns in this TextField. |
protected int |
getColumnWidth()
Gets the column width. |
int |
getHorizontalAlignment()
Returns the horizontal alignment of the text. |
BoundedRangeModel |
getHorizontalVisibility()
Gets the visibility of the text field. |
Dimension |
getPreferredSize()
Returns the preferred size Dimensions needed for this TextField. |
int |
getScrollOffset()
Gets the scroll offset. |
String |
getUIClassID()
Gets the class ID for a UI. |
boolean |
isValidateRoot()
Calls to revalidate that come from within the textfield itself will be handled by validating the textfield, unless the receiver is contained within a JViewport, in which case this returns false. |
protected String |
paramString()
Returns a string representation of this JTextField. |
void |
postActionEvent()
Processes action events occurring on this textfield by dispatching them to any registered ActionListener objects. |
void |
removeActionListener(ActionListener l)
Removes the specified action listener so that it no longer receives action events from this textfield. |
void |
scrollRectToVisible(Rectangle r)
Scrolls the field left or right. |
void |
setAction(Action a)
Sets the Action for the ActionEvent source. |
void |
setActionCommand(String command)
Sets the command string used for action events. |
void |
setColumns(int columns)
Sets the number of columns in this TextField, and then invalidate the layout. |
void |
setFont(Font f)
Sets the current font. |
void |
setHorizontalAlignment(int alignment)
Sets the horizontal alignment of the text. |
void |
setScrollOffset(int scrollOffset)
Sets the scroll offset. |
Methods inherited from class java.awt.Container |
add, add, add, add, add, addContainerListener, addImpl, countComponents, deliverEvent, doLayout, findComponentAt, findComponentAt, getComponent, getComponentAt, getComponentAt, getComponentCount, getComponents, getLayout, insets, invalidate, isAncestorOf, layout, list, list, locate, minimumSize, paintComponents, preferredSize, printComponents, processContainerEvent, processEvent, remove, remove, removeAll, removeContainerListener, setLayout, validate, validateTree |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
public static final String notifyAction
Constructor Detail |
public JTextField()
public JTextField(String text)
text
- the text to be displayed, or nullpublic JTextField(int columns)
columns
- the number of columns to use to calculate
the preferred width. If columns is set to zero, the
preferred width will be whatever naturally results from
the component implementation.public JTextField(String text, int columns)
text
- the text to be displayed, or nullcolumns
- the number of columns to use to calculate
the preferred width. If columns is set to zero, the
preferred width will be whatever naturally results from
the component implementation.public JTextField(Document doc, String text, int columns)
doc
- the text storage to use. If this is null, a default
will be provided by calling the createDefaultModel method.text
- the initial string to display, or nullcolumns
- the number of columns to use to calculate
the preferred width >= 0. If columns is set to zero, the
preferred width will be whatever naturally results from
the component implementation.IllegalArgumentException
- if columns < 0Method Detail |
public String getUIClassID()
getUIClassID
in class JComponent
JComponent.getUIClassID()
,
UIDefaults.getUI(javax.swing.JComponent)
public boolean isValidateRoot()
isValidateRoot
in class JComponent
JComponent.revalidate()
,
JComponent.isValidateRoot()
public int getHorizontalAlignment()
public void setHorizontalAlignment(int alignment)
alignment
- the alignmentIllegalArgumentException
- if the alignment
specified is not a valid key.protected Document createDefaultModel()
public int getColumns()
public void setColumns(int columns)
columns
- the number of columns >= 0IllegalArgumentException
- if columns is less than 0protected int getColumnWidth()
public Dimension getPreferredSize()
getPreferredSize
in class JComponent
public void setFont(Font f)
setFont
in class JComponent
f
- the new fontpublic void addActionListener(ActionListener l)
l
- the action listenerpublic void removeActionListener(ActionListener l)
l
- the action listenerprotected void fireActionPerformed()
EventListenerList
public void setActionCommand(String command)
command
- the command stringpublic void setAction(Action a)
a
- the Action for the JTextField, or null.Action
,
getAction()
,
configurePropertiesFromAction(javax.swing.Action)
,
createActionPropertyChangeListener(javax.swing.Action)
public Action getAction()
Action
,
setAction(javax.swing.Action)
protected void configurePropertiesFromAction(Action a)
a
- the Action from which to get the properties, or nullAction
,
setAction(javax.swing.Action)
protected PropertyChangeListener createActionPropertyChangeListener(Action a)
Action
,
setAction(javax.swing.Action)
public Action[] getActions()
getActions
in class JTextComponent
public void postActionEvent()
public BoundedRangeModel getHorizontalVisibility()
BoundedRangeModel
public int getScrollOffset()
public void setScrollOffset(int scrollOffset)
scrollOffset
- the offset >= 0public void scrollRectToVisible(Rectangle r)
scrollRectToVisible
in class JComponent
r
- the region to scrollprotected String paramString()
null
.paramString
in class JTextComponent
public AccessibleContext getAccessibleContext()
getAccessibleContext
in class JTextComponent
|
JavaTM 2 Platform Std. Ed. v1.3.1 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
Java, Java 2D, and JDBC are trademarks or registered trademarks of Sun Microsystems, Inc. in the US and other countries.
Copyright 1993-2001 Sun Microsystems, Inc. 901 San Antonio Road
Palo Alto, California, 94303, U.S.A. All Rights Reserved.