| |
|
| java.lang.Object java.awt.Component java.awt.TextComponent
All known Subclasses: java.awt.TextField, java.awt.TextArea,
TextComponent | public class TextComponent extends Component implements Accessible(Code) | | The TextComponent class is the superclass of
any component that allows the editing of some text.
A text component embodies a string of text. The
TextComponent class defines a set of methods
that determine whether or not this text is editable. If the
component is editable, it defines another set of methods
that supports a text insertion caret.
In addition, the class defines methods that are used
to maintain a current selection from the text.
The text selection, a substring of the component's text,
is the target of editing operations. It is also referred
to as the selected text.
version: 1.97, 05/05/07 author: Sami Shaio author: Arthur van Hoff since: JDK1.0 |
Constructor Summary | |
| TextComponent(String text) Constructs a new text component initialized with the
specified text. |
Method Summary | |
public void | addNotify() Makes this Component displayable by connecting it to a
native screen resource. | public synchronized void | addTextListener(TextListener l) Adds the specified text event listener to receive text events
from this text component. | boolean | areInputMethodsEnabled() | public void | enableInputMethods(boolean enable) Enables or disables input method support for this text component. | boolean | eventEnabled(AWTEvent e) | public AccessibleContext | getAccessibleContext() Gets the AccessibleContext associated with this TextComponent. | public Color | getBackground() Gets the background color of this text component.
By default, non-editable text components have a background color
of SystemColor.control. | public synchronized int | getCaretPosition() Returns the position of the text insertion caret. | Rectangle | getCharacterBounds(int i) | int | getIndexAtPoint(Point p) | public InputMethodRequests | getInputMethodRequests() | public T[] | getListeners(Class<T> listenerType) Returns an array of all the objects currently registered
as FooListener s
upon this TextComponent . | public synchronized String | getSelectedText() Returns the selected text from the text that is
presented by this text component. | public synchronized int | getSelectionEnd() Gets the end position of the selected text in
this text component. | public synchronized int | getSelectionStart() Gets the start position of the selected text in
this text component. | public synchronized String | getText() Returns the text that is presented by this text component. | public synchronized TextListener[] | getTextListeners() Returns an array of all the text listeners
registered on this text component. | public boolean | isEditable() Indicates whether or not this text component is editable. | protected String | paramString() Returns a string representing the state of this
TextComponent . | protected void | processEvent(AWTEvent e) Processes events on this text component. | protected void | processTextEvent(TextEvent e) Processes text events occurring on this text component by
dispatching them to any registered TextListener objects.
NOTE: This method will not be called unless text events
are enabled for this component. | public void | removeNotify() Removes the TextComponent 's peer. | public synchronized void | removeTextListener(TextListener l) Removes the specified text event listener so that it no longer
receives text events from this text component
If l is null , no exception is
thrown and no action is performed. | public synchronized void | select(int selectionStart, int selectionEnd) Selects the text between the specified start and end positions.
This method sets the start and end positions of the
selected text, enforcing the restriction that the start position
must be greater than or equal to zero. | public synchronized void | selectAll() Selects all the text in this text component. | public void | setBackground(Color c) Sets the background color of this text component. | public synchronized void | setCaretPosition(int position) Sets the position of the text insertion caret.
The caret position is constrained to be between 0
and the last character of the text, inclusive.
If the passed-in value is greater than this range,
the value is set to the last character (or 0 if
the TextComponent contains no text)
and no error is returned. | public synchronized void | setEditable(boolean b) Sets the flag that determines whether or not this
text component is editable.
If the flag is set to true , this text component
becomes user editable. | public synchronized void | setSelectionEnd(int selectionEnd) Sets the selection end for this text component to
the specified position. | public synchronized void | setSelectionStart(int selectionStart) Sets the selection start for this text component to
the specified position. | public synchronized void | setText(String t) Sets the text that is presented by this
text component to be the specified text. |
backgroundSetByClientCode | boolean backgroundSetByClientCode(Code) | | |
editable | boolean editable(Code) | | A boolean indicating whether or not this
TextComponent is editable.
It will be true if the text component
is editable and false if not.
See Also: TextComponent.isEditable() |
addNotify | public void addNotify()(Code) | | Makes this Component displayable by connecting it to a
native screen resource.
This method is called internally by the toolkit and should
not be called directly by programs.
See Also: java.awt.TextComponent.removeNotify |
areInputMethodsEnabled | boolean areInputMethodsEnabled()(Code) | | |
enableInputMethods | public void enableInputMethods(boolean enable)(Code) | | Enables or disables input method support for this text component. If input
method support is enabled and the text component also processes key events,
incoming events are offered to the current input method and will only be
processed by the component or dispatched to its listeners if the input method
does not consume them. Whether and how input method support for this text
component is enabled or disabled by default is implementation dependent.
Parameters: enable - true to enable, false to disable See Also: TextComponent.processKeyEvent since: 1.2 |
getAccessibleContext | public AccessibleContext getAccessibleContext()(Code) | | Gets the AccessibleContext associated with this TextComponent.
For text components, the AccessibleContext takes the form of an
AccessibleAWTTextComponent.
A new AccessibleAWTTextComponent instance is created if necessary.
an AccessibleAWTTextComponent that serves as the AccessibleContext of this TextComponent since: 1.3 |
getBackground | public Color getBackground()(Code) | | Gets the background color of this text component.
By default, non-editable text components have a background color
of SystemColor.control. This default can be overridden by
calling setBackground.
This text component's background color.If this text component does not have a background color,the background color of its parent is returned. See Also: TextComponent.setBackground(Color) since: JDK1.0 |
getCaretPosition | public synchronized int getCaretPosition()(Code) | | Returns the position of the text insertion caret.
The caret position is constrained to be between 0
and the last character of the text, inclusive.
If the text or caret have not been set, the default
caret position is 0.
the position of the text insertion caret See Also: TextComponent.setCaretPosition(int) since: JDK1.1 |
getListeners | public T[] getListeners(Class<T> listenerType)(Code) | | Returns an array of all the objects currently registered
as FooListener s
upon this TextComponent .
FooListener s are registered using the
addFooListener method.
You can specify the listenerType argument
with a class literal, such as
FooListener.class .
For example, you can query a
TextComponent t
for its text listeners with the following code:
TextListener[] tls = (TextListener[])(t.getListeners(TextListener.class));
If no such listeners exist, this method returns an empty array.
Parameters: listenerType - the type of listeners requested; this parametershould specify an interface that descends fromjava.util.EventListener an array of all objects registered asFooListener s on this text component,or an empty array if no suchlisteners have been added exception: ClassCastException - if listenerType doesn't specify a class or interface that implementsjava.util.EventListener See Also: TextComponent.getTextListeners since: 1.3 |
getSelectedText | public synchronized String getSelectedText()(Code) | | Returns the selected text from the text that is
presented by this text component.
the selected text of this text component See Also: java.awt.TextComponent.select |
getText | public synchronized String getText()(Code) | | Returns the text that is presented by this text component.
By default, this is an empty string.
the value of this TextComponent See Also: java.awt.TextComponent.setText |
isEditable | public boolean isEditable()(Code) | | Indicates whether or not this text component is editable.
true if this text component iseditable; false otherwise. See Also: java.awt.TextComponent.setEditable since: JDK1.0 |
paramString | protected String paramString()(Code) | | Returns a string representing the state of this
TextComponent . This
method is intended to be used only for debugging purposes, and the
content and format of the returned string may vary between
implementations. The returned string may be empty but may not be
null .
the parameter string of this text component |
processEvent | protected void processEvent(AWTEvent e)(Code) | | Processes events on this text component. If the event is a
TextEvent , it invokes the processTextEvent
method else it invokes its superclass's processEvent .
Note that if the event parameter is null
the behavior is unspecified and may result in an
exception.
Parameters: e - the event |
processTextEvent | protected void processTextEvent(TextEvent e)(Code) | | Processes text events occurring on this text component by
dispatching them to any registered TextListener objects.
NOTE: This method will not be called unless text events
are enabled for this component. This happens when one of the
following occurs:
- A
TextListener object is registered
via addTextListener
- Text events are enabled via
enableEvents
Note that if the event parameter is null
the behavior is unspecified and may result in an
exception.
Parameters: e - the text event See Also: Component.enableEvents |
removeNotify | public void removeNotify()(Code) | | Removes the TextComponent 's peer.
The peer allows us to modify the appearance of the
TextComponent without changing its
functionality.
|
select | public synchronized void select(int selectionStart, int selectionEnd)(Code) | | Selects the text between the specified start and end positions.
This method sets the start and end positions of the
selected text, enforcing the restriction that the start position
must be greater than or equal to zero. The end position must be
greater than or equal to the start position, and less than or
equal to the length of the text component's text. The
character positions are indexed starting with zero.
The length of the selection is
endPosition - startPosition , so the
character at endPosition is not selected.
If the start and end positions of the selected text are equal,
all text is deselected.
If the caller supplies values that are inconsistent or out of
bounds, the method enforces these constraints silently, and
without failure. Specifically, if the start position or end
position is greater than the length of the text, it is reset to
equal the text length. If the start position is less than zero,
it is reset to zero, and if the end position is less than the
start position, it is reset to the start position.
Parameters: selectionStart - the zero-based index of the first character (char value) to be selected Parameters: selectionEnd - the zero-based end position of the text to be selected; the character (char value) at selectionEnd is not selected See Also: java.awt.TextComponent.setSelectionStart See Also: java.awt.TextComponent.setSelectionEnd See Also: java.awt.TextComponent.selectAll |
setBackground | public void setBackground(Color c)(Code) | | Sets the background color of this text component.
Parameters: c - The color to become this text component's color.If this parameter is null then this text componentwill inherit the background color of its parent. See Also: TextComponent.getBackground() since: JDK1.0 |
setCaretPosition | public synchronized void setCaretPosition(int position)(Code) | | Sets the position of the text insertion caret.
The caret position is constrained to be between 0
and the last character of the text, inclusive.
If the passed-in value is greater than this range,
the value is set to the last character (or 0 if
the TextComponent contains no text)
and no error is returned. If the passed-in value is
less than 0, an IllegalArgumentException
is thrown.
Parameters: position - the position of the text insertion caret exception: IllegalArgumentException - if position is less than zero since: JDK1.1 |
setEditable | public synchronized void setEditable(boolean b)(Code) | | Sets the flag that determines whether or not this
text component is editable.
If the flag is set to true , this text component
becomes user editable. If the flag is set to false ,
the user cannot change the text of this text component.
By default, non-editable text components have a background color
of SystemColor.control. This default can be overridden by
calling setBackground.
Parameters: b - a flag indicating whether this text componentis user editable. See Also: java.awt.TextComponent.isEditable since: JDK1.0 |
setSelectionEnd | public synchronized void setSelectionEnd(int selectionEnd)(Code) | | Sets the selection end for this text component to
the specified position. The new end point is constrained
to be at or after the current selection start. It also
cannot be set beyond the end of the component's text.
If the caller supplies a value for selectionEnd
that is out of bounds, the method enforces these constraints
silently, and without failure.
Parameters: selectionEnd - the end position of the selected text See Also: java.awt.TextComponent.getSelectionEnd See Also: java.awt.TextComponent.setSelectionStart since: JDK1.1 |
setSelectionStart | public synchronized void setSelectionStart(int selectionStart)(Code) | | Sets the selection start for this text component to
the specified position. The new start point is constrained
to be at or before the current selection end. It also
cannot be set to less than zero, the beginning of the
component's text.
If the caller supplies a value for selectionStart
that is out of bounds, the method enforces these constraints
silently, and without failure.
Parameters: selectionStart - the start position of the selected text See Also: java.awt.TextComponent.getSelectionStart See Also: java.awt.TextComponent.setSelectionEnd since: JDK1.1 |
setText | public synchronized void setText(String t)(Code) | | Sets the text that is presented by this
text component to be the specified text.
Parameters: t - the new text;if this parameter is null thenthe text is set to the empty string "" See Also: java.awt.TextComponent.getText See Also: |
Methods inherited from java.awt.Component | public boolean action(Event evt, Object what)(Code)(Java Doc) public void add(PopupMenu popup)(Code)(Java Doc) public synchronized void addComponentListener(ComponentListener l)(Code)(Java Doc) public synchronized void addFocusListener(FocusListener l)(Code)(Java Doc) public void addHierarchyBoundsListener(HierarchyBoundsListener l)(Code)(Java Doc) public void addHierarchyListener(HierarchyListener l)(Code)(Java Doc) public synchronized void addInputMethodListener(InputMethodListener l)(Code)(Java Doc) public synchronized void addKeyListener(KeyListener l)(Code)(Java Doc) public synchronized void addMouseListener(MouseListener l)(Code)(Java Doc) public synchronized void addMouseMotionListener(MouseMotionListener l)(Code)(Java Doc) public synchronized void addMouseWheelListener(MouseWheelListener l)(Code)(Java Doc) public void addNotify()(Code)(Java Doc) public synchronized void addPropertyChangeListener(PropertyChangeListener listener)(Code)(Java Doc) public synchronized void addPropertyChangeListener(String propertyName, PropertyChangeListener listener)(Code)(Java Doc) void adjustListeningChildrenOnParent(long mask, int num)(Code)(Java Doc) public void applyComponentOrientation(ComponentOrientation orientation)(Code)(Java Doc) public boolean areFocusTraversalKeysSet(int id)(Code)(Java Doc) boolean areInputMethodsEnabled()(Code)(Java Doc) void autoProcessMouseWheel(MouseWheelEvent e)(Code)(Java Doc) public Rectangle bounds()(Code)(Java Doc) final boolean canBeFocusOwner()(Code)(Java Doc) void checkGD(String stringID)(Code)(Java Doc) public int checkImage(Image image, ImageObserver observer)(Code)(Java Doc) public int checkImage(Image image, int width, int height, ImageObserver observer)(Code)(Java Doc) boolean checkWindowClosingException()(Code)(Java Doc) void clearCurrentFocusCycleRootOnHide()(Code)(Java Doc) void clearMostRecentFocusOwnerOnHide()(Code)(Java Doc) protected AWTEvent coalesceEvents(AWTEvent existingEvent, AWTEvent newEvent)(Code)(Java Doc) String constructComponentName()(Code)(Java Doc) public boolean contains(int x, int y)(Code)(Java Doc) public boolean contains(Point p)(Code)(Java Doc) boolean containsFocus()(Code)(Java Doc) int countHierarchyMembers()(Code)(Java Doc) void createBufferStrategy(int numBuffers)(Code)(Java Doc) void createBufferStrategy(int numBuffers, BufferCapabilities caps) throws AWTException(Code)(Java Doc) int createHierarchyEvents(int id, Component changed, Container changedParent, long changeFlags, boolean enabledOnToolkit)(Code)(Java Doc) public Image createImage(ImageProducer producer)(Code)(Java Doc) public Image createImage(int width, int height)(Code)(Java Doc) public VolatileImage createVolatileImage(int width, int height)(Code)(Java Doc) public VolatileImage createVolatileImage(int width, int height, ImageCapabilities caps) throws AWTException(Code)(Java Doc) public void deliverEvent(Event e)(Code)(Java Doc) public void disable()(Code)(Java Doc) final protected void disableEvents(long eventsToDisable)(Code)(Java Doc) final public void dispatchEvent(AWTEvent e)(Code)(Java Doc) void dispatchEventImpl(AWTEvent e)(Code)(Java Doc) boolean dispatchMouseWheelToAncestor(MouseWheelEvent e)(Code)(Java Doc) public void doLayout()(Code)(Java Doc) public void enable()(Code)(Java Doc) public void enable(boolean b)(Code)(Java Doc) final protected void enableEvents(long eventsToEnable)(Code)(Java Doc) public void enableInputMethods(boolean enable)(Code)(Java Doc) boolean eventEnabled(AWTEvent e)(Code)(Java Doc) boolean eventTypeEnabled(int type)(Code)(Java Doc) Component findUnderMouseInWindow(PointerInfo pi)(Code)(Java Doc) protected void firePropertyChange(String propertyName, Object oldValue, Object newValue)(Code)(Java Doc) protected void firePropertyChange(String propertyName, boolean oldValue, boolean newValue)(Code)(Java Doc) protected void firePropertyChange(String propertyName, int oldValue, int newValue)(Code)(Java Doc) public void firePropertyChange(String propertyName, byte oldValue, byte newValue)(Code)(Java Doc) public void firePropertyChange(String propertyName, char oldValue, char newValue)(Code)(Java Doc) public void firePropertyChange(String propertyName, short oldValue, short newValue)(Code)(Java Doc) public void firePropertyChange(String propertyName, long oldValue, long newValue)(Code)(Java Doc) public void firePropertyChange(String propertyName, float oldValue, float newValue)(Code)(Java Doc) public void firePropertyChange(String propertyName, double oldValue, double newValue)(Code)(Java Doc) public AccessibleContext getAccessibleContext()(Code)(Java Doc) int getAccessibleIndexInParent()(Code)(Java Doc) AccessibleStateSet getAccessibleStateSet()(Code)(Java Doc) public float getAlignmentX()(Code)(Java Doc) public float getAlignmentY()(Code)(Java Doc) Image getBackBuffer()(Code)(Java Doc) public Color getBackground()(Code)(Java Doc) public int getBaseline(int width, int height)(Code)(Java Doc) public BaselineResizeBehavior getBaselineResizeBehavior()(Code)(Java Doc) public Rectangle getBounds()(Code)(Java Doc) public Rectangle getBounds(Rectangle rv)(Code)(Java Doc) int getBoundsOp()(Code)(Java Doc) BufferStrategy getBufferStrategy()(Code)(Java Doc) public ColorModel getColorModel()(Code)(Java Doc) public Component getComponentAt(int x, int y)(Code)(Java Doc) public Component getComponentAt(Point p)(Code)(Java Doc) public synchronized ComponentListener[] getComponentListeners()(Code)(Java Doc) public ComponentOrientation getComponentOrientation()(Code)(Java Doc) Window getContainingWindow()(Code)(Java Doc) static Window getContainingWindow(Component comp)(Code)(Java Doc) public Cursor getCursor()(Code)(Java Doc) final Cursor getCursor_NoClientCode()(Code)(Java Doc) public synchronized DropTarget getDropTarget()(Code)(Java Doc) public Container getFocusCycleRootAncestor()(Code)(Java Doc) public synchronized FocusListener[] getFocusListeners()(Code)(Java Doc) public Set<AWTKeyStroke> getFocusTraversalKeys(int id)(Code)(Java Doc) public boolean getFocusTraversalKeysEnabled()(Code)(Java Doc) final Set getFocusTraversalKeys_NoIDCheck(int id)(Code)(Java Doc) public Font getFont()(Code)(Java Doc) public FontMetrics getFontMetrics(Font font)(Code)(Java Doc) final Font getFont_NoClientCode()(Code)(Java Doc) public Color getForeground()(Code)(Java Doc) public Graphics getGraphics()(Code)(Java Doc) public GraphicsConfiguration getGraphicsConfiguration()(Code)(Java Doc) final GraphicsConfiguration getGraphicsConfiguration_NoClientCode()(Code)(Java Doc) final Graphics getGraphics_NoClientCode()(Code)(Java Doc) public int getHeight()(Code)(Java Doc) public synchronized HierarchyBoundsListener[] getHierarchyBoundsListeners()(Code)(Java Doc) public synchronized HierarchyListener[] getHierarchyListeners()(Code)(Java Doc) public boolean getIgnoreRepaint()(Code)(Java Doc) public InputContext getInputContext()(Code)(Java Doc) public synchronized InputMethodListener[] getInputMethodListeners()(Code)(Java Doc) public InputMethodRequests getInputMethodRequests()(Code)(Java Doc) public synchronized KeyListener[] getKeyListeners()(Code)(Java Doc) public T[] getListeners(Class<T> listenerType)(Code)(Java Doc) public Locale getLocale()(Code)(Java Doc) public Point getLocation()(Code)(Java Doc) public Point getLocation(Point rv)(Code)(Java Doc) public Point getLocationOnScreen()(Code)(Java Doc) final Point getLocationOnScreen_NoTreeLock()(Code)(Java Doc) public Dimension getMaximumSize()(Code)(Java Doc) public Dimension getMinimumSize()(Code)(Java Doc) public synchronized MouseListener[] getMouseListeners()(Code)(Java Doc) public synchronized MouseMotionListener[] getMouseMotionListeners()(Code)(Java Doc) public Point getMousePosition() throws HeadlessException(Code)(Java Doc) public synchronized MouseWheelListener[] getMouseWheelListeners()(Code)(Java Doc) public String getName()(Code)(Java Doc) Container getNativeContainer()(Code)(Java Doc) public Container getParent()(Code)(Java Doc) final Container getParent_NoClientCode()(Code)(Java Doc) public ComponentPeer getPeer()(Code)(Java Doc) public Dimension getPreferredSize()(Code)(Java Doc) public synchronized PropertyChangeListener[] getPropertyChangeListeners()(Code)(Java Doc) public synchronized PropertyChangeListener[] getPropertyChangeListeners(String propertyName)(Code)(Java Doc) public Dimension getSize()(Code)(Java Doc) public Dimension getSize(Dimension rv)(Code)(Java Doc) public Toolkit getToolkit()(Code)(Java Doc) final Toolkit getToolkitImpl()(Code)(Java Doc) Container getTraversalRoot()(Code)(Java Doc) final public Object getTreeLock()(Code)(Java Doc) public int getWidth()(Code)(Java Doc) public int getX()(Code)(Java Doc) public int getY()(Code)(Java Doc) public boolean gotFocus(Event evt, Object what)(Code)(Java Doc) public boolean handleEvent(Event evt)(Code)(Java Doc) public boolean hasFocus()(Code)(Java Doc) public void hide()(Code)(Java Doc) public boolean imageUpdate(Image img, int infoflags, int x, int y, int w, int h)(Code)(Java Doc) void initializeFocusTraversalKeys()(Code)(Java Doc) public boolean inside(int x, int y)(Code)(Java Doc) public void invalidate()(Code)(Java Doc) public boolean isBackgroundSet()(Code)(Java Doc) final boolean isCoalescingEnabled()(Code)(Java Doc) public boolean isCursorSet()(Code)(Java Doc) public boolean isDisplayable()(Code)(Java Doc) public boolean isDoubleBuffered()(Code)(Java Doc) public boolean isEnabled()(Code)(Java Doc) final boolean isEnabledImpl()(Code)(Java Doc) public boolean isFocusCycleRoot(Container container)(Code)(Java Doc) public boolean isFocusOwner()(Code)(Java Doc) public boolean isFocusTraversable()(Code)(Java Doc) final boolean isFocusTraversableOverridden()(Code)(Java Doc) public boolean isFocusable()(Code)(Java Doc) public boolean isFontSet()(Code)(Java Doc) public boolean isForegroundSet()(Code)(Java Doc) static boolean isInstanceOf(Object obj, String className)(Code)(Java Doc) public boolean isLightweight()(Code)(Java Doc) public boolean isMaximumSizeSet()(Code)(Java Doc) public boolean isMinimumSizeSet()(Code)(Java Doc) public boolean isOpaque()(Code)(Java Doc) public boolean isPreferredSizeSet()(Code)(Java Doc) boolean isRecursivelyVisible()(Code)(Java Doc) boolean isSameOrAncestorOf(Component comp, boolean allowChildren)(Code)(Java Doc) public boolean isShowing()(Code)(Java Doc) public boolean isValid()(Code)(Java Doc) public boolean isVisible()(Code)(Java Doc) final boolean isVisible_NoClientCode()(Code)(Java Doc) public boolean keyDown(Event evt, int key)(Code)(Java Doc) public boolean keyUp(Event evt, int key)(Code)(Java Doc) public void layout()(Code)(Java Doc) void lightweightPaint(Graphics g)(Code)(Java Doc) void lightweightPrint(Graphics g)(Code)(Java Doc) public void list()(Code)(Java Doc) public void list(PrintStream out)(Code)(Java Doc) public void list(PrintStream out, int indent)(Code)(Java Doc) public void list(PrintWriter out)(Code)(Java Doc) public void list(PrintWriter out, int indent)(Code)(Java Doc) public Component locate(int x, int y)(Code)(Java Doc) public Point location()(Code)(Java Doc) public boolean lostFocus(Event evt, Object what)(Code)(Java Doc) public Dimension minimumSize()(Code)(Java Doc) public boolean mouseDown(Event evt, int x, int y)(Code)(Java Doc) public boolean mouseDrag(Event evt, int x, int y)(Code)(Java Doc) public boolean mouseEnter(Event evt, int x, int y)(Code)(Java Doc) public boolean mouseExit(Event evt, int x, int y)(Code)(Java Doc) public boolean mouseMove(Event evt, int x, int y)(Code)(Java Doc) public boolean mouseUp(Event evt, int x, int y)(Code)(Java Doc) public void move(int x, int y)(Code)(Java Doc) public void nextFocus()(Code)(Java Doc) int numListening(long mask)(Code)(Java Doc) public void paint(Graphics g)(Code)(Java Doc) public void paintAll(Graphics g)(Code)(Java Doc) void paintHeavyweightComponents(Graphics g)(Code)(Java Doc) protected String paramString()(Code)(Java Doc) Point pointRelativeToComponent(Point absolute)(Code)(Java Doc) public boolean postEvent(Event e)(Code)(Java Doc) static boolean postNextFocusHelper(Component toFocus, CausedFocusEvent.Cause cause)(Code)(Java Doc) boolean postsOldMouseEvents()(Code)(Java Doc) final Component preNextFocusHelper()(Code)(Java Doc) public Dimension preferredSize()(Code)(Java Doc) public boolean prepareImage(Image image, ImageObserver observer)(Code)(Java Doc) public boolean prepareImage(Image image, int width, int height, ImageObserver observer)(Code)(Java Doc) public void print(Graphics g)(Code)(Java Doc) public void printAll(Graphics g)(Code)(Java Doc) void printHeavyweightComponents(Graphics g)(Code)(Java Doc) protected void processComponentEvent(ComponentEvent e)(Code)(Java Doc) protected void processEvent(AWTEvent e)(Code)(Java Doc) protected void processFocusEvent(FocusEvent e)(Code)(Java Doc) protected void processHierarchyBoundsEvent(HierarchyEvent e)(Code)(Java Doc) protected void processHierarchyEvent(HierarchyEvent e)(Code)(Java Doc) protected void processInputMethodEvent(InputMethodEvent e)(Code)(Java Doc) protected void processKeyEvent(KeyEvent e)(Code)(Java Doc) protected void processMouseEvent(MouseEvent e)(Code)(Java Doc) protected void processMouseMotionEvent(MouseEvent e)(Code)(Java Doc) protected void processMouseWheelEvent(MouseWheelEvent e)(Code)(Java Doc) public void remove(MenuComponent popup)(Code)(Java Doc) public synchronized void removeComponentListener(ComponentListener l)(Code)(Java Doc) public synchronized void removeFocusListener(FocusListener l)(Code)(Java Doc) public void removeHierarchyBoundsListener(HierarchyBoundsListener l)(Code)(Java Doc) public void removeHierarchyListener(HierarchyListener l)(Code)(Java Doc) public synchronized void removeInputMethodListener(InputMethodListener l)(Code)(Java Doc) public synchronized void removeKeyListener(KeyListener l)(Code)(Java Doc) public synchronized void removeMouseListener(MouseListener l)(Code)(Java Doc) public synchronized void removeMouseMotionListener(MouseMotionListener l)(Code)(Java Doc) public synchronized void removeMouseWheelListener(MouseWheelListener l)(Code)(Java Doc) public void removeNotify()(Code)(Java Doc) public synchronized void removePropertyChangeListener(PropertyChangeListener listener)(Code)(Java Doc) public synchronized void removePropertyChangeListener(String propertyName, PropertyChangeListener listener)(Code)(Java Doc) public void repaint()(Code)(Java Doc) public void repaint(long tm)(Code)(Java Doc) public void repaint(int x, int y, int width, int height)(Code)(Java Doc) public void repaint(long tm, int x, int y, int width, int height)(Code)(Java Doc) public void requestFocus()(Code)(Java Doc) void requestFocus(CausedFocusEvent.Cause cause)(Code)(Java Doc) protected boolean requestFocus(boolean temporary)(Code)(Java Doc) boolean requestFocus(boolean temporary, CausedFocusEvent.Cause cause)(Code)(Java Doc) final boolean requestFocusHelper(boolean temporary, boolean focusedWindowChangeAllowed)(Code)(Java Doc) final boolean requestFocusHelper(boolean temporary, boolean focusedWindowChangeAllowed, CausedFocusEvent.Cause cause)(Code)(Java Doc) public boolean requestFocusInWindow()(Code)(Java Doc) boolean requestFocusInWindow(CausedFocusEvent.Cause cause)(Code)(Java Doc) protected boolean requestFocusInWindow(boolean temporary)(Code)(Java Doc) boolean requestFocusInWindow(boolean temporary, CausedFocusEvent.Cause cause)(Code)(Java Doc) void resetGC()(Code)(Java Doc) public void reshape(int x, int y, int width, int height)(Code)(Java Doc) public void resize(int width, int height)(Code)(Java Doc) public void resize(Dimension d)(Code)(Java Doc) public void setBackground(Color c)(Code)(Java Doc) public void setBounds(int x, int y, int width, int height)(Code)(Java Doc) public void setBounds(Rectangle r)(Code)(Java Doc) void setBoundsOp(int op)(Code)(Java Doc) public void setComponentOrientation(ComponentOrientation o)(Code)(Java Doc) public void setCursor(Cursor cursor)(Code)(Java Doc) public synchronized void setDropTarget(DropTarget dt)(Code)(Java Doc) public void setEnabled(boolean b)(Code)(Java Doc) public void setFocusTraversalKeys(int id, Set<? extends AWTKeyStroke> keystrokes)(Code)(Java Doc) public void setFocusTraversalKeysEnabled(boolean focusTraversalKeysEnabled)(Code)(Java Doc) final void setFocusTraversalKeys_NoIDCheck(int id, Set<? extends AWTKeyStroke> keystrokes)(Code)(Java Doc) public void setFocusable(boolean focusable)(Code)(Java Doc) public void setFont(Font f)(Code)(Java Doc) public void setForeground(Color c)(Code)(Java Doc) void setGCFromPeer()(Code)(Java Doc) public void setIgnoreRepaint(boolean ignoreRepaint)(Code)(Java Doc) public void setLocale(Locale l)(Code)(Java Doc) public void setLocation(int x, int y)(Code)(Java Doc) public void setLocation(Point p)(Code)(Java Doc) public void setMaximumSize(Dimension maximumSize)(Code)(Java Doc) public void setMinimumSize(Dimension minimumSize)(Code)(Java Doc) public void setName(String name)(Code)(Java Doc) public void setPreferredSize(Dimension preferredSize)(Code)(Java Doc) static synchronized void setRequestFocusController(RequestFocusController requestController)(Code)(Java Doc) public void setSize(int width, int height)(Code)(Java Doc) public void setSize(Dimension d)(Code)(Java Doc) public void setVisible(boolean b)(Code)(Java Doc) public void show()(Code)(Java Doc) public void show(boolean b)(Code)(Java Doc) public Dimension size()(Code)(Java Doc) public String toString()(Code)(Java Doc) public void transferFocus()(Code)(Java Doc) public void transferFocusBackward()(Code)(Java Doc) public void transferFocusUpCycle()(Code)(Java Doc) public void update(Graphics g)(Code)(Java Doc) final void updateCursorImmediately()(Code)(Java Doc) public void validate()(Code)(Java Doc)
|
|
|
|