java.awt.peer
Interface TextFieldPeer

All Superinterfaces:
ComponentPeer, TextComponentPeer

public interface TextFieldPeer
extends TextComponentPeer

Disabled: no SafeJ information.

The peer interface for TextField. The peer interfaces are intended only for use in porting the AWT. They are not intended for use by application developers, and developers should not implement peers nor invoke any of the peer methods directly on the peer instances.


Field Summary
 
Fields inherited from interface java.awt.peer.ComponentPeer
DEFAULT_OPERATION, NO_EMBEDDED_CHECK, RESET_OPERATION, SET_BOUNDS, SET_CLIENT_SIZE, SET_LOCATION, SET_SIZE
 
Method Summary
 Dimension getMinimumSize(int columns)
          Returns the minimum size of the text field with the specified number of columns.
 Dimension getPreferredSize(int columns)
          Returns the preferred size of the text field with the specified number of columns.
 void setEchoChar(char echoChar)
          Sets the echo character.
 
Methods inherited from interface java.awt.peer.TextComponentPeer
getCaretPosition, getInputMethodRequests, getSelectionEnd, getSelectionStart, getText, select, setCaretPosition, setEditable, setText
 
Methods inherited from interface java.awt.peer.ComponentPeer
applyShape, canDetermineObscurity, checkImage, coalescePaintEvent, createBuffers, createImage, createImage, createVolatileImage, destroyBuffers, dispose, flip, getBackBuffer, getColorModel, getFontMetrics, getGraphics, getGraphicsConfiguration, getLocationOnScreen, getMinimumSize, getPreferredSize, getToolkit, handleEvent, handlesWheelScrolling, isFocusable, isObscured, isReparentSupported, layout, paint, prepareImage, print, reparent, requestFocus, setBackground, setBounds, setEnabled, setFont, setForeground, setVisible, setZOrder, updateCursorImmediately, updateGraphicsData
 

Method Detail

setEchoChar

void setEchoChar(char echoChar)
Class is disabled.

Sets the echo character.

Parameters:
echoChar - the echo character to set
See Also:
TextField.getEchoChar()

getPreferredSize

Dimension getPreferredSize(int columns)
Class is disabled.

Returns the preferred size of the text field with the specified number of columns.

Parameters:
columns - the number of columns
Returns:
the preferred size of the text field
See Also:
TextField.getPreferredSize(int)

getMinimumSize

Dimension getMinimumSize(int columns)
Class is disabled.

Returns the minimum size of the text field with the specified number of columns.

Parameters:
columns - the number of columns
Returns:
the minimum size of the text field
See Also:
TextField.getMinimumSize(int)