Java Doc for TextComponent.java in  » 6.0-JDK-Modules » j2me » java » awt » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » 6.0 JDK Modules » j2me » java.awt 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   java.awt.Component
      java.awt.TextComponent

All known Subclasses:   java.awt.TextField,  java.awt.TextArea,
TextComponent
public class TextComponent extends Component (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.43, 08/19/02
author:
   Sami Shaio
author:
   Arthur van Hoff
since:
   JDK1.0



Field Summary
 booleanbackgroundSetByClientCode
    
 booleaneditable
     A boolean indicating whether or not this TextComponent is editable.
 intselectionEnd
     The selection end.
 intselectionStart
     The selection start.
 Stringtext
     The value of the text.
protected transient  TextListenertextListener
    

Constructor Summary
 TextComponent(String text)
     Constructs a new text component initialized with the specified text.

Method Summary
public  voidaddNotify()
     Makes this Component displayable by connecting it to a native screen resource.
public synchronized  voidaddTextListener(TextListener l)
     Adds the specified text event listener to recieve text events from this textcomponent.
 booleanareInputMethodsEnabled()
    
public  voidenableInputMethods(boolean enable)
    
 booleaneventEnabled(AWTEvent e)
    
public  ColorgetBackground()
     Gets the background color of this text component. By default, non-editable text components have a background color of SystemColor.control.
public synchronized  intgetCaretPosition()
     Gets the position of the text insertion caret for this text component.
public synchronized  StringgetSelectedText()
     Gets the selected text from the text that is presented by this text component.
public synchronized  intgetSelectionEnd()
     Gets the end position of the selected text in this text component.
public synchronized  intgetSelectionStart()
     Gets the start position of the selected text in this text component.
public synchronized  StringgetText()
     Gets 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  booleanisEditable()
     Indicates whether or not this text component is editable.
protected  StringparamString()
     Returns the parameter string representing the state of this text component.
protected  voidprocessEvent(AWTEvent e)
     Processes events on this textcomponent.
protected  voidprocessTextEvent(TextEvent e)
     Processes text events occurring on this text component by dispatching them to any registered TextListener objects.
public  voidremoveNotify()
     Removes the TextComponent's peer.
public synchronized  voidremoveTextListener(TextListener l)
    
public synchronized  voidselect(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 end position must be greater than or equal to the start position. The start position must be greater than zero, and the end position must be less that or equal to the length of the text component's text.

public synchronized  voidselectAll()
     Selects all the text in this text component.
public  voidsetBackground(Color c)
     Sets the background color of this text component.
public synchronized  voidsetCaretPosition(int position)
     Sets the position of the text insertion caret for this text component.
public synchronized  voidsetEditable(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  voidsetSelectionEnd(int selectionEnd)
     Sets the selection end for this text component to the specified position.
public synchronized  voidsetSelectionStart(int selectionStart)
     Sets the selection start for this text component to the specified position.
public synchronized  voidsetText(String t)
     Sets the text that is presented by this text component to be the specified text.

Field Detail
backgroundSetByClientCode
boolean backgroundSetByClientCode(Code)



editable
boolean editable(Code)
A boolean indicating whether or not this TextComponent is editable.



selectionEnd
int selectionEnd(Code)
The selection end.



selectionStart
int selectionStart(Code)
The selection start.



text
String text(Code)
The value of the text.



textListener
protected transient TextListener textListener(Code)




Constructor Detail
TextComponent
TextComponent(String text)(Code)
Constructs a new text component initialized with the specified text. Sets the value of the cursor to Cursor.TEXT_CURSOR. The insertion caret is initially placed before the first character and the text is left justified.
Parameters:
  text - the initial text that the component presents.
See Also:   java.awt.Cursor
since:
   JDK1.0




Method Detail
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



addTextListener
public synchronized void addTextListener(TextListener l)(Code)
Adds the specified text event listener to recieve text events from this textcomponent.
Parameters:
  l - the text event listener



areInputMethodsEnabled
boolean areInputMethodsEnabled()(Code)



enableInputMethods
public void enableInputMethods(boolean enable)(Code)



eventEnabled
boolean eventEnabled(AWTEvent e)(Code)



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:   setBackground
since:
   JDK1.0



getCaretPosition
public synchronized int getCaretPosition()(Code)
Gets the position of the text insertion caret for this text component. the position of the text insertion caret.
since:
   JDK1.1



getSelectedText
public synchronized String getSelectedText()(Code)
Gets 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
since:
   JDK1.0



getSelectionEnd
public synchronized int getSelectionEnd()(Code)
Gets the end position of the selected text in this text component. the end position of the selected text.
See Also:   java.awt.TextComponent.setSelectionEnd
See Also:   java.awt.TextComponent.getSelectionStart
since:
   JDK1.0



getSelectionStart
public synchronized int getSelectionStart()(Code)
Gets the start position of the selected text in this text component. the start position of the selected text.
See Also:   java.awt.TextComponent.setSelectionStart
See Also:   java.awt.TextComponent.getSelectionEnd
since:
   JDK1.0



getText
public synchronized String getText()(Code)
Gets the text that is presented by this text component.
See Also:   java.awt.TextComponent.setText
since:
   JDK1.0



getTextListeners
public synchronized TextListener[] getTextListeners()(Code)
Returns an array of all the text listeners registered on this text component. all of this text component's TextListenersor an empty array if no textlisteners are currently registered
See Also:   TextComponent.addTextListener
See Also:   TextComponent.removeTextListener
since:
   1.4



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:
   JDK1ble



paramString
protected String paramString()(Code)
Returns the parameter string representing the state of this text component. This string is useful for debugging. the parameter string of this text component.
since:
   JDK1.0



processEvent
protected void processEvent(AWTEvent e)(Code)
Processes events on this textcomponent. If the event is a TextEvent, it invokes the processTextEvent method, else it invokes its superclass's processEvent.
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) A TextListener object is registered via addTextListener() b) Text events are enabled via enableEvents()
See Also:   Component.enableEvents
Parameters:
  e - the text event



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.



removeTextListener
public synchronized void removeTextListener(TextListener l)(Code)
Removes the specified text event listener so that it no longer receives text events from this textcomponent



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 end position must be greater than or equal to the start position. The start position must be greater than zero, and the end position must be less that or equal to the length of the text component's text. If the caller supplies values that are inconsistent or out of bounds, the method enforces these constraints silently, and without failure.
Parameters:
  selectionStart - the start position of thetext to select.
Parameters:
  selectionEnd - the end position of thetext to select.
See Also:   java.awt.TextComponent.setSelectionStart
See Also:   java.awt.TextComponent.setSelectionEnd
See Also:   java.awt.TextComponent.selectAll
since:
   JDK1.0




selectAll
public synchronized void selectAll()(Code)
Selects all the text in this text component.
See Also:   java.awt.TextComponent.select
since:
   JDK1.0



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 for this text component.
Parameters:
  position - the position of the text insertion caret.
exception:
  IllegalArgumentException - if the value suppliedfor 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.
Parameters:
  t - a flag indicating whether this text componentshould be 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 theselected 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 theselected 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.
See Also:   java.awt.TextComponent.getText
since:
   JDK1.0



Fields inherited from java.awt.Component
final public static float BOTTOM_ALIGNMENT(Code)(Java Doc)
final public static float CENTER_ALIGNMENT(Code)(Java Doc)
final public static float LEFT_ALIGNMENT(Code)(Java Doc)
final static Object LOCK(Code)(Java Doc)
final public static float RIGHT_ALIGNMENT(Code)(Java Doc)
final public static float TOP_ALIGNMENT(Code)(Java Doc)
final static String actionListenerK(Code)(Java Doc)
final static String adjustmentListenerK(Code)(Java Doc)
Color background(Code)(Java Doc)
transient ComponentListener componentListener(Code)(Java Doc)
final static String componentListenerK(Code)(Java Doc)
final static String containerListenerK(Code)(Java Doc)
Cursor cursor(Code)(Java Doc)
final static boolean defaultNewEventsOnly(Code)(Java Doc)
transient Component delegate(Code)(Java Doc)
transient Component delegateSource(Code)(Java Doc)
boolean enabled(Code)(Java Doc)
long eventMask(Code)(Java Doc)
transient FocusListener focusListener(Code)(Java Doc)
final static String focusListenerK(Code)(Java Doc)
Font font(Code)(Java Doc)
Color foreground(Code)(Java Doc)
int height(Code)(Java Doc)
static int incRate(Code)(Java Doc)
static boolean isInc(Code)(Java Doc)
final static String itemListenerK(Code)(Java Doc)
transient KeyListener keyListener(Code)(Java Doc)
final static String keyListenerK(Code)(Java Doc)
Locale locale(Code)(Java Doc)
Dimension minSize(Code)(Java Doc)
transient MouseListener mouseListener(Code)(Java Doc)
final static String mouseListenerK(Code)(Java Doc)
transient MouseMotionListener mouseMotionListener(Code)(Java Doc)
final static String mouseMotionListenerK(Code)(Java Doc)
boolean newEventsOnly(Code)(Java Doc)
transient Container parent(Code)(Java Doc)
Vector popups(Code)(Java Doc)
Dimension prefSize(Code)(Java Doc)
final static String textListenerK(Code)(Java Doc)
static Timer updateTimer(Code)(Java Doc)
boolean valid(Code)(Java Doc)
boolean visible(Code)(Java Doc)
int width(Code)(Java Doc)
transient RuntimeException windowClosingException(Code)(Java Doc)
final static String windowListenerK(Code)(Java Doc)
int x(Code)(Java Doc)
transient ComponentXWindow xwindow(Code)(Java Doc)
int y(Code)(Java Doc)

Methods inherited from java.awt.Component
public boolean action(Event evt, Object what)(Code)(Java Doc)
public synchronized 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 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 void addNotify()(Code)(Java Doc)
boolean areInputMethodsEnabled()(Code)(Java Doc)
public Rectangle bounds()(Code)(Java Doc)
final void checkEnableNewEventsOnly(Object listener)(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)
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)
public Image createImage(ImageProducer producer)(Code)(Java Doc)
public Image createImage(int width, int height)(Code)(Java Doc)
ComponentXWindow createXWindow()(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)
public void doLayout()(Code)(Java Doc)
public void enable()(Code)(Java Doc)
public void enable(boolean b)(Code)(Java Doc)
final protected synchronized void enableEvents(long eventsToEnable)(Code)(Java Doc)
boolean eventEnabled(AWTEvent e)(Code)(Java Doc)
Component findFocusDelegate(Container container)(Code)(Java Doc)
public float getAlignmentX()(Code)(Java Doc)
public float getAlignmentY()(Code)(Java Doc)
public Color getBackground()(Code)(Java Doc)
public Rectangle getBounds()(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 Cursor getCursor()(Code)(Java Doc)
Component getFocusDelegate()(Code)(Java Doc)
public Font getFont()(Code)(Java Doc)
Component getFontAndColorDelegate()(Code)(Java Doc)
public FontMetrics getFontMetrics(Font font)(Code)(Java Doc)
public Color getForeground()(Code)(Java Doc)
public Graphics getGraphics()(Code)(Java Doc)
InputContext getInputContext()(Code)(Java Doc)
public Locale getLocale()(Code)(Java Doc)
public Point getLocation()(Code)(Java Doc)
public Point getLocationOnScreen()(Code)(Java Doc)
public Dimension getMaximumSize()(Code)(Java Doc)
public Dimension getMinimumSize()(Code)(Java Doc)
public String getName()(Code)(Java Doc)
Container getNativeContainer()(Code)(Java Doc)
public Container getParent()(Code)(Java Doc)
public Dimension getPreferredSize()(Code)(Java Doc)
public Dimension getSize()(Code)(Java Doc)
public Toolkit getToolkit()(Code)(Java Doc)
final public Object getTreeLock()(Code)(Java Doc)
public boolean gotFocus(Event evt, Object what)(Code)(Java Doc)
public boolean handleEvent(Event evt)(Code)(Java Doc)
public void hide()(Code)(Java Doc)
public boolean imageUpdate(Image img, int flags, int x, int y, int w, int h)(Code)(Java Doc)
public boolean inside(int x, int y)(Code)(Java Doc)
public void invalidate()(Code)(Java Doc)
static void invokeAndWait(Runnable runnable)(Code)(Java Doc)
public boolean isDisplayable()(Code)(Java Doc)
public boolean isEnabled()(Code)(Java Doc)
public boolean isFocusTraversable()(Code)(Java Doc)
public boolean isLightweight()(Code)(Java Doc)
boolean isLightweightWhenDisplayable()(Code)(Java Doc)
public boolean isOpaque()(Code)(Java Doc)
public boolean isShowing()(Code)(Java Doc)
public boolean isValid()(Code)(Java Doc)
public boolean isVisible()(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 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)
public void paint(Graphics g)(Code)(Java Doc)
public void paintAll(Graphics g)(Code)(Java Doc)
protected String paramString()(Code)(Java Doc)
public boolean postEvent(Event e)(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)
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 processKeyEvent(KeyEvent e)(Code)(Java Doc)
protected void processMouseEvent(MouseEvent e)(Code)(Java Doc)
protected void processMouseMotionEvent(MouseEvent e)(Code)(Java Doc)
public synchronized 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 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 void removeNotify()(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)
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)
public synchronized void setCursor(Cursor cursor)(Code)(Java Doc)
public void setEnabled(boolean b)(Code)(Java Doc)
public void setFont(Font f)(Code)(Java Doc)
public void setForeground(Color c)(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 setName(String name)(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 update(Graphics g)(Code)(Java Doc)
public void validate()(Code)(Java Doc)

Methods inherited from java.lang.Object
public boolean equals(Object obj)(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.