Java Doc for TextArea.java in  » 6.0-JDK-Core » AWT » java » awt » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Home
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
26.ERP CRM Financial
27.ESB
28.Forum
29.Game
30.GIS
31.Graphic 3D
32.Graphic Library
33.Groupware
34.HTML Parser
35.IDE
36.IDE Eclipse
37.IDE Netbeans
38.Installer
39.Internationalization Localization
40.Inversion of Control
41.Issue Tracking
42.J2EE
43.J2ME
44.JBoss
45.JMS
46.JMX
47.Library
48.Mail Clients
49.Music
50.Net
51.Parser
52.PDF
53.Portal
54.Profiler
55.Project Management
56.Report
57.RSS RDF
58.Rule Engine
59.Science
60.Scripting
61.Search Engine
62.Security
63.Sevlet Container
64.Source Control
65.Swing Library
66.Template Engine
67.Test Coverage
68.Testing
69.UML
70.Web Crawler
71.Web Framework
72.Web Mail
73.Web Server
74.Web Services
75.Web Services apache cxf 2.2.6
76.Web Services AXIS2
77.Wiki Engine
78.Workflow Engines
79.XML
80.XML UI
Java Source Code / Java Documentation » 6.0 JDK Core » AWT » java.awt 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


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

TextArea
public class TextArea extends TextComponent (Code)
A TextArea object is a multi-line region that displays text. It can be set to allow editing or to be read-only.

The following image shows the appearance of a text area:

A TextArea showing the word 'Hello!'

This text area could be created by the following line of code:


 new TextArea("Hello", 5, 40);
 


version:
   1.88, 05/05/07
author:
   Sami Shaio
since:
   JDK1.0


Inner Class :protected class AccessibleAWTTextArea extends AccessibleAWTTextComponent

Field Summary
final public static  intSCROLLBARS_BOTH
     Create and display both vertical and horizontal scrollbars.
final public static  intSCROLLBARS_HORIZONTAL_ONLY
     Create and display horizontal scrollbar only.
final public static  intSCROLLBARS_NONE
     Do not create or display any scrollbars for the text area.
final public static  intSCROLLBARS_VERTICAL_ONLY
     Create and display vertical scrollbar only.
 intcolumns
     The number of columns in the TextArea. A column is an approximate average character width that is platform-dependent. This parameter will determine the text area's width.
 introws
     The number of rows in the TextArea. This parameter will determine the text area's height.

Constructor Summary
public  TextArea()
     Constructs a new text area with the empty string as text.
public  TextArea(String text)
     Constructs a new text area with the specified text.
public  TextArea(int rows, int columns)
     Constructs a new text area with the specified number of rows and columns and the empty string as text.
public  TextArea(String text, int rows, int columns)
     Constructs a new text area with the specified text, and with the specified number of rows and columns. A column is an approximate average character width that is platform-dependent.
public  TextArea(String text, int rows, int columns, int scrollbars)
     Constructs a new text area with the specified text, and with the rows, columns, and scroll bar visibility as specified.

Method Summary
public  voidaddNotify()
     Creates the TextArea's peer.
public  voidappend(String str)
     Appends the given text to the text area's current text.
public synchronized  voidappendText(String str)
    
 StringconstructComponentName()
     Construct a name for this component.
public  AccessibleContextgetAccessibleContext()
     Returns the AccessibleContext associated with this TextArea.
public  intgetColumns()
     Returns the number of columns in this text area.
public  DimensiongetMinimumSize(int rows, int columns)
     Determines the minimum size of a text area with the specified number of rows and columns.
public  DimensiongetMinimumSize()
     Determines the minimum size of this text area.
public  DimensiongetPreferredSize(int rows, int columns)
     Determines the preferred size of a text area with the specified number of rows and columns.
public  DimensiongetPreferredSize()
     Determines the preferred size of this text area.
public  intgetRows()
     Returns the number of rows in the text area.
public  intgetScrollbarVisibility()
     Returns an enumerated value that indicates which scroll bars the text area uses.
public  voidinsert(String str, int pos)
     Inserts the specified text at the specified position in this text area.
public synchronized  voidinsertText(String str, int pos)
    
public  DimensionminimumSize(int rows, int columns)
    
public  DimensionminimumSize()
    
protected  StringparamString()
     Returns a string representing the state of this TextArea. This method is intended to be used only for debugging purposes, and the content and format of the returned string may vary between implementations.
public  DimensionpreferredSize(int rows, int columns)
    
public  DimensionpreferredSize()
    
public  voidreplaceRange(String str, int start, int end)
     Replaces text between the indicated start and end positions with the specified replacement text.
public synchronized  voidreplaceText(String str, int start, int end)
    
public  voidsetColumns(int columns)
     Sets the number of columns for this text area.
public  voidsetRows(int rows)
     Sets the number of rows for this text area.

Field Detail
SCROLLBARS_BOTH
final public static int SCROLLBARS_BOTH(Code)
Create and display both vertical and horizontal scrollbars.
since:
   JDK1.1



SCROLLBARS_HORIZONTAL_ONLY
final public static int SCROLLBARS_HORIZONTAL_ONLY(Code)
Create and display horizontal scrollbar only.
since:
   JDK1.1



SCROLLBARS_NONE
final public static int SCROLLBARS_NONE(Code)
Do not create or display any scrollbars for the text area.
since:
   JDK1.1



SCROLLBARS_VERTICAL_ONLY
final public static int SCROLLBARS_VERTICAL_ONLY(Code)
Create and display vertical scrollbar only.
since:
   JDK1.1



columns
int columns(Code)
The number of columns in the TextArea. A column is an approximate average character width that is platform-dependent. This parameter will determine the text area's width. Guaranteed to be non-negative.
See Also:   TextArea.setColumns(int)
See Also:   TextArea.getColumns()



rows
int rows(Code)
The number of rows in the TextArea. This parameter will determine the text area's height. Guaranteed to be non-negative.
See Also:   TextArea.getRows()
See Also:   TextArea.setRows(int)




Constructor Detail
TextArea
public TextArea() throws HeadlessException(Code)
Constructs a new text area with the empty string as text. This text area is created with scrollbar visibility equal to TextArea.SCROLLBARS_BOTH , so both vertical and horizontal scrollbars will be visible for this text area.
exception:
  HeadlessException - ifGraphicsEnvironment.isHeadless returns true
See Also:   java.awt.GraphicsEnvironment.isHeadless



TextArea
public TextArea(String text) throws HeadlessException(Code)
Constructs a new text area with the specified text. This text area is created with scrollbar visibility equal to TextArea.SCROLLBARS_BOTH , so both vertical and horizontal scrollbars will be visible for this text area.
Parameters:
  text - the text to be displayed; iftext is null, the emptystring "" will be displayed
exception:
  HeadlessException - ifGraphicsEnvironment.isHeadless returns true
See Also:   java.awt.GraphicsEnvironment.isHeadless



TextArea
public TextArea(int rows, int columns) throws HeadlessException(Code)
Constructs a new text area with the specified number of rows and columns and the empty string as text. A column is an approximate average character width that is platform-dependent. The text area is created with scrollbar visibility equal to TextArea.SCROLLBARS_BOTH , so both vertical and horizontal scrollbars will be visible for this text area.
Parameters:
  rows - the number of rows
Parameters:
  columns - the number of columns
exception:
  HeadlessException - ifGraphicsEnvironment.isHeadless returns true
See Also:   java.awt.GraphicsEnvironment.isHeadless



TextArea
public TextArea(String text, int rows, int columns) throws HeadlessException(Code)
Constructs a new text area with the specified text, and with the specified number of rows and columns. A column is an approximate average character width that is platform-dependent. The text area is created with scrollbar visibility equal to TextArea.SCROLLBARS_BOTH , so both vertical and horizontal scrollbars will be visible for this text area.
Parameters:
  text - the text to be displayed; iftext is null, the emptystring "" will be displayed
Parameters:
  rows - the number of rows
Parameters:
  columns - the number of columns
exception:
  HeadlessException - ifGraphicsEnvironment.isHeadless returns true
See Also:   java.awt.GraphicsEnvironment.isHeadless



TextArea
public TextArea(String text, int rows, int columns, int scrollbars) throws HeadlessException(Code)
Constructs a new text area with the specified text, and with the rows, columns, and scroll bar visibility as specified. All TextArea constructors defer to this one.

The TextArea class defines several constants that can be supplied as values for the scrollbars argument:

  • SCROLLBARS_BOTH,
  • SCROLLBARS_VERTICAL_ONLY,
  • SCROLLBARS_HORIZONTAL_ONLY,
  • SCROLLBARS_NONE.
Any other value for the scrollbars argument is invalid and will result in this text area being created with scrollbar visibility equal to the default value of TextArea.SCROLLBARS_BOTH .
Parameters:
  text - the text to be displayed; iftext is null, the emptystring "" will be displayed
Parameters:
  rows - the number of rows; ifrows is less than 0,rows is set to 0
Parameters:
  columns - the number of columns; ifcolumns is less than 0,columns is set to 0
Parameters:
  scrollbars - a constant that determines whatscrollbars are created to view the text area
since:
   JDK1.1
exception:
  HeadlessException - ifGraphicsEnvironment.isHeadless returns true
See Also:   java.awt.GraphicsEnvironment.isHeadless




Method Detail
addNotify
public void addNotify()(Code)
Creates the TextArea's peer. The peer allows us to modify the appearance of the TextArea without changing any of its functionality.



append
public void append(String str)(Code)
Appends the given text to the text area's current text.

Note that passing null or inconsistent parameters is invalid and will result in unspecified behavior.
Parameters:
  str - the non-null text to append
See Also:   java.awt.TextArea.insert
since:
   JDK1.1




appendText
public synchronized void appendText(String str)(Code)



constructComponentName
String constructComponentName()(Code)
Construct a name for this component. Called by getName when the name is null.



getAccessibleContext
public AccessibleContext getAccessibleContext()(Code)
Returns the AccessibleContext associated with this TextArea. For text areas, the AccessibleContext takes the form of an AccessibleAWTTextArea. A new AccessibleAWTTextArea instance is created if necessary. an AccessibleAWTTextArea that serves as the AccessibleContext of this TextArea
since:
   1.3



getColumns
public int getColumns()(Code)
Returns the number of columns in this text area. the number of columns in the text area
See Also:   TextArea.setColumns(int)
See Also:   TextArea.getRows()



getMinimumSize
public Dimension getMinimumSize(int rows, int columns)(Code)
Determines the minimum size of a text area with the specified number of rows and columns.
Parameters:
  rows - the number of rows
Parameters:
  columns - the number of columns the minimum dimensions required to displaythe text area with the specifiednumber of rows and columns
See Also:   java.awt.Component.getMinimumSize
since:
   JDK1.1



getMinimumSize
public Dimension getMinimumSize()(Code)
Determines the minimum size of this text area. the preferred dimensions needed for this text area
See Also:   java.awt.Component.getPreferredSize
since:
   JDK1.1



getPreferredSize
public Dimension getPreferredSize(int rows, int columns)(Code)
Determines the preferred size of a text area with the specified number of rows and columns.
Parameters:
  rows - the number of rows
Parameters:
  columns - the number of columns the preferred dimensions required to displaythe text area with the specifiednumber of rows and columns
See Also:   java.awt.Component.getPreferredSize
since:
   JDK1.1



getPreferredSize
public Dimension getPreferredSize()(Code)
Determines the preferred size of this text area. the preferred dimensions needed for this text area
See Also:   java.awt.Component.getPreferredSize
since:
   JDK1.1



getRows
public int getRows()(Code)
Returns the number of rows in the text area. the number of rows in the text area
See Also:   TextArea.setRows(int)
See Also:   TextArea.getColumns()
since:
   JDK1



getScrollbarVisibility
public int getScrollbarVisibility()(Code)
Returns an enumerated value that indicates which scroll bars the text area uses.

The TextArea class defines four integer constants that are used to specify which scroll bars are available. TextArea has one constructor that gives the application discretion over scroll bars. an integer that indicates which scroll bars are used
See Also:   java.awt.TextArea.SCROLLBARS_BOTH
See Also:   java.awt.TextArea.SCROLLBARS_VERTICAL_ONLY
See Also:   java.awt.TextArea.SCROLLBARS_HORIZONTAL_ONLY
See Also:   java.awt.TextArea.SCROLLBARS_NONE
See Also:   java.awt.TextArea.TextArea(java.lang.Stringintintint)
since:
   JDK1.1




insert
public void insert(String str, int pos)(Code)
Inserts the specified text at the specified position in this text area.

Note that passing null or inconsistent parameters is invalid and will result in unspecified behavior.
Parameters:
  str - the non-null text to insert
Parameters:
  pos - the position at which to insert
See Also:   java.awt.TextComponent.setText
See Also:   java.awt.TextArea.replaceRange
See Also:   java.awt.TextArea.append
since:
   JDK1.1




insertText
public synchronized void insertText(String str, int pos)(Code)



minimumSize
public Dimension minimumSize(int rows, int columns)(Code)



minimumSize
public Dimension minimumSize()(Code)



paramString
protected String paramString()(Code)
Returns a string representing the state of this TextArea. 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 area



preferredSize
public Dimension preferredSize(int rows, int columns)(Code)



preferredSize
public Dimension preferredSize()(Code)



replaceRange
public void replaceRange(String str, int start, int end)(Code)
Replaces text between the indicated start and end positions with the specified replacement text. The text at the end position will not be replaced. The text at the start position will be replaced (unless the start position is the same as the end position). The text position is zero-based. The inserted substring may be of a different length than the text it replaces.

Note that passing null or inconsistent parameters is invalid and will result in unspecified behavior.
Parameters:
  str - the non-null text to use asthe replacement
Parameters:
  start - the start position
Parameters:
  end - the end position
See Also:   java.awt.TextArea.insert
since:
   JDK1.1




replaceText
public synchronized void replaceText(String str, int start, int end)(Code)



setColumns
public void setColumns(int columns)(Code)
Sets the number of columns for this text area.
Parameters:
  columns - the number of columns
See Also:   TextArea.getColumns()
See Also:   TextArea.setRows(int)
exception:
  IllegalArgumentException - if the valuesupplied for columnsis less than 0
since:
   JDK1.1



setRows
public void setRows(int rows)(Code)
Sets the number of rows for this text area.
Parameters:
  rows - the number of rows
See Also:   TextArea.getRows()
See Also:   TextArea.setColumns(int)
exception:
  IllegalArgumentException - if the valuesupplied for rowsis less than 0
since:
   JDK1.1



Fields inherited from java.awt.TextComponent
boolean backgroundSetByClientCode(Code)(Java Doc)
boolean editable(Code)(Java Doc)
int selectionEnd(Code)(Java Doc)
int selectionStart(Code)(Java Doc)
String text(Code)(Java Doc)
protected transient TextListener textListener(Code)(Java Doc)

Methods inherited from java.awt.TextComponent
public void addNotify()(Code)(Java Doc)
public synchronized void addTextListener(TextListener l)(Code)(Java Doc)
boolean areInputMethodsEnabled()(Code)(Java Doc)
public void enableInputMethods(boolean enable)(Code)(Java Doc)
boolean eventEnabled(AWTEvent e)(Code)(Java Doc)
public AccessibleContext getAccessibleContext()(Code)(Java Doc)
public Color getBackground()(Code)(Java Doc)
public synchronized int getCaretPosition()(Code)(Java Doc)
Rectangle getCharacterBounds(int i)(Code)(Java Doc)
int getIndexAtPoint(Point p)(Code)(Java Doc)
public InputMethodRequests getInputMethodRequests()(Code)(Java Doc)
public T[] getListeners(Class<T> listenerType)(Code)(Java Doc)
public synchronized String getSelectedText()(Code)(Java Doc)
public synchronized int getSelectionEnd()(Code)(Java Doc)
public synchronized int getSelectionStart()(Code)(Java Doc)
public synchronized String getText()(Code)(Java Doc)
public synchronized TextListener[] getTextListeners()(Code)(Java Doc)
public boolean isEditable()(Code)(Java Doc)
protected String paramString()(Code)(Java Doc)
protected void processEvent(AWTEvent e)(Code)(Java Doc)
protected void processTextEvent(TextEvent e)(Code)(Java Doc)
public void removeNotify()(Code)(Java Doc)
public synchronized void removeTextListener(TextListener l)(Code)(Java Doc)
public synchronized void select(int selectionStart, int selectionEnd)(Code)(Java Doc)
public synchronized void selectAll()(Code)(Java Doc)
public void setBackground(Color c)(Code)(Java Doc)
public synchronized void setCaretPosition(int position)(Code)(Java Doc)
public synchronized void setEditable(boolean b)(Code)(Java Doc)
public synchronized void setSelectionEnd(int selectionEnd)(Code)(Java Doc)
public synchronized void setSelectionStart(int selectionStart)(Code)(Java Doc)
public synchronized void setText(String t)(Code)(Java Doc)

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)
AccessibleContext accessibleContext(Code)(Java Doc)
final static String actionListenerK(Code)(Java Doc)
final static String adjustmentListenerK(Code)(Java Doc)
transient AppContext appContext(Code)(Java Doc)
Color background(Code)(Java Doc)
transient BufferStrategy bufferStrategy(Code)(Java Doc)
transient ComponentListener componentListener(Code)(Java Doc)
final static String componentListenerK(Code)(Java Doc)
transient ComponentOrientation componentOrientation(Code)(Java Doc)
final static String containerListenerK(Code)(Java Doc)
Cursor cursor(Code)(Java Doc)
DropTarget dropTarget(Code)(Java Doc)
boolean enabled(Code)(Java Doc)
transient EventQueueItem[] eventCache(Code)(Java Doc)
long eventMask(Code)(Java Doc)
transient FocusListener focusListener(Code)(Java Doc)
final static String focusListenerK(Code)(Java Doc)
Set[] focusTraversalKeys(Code)(Java Doc)
Font font(Code)(Java Doc)
Color foreground(Code)(Java Doc)
transient GraphicsConfiguration graphicsConfig(Code)(Java Doc)
int height(Code)(Java Doc)
transient HierarchyBoundsListener hierarchyBoundsListener(Code)(Java Doc)
final static String hierarchyBoundsListenerK(Code)(Java Doc)
transient HierarchyListener hierarchyListener(Code)(Java Doc)
final static String hierarchyListenerK(Code)(Java Doc)
boolean ignoreRepaint(Code)(Java Doc)
static int incRate(Code)(Java Doc)
transient InputMethodListener inputMethodListener(Code)(Java Doc)
final static String inputMethodListenerK(Code)(Java Doc)
static boolean isInc(Code)(Java Doc)
boolean isPacked(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 maxSize(Code)(Java Doc)
boolean maxSizeSet(Code)(Java Doc)
Dimension minSize(Code)(Java Doc)
boolean minSizeSet(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)
transient MouseWheelListener mouseWheelListener(Code)(Java Doc)
final static String mouseWheelListenerK(Code)(Java Doc)
transient NativeInLightFixer nativeInLightFixer(Code)(Java Doc)
boolean newEventsOnly(Code)(Java Doc)
final static String ownedWindowK(Code)(Java Doc)
transient Container parent(Code)(Java Doc)
transient ComponentPeer peer(Code)(Java Doc)
Font peerFont(Code)(Java Doc)
Vector popups(Code)(Java Doc)
Dimension prefSize(Code)(Java Doc)
boolean prefSizeSet(Code)(Java Doc)
final static String textListenerK(Code)(Java Doc)
volatile boolean valid(Code)(Java Doc)
boolean visible(Code)(Java Doc)
int width(Code)(Java Doc)
transient RuntimeException windowClosingException(Code)(Java Doc)
final static String windowFocusListenerK(Code)(Java Doc)
final static String windowListenerK(Code)(Java Doc)
final static String windowStateListenerK(Code)(Java Doc)
int x(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 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)

Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(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.