Java Doc for WingTextField.java in  » Web-Framework » wingS » com » javujavu » javux » wings » 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 » Web Framework » wingS » com.javujavu.javux.wings 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


com.javujavu.javux.wings.WingComponent
   com.javujavu.javux.wings.WingTextField

WingTextField
public class WingTextField extends WingComponent (Code)
WingTextField is a component that allows the editing of a single line of text.
This class is thread safe.


Field Summary
protected  ColorcaretColor
    
protected  intcaretWidth
    
protected  booleanfocused
    
protected  booleanreadonly
    
protected  StylestFocused
    
protected  StylestReadonly
    
protected  StylestSelected
    

Constructor Summary
public  WingTextField()
     Constructs a new text field.
public  WingTextField(int cols)
     Constructs a new empty text field with the specified number of columns.
public  WingTextField(String text, int cols)
     Constructs a new text field with the specified custom style ID initialized with the specified text and wide enough to hold the specified number of columns.
Parameters:
  styleId - custom style ID
Parameters:
  text - the text to be displayed.

Method Summary
public  voidaddTextListener(TextListener l)
     Adds the specified text event listener to receive text events from this text component.
public  voidcopy()
     Transfers the currently selected range in the text field to the system clipboard, leaving the contents in the text field.
public  voidcut()
     Transfers the currently selected range in the text field to the system clipboard, removing the contents from the text field.
public  voiddoLayout()
    
public  DimensiongetPreferredSize()
    
public synchronized  StringgetSelectedText()
     Returns the selected text from the text that is presented by this text field.
public  StylegetStyle()
    
public  StringgetText()
     Returns the text that is presented by this text field.
public synchronized  voidinsert(int pos, String text)
     Inserts the specified text at the specified position in this text area.
public  voidloadSkin()
    
public  voidpaste()
     Transfers the contents of the system clipboard into the text field.
protected  voidprocessFocusEvent(FocusEvent e)
    
public synchronized  voidremove(int start, int end)
    
public synchronized  voidreplaceSelection(String text)
     Replaces the currently selected content with new content represented by the given string.
public synchronized  voidselectAll()
     Selects all the text in this text component.
public  voidsetColumns(int columns)
     Sets the number of columns in this text field.
public synchronized  voidsetEcho(String echo)
     Sets the echo characters for this text field.
public  voidsetEditable(boolean b)
     Sets the flag that determines whether or not this text field is editable.
public synchronized  voidsetHorizontalAlignment(int alignment)
     Sets the horizontal alignment of the text.
public synchronized  voidsetText(String text)
     Sets the text that is presented by this text filed to be the specified text.
public  voidwingPaint(Graphics g)
    
public  voidwingProcessActionEvent(ActionEvent e)
    
protected  voidwingProcessKeyEvent(KeyEvent e, WingComponent redirecting)
    
protected  voidwingProcessMouseEvent(MouseEvent e)
    

Field Detail
caretColor
protected Color caretColor(Code)



caretWidth
protected int caretWidth(Code)



focused
protected boolean focused(Code)



readonly
protected boolean readonly(Code)



stFocused
protected Style stFocused(Code)



stReadonly
protected Style stReadonly(Code)



stSelected
protected Style stSelected(Code)




Constructor Detail
WingTextField
public WingTextField()(Code)
Constructs a new text field.



WingTextField
public WingTextField(int cols)(Code)
Constructs a new empty text field with the specified number of columns.
Parameters:
  cols - the number of columns



WingTextField
public WingTextField(String text, int cols)(Code)
Constructs a new text field with the specified custom style ID initialized with the specified text and wide enough to hold the specified number of columns.
Parameters:
  styleId - custom style ID
Parameters:
  text - the text to be displayed. Iftext is null, the emptystring "" will be displayed.
Parameters:
  cols - the number of columns.




Method Detail
addTextListener
public void addTextListener(TextListener l)(Code)
Adds the specified text event listener to receive text events from this text component. If l is null, no exception is thrown and no action is performed.
Parameters:
  l - the text event listener



copy
public void copy()(Code)
Transfers the currently selected range in the text field to the system clipboard, leaving the contents in the text field.



cut
public void cut()(Code)
Transfers the currently selected range in the text field to the system clipboard, removing the contents from the text field.



doLayout
public void doLayout()(Code)



getPreferredSize
public Dimension getPreferredSize()(Code)



getSelectedText
public synchronized String getSelectedText()(Code)
Returns the selected text from the text that is presented by this text field. the selected text of this text field



getStyle
public Style getStyle()(Code)

See Also:   com.javujavu.javux.wings.WingComponent.getStyle



getText
public String getText()(Code)
Returns the text that is presented by this text field. By default, this is an empty string. the value of this WingTextComponent



insert
public synchronized void insert(int pos, String text)(Code)
Inserts the specified text at the specified position in this text area. This method allows negative position values. The text with negative position is inserted at getText().length()+pos+1 which means at the end of the field for pos = -1
Parameters:
  text - the text to insert
Parameters:
  pos - the position at which to insert



loadSkin
public void loadSkin()(Code)
Loads skin resources.
 styles:
 [optional styleID.]textfield.doc.normal
 [optional styleID.]textfield.doc.selected
 [optional styleID.]textfield.doc.focused
 [optional styleID.]textfield.doc.disabled
 [optional styleID.]textfield.doc.readonly
 extra properties:
 [optional styleID.]textfield.caret.color
 [optional styleID.]textfield.caret.width
 

See Also:   Style
See Also:   WingSkin



paste
public void paste()(Code)
Transfers the contents of the system clipboard into the text field.



processFocusEvent
protected void processFocusEvent(FocusEvent e)(Code)



remove
public synchronized void remove(int start, int end)(Code)
Removes text between the specified start and end positions
Parameters:
  start - the start position
Parameters:
  end - the end position



replaceSelection
public synchronized void replaceSelection(String text)(Code)
Replaces the currently selected content with new content represented by the given string. If there is no selection this amounts to an insert of the given text. If there is no replacement text this amounts to a removal of the current selection.
Parameters:
  text - the content to replace the selection with



selectAll
public synchronized void selectAll()(Code)
Selects all the text in this text component.



setColumns
public void setColumns(int columns)(Code)
Sets the number of columns in this text field.
Parameters:
  columns - the number of columns.



setEcho
public synchronized void setEcho(String echo)(Code)
Sets the echo characters for this text field.

An echo is useful for text fields where user input should not be echoed to the screen, as in the case of a text field for entering a password. Setting echo = null allows user input to be echoed to the screen again.
Parameters:
  echo - the echo characters for this text field.




setEditable
public void setEditable(boolean b)(Code)
Sets the flag that determines whether or not this text field is editable.
Parameters:
  b - a flag indicating whether this text fieldis user editable.



setHorizontalAlignment
public synchronized void setHorizontalAlignment(int alignment)(Code)
Sets the horizontal alignment of the text. Valid keys are:
  • WingTextField.LEFT
  • WingTextField.RIGHT

Parameters:
  alignment - the alignment
since:
   WingS 1.1.1



setText
public synchronized void setText(String text)(Code)
Sets the text that is presented by this text filed to be the specified text.
Parameters:
  text - the new text.



wingPaint
public void wingPaint(Graphics g)(Code)

See Also:   com.javujavu.javux.wings.WingComponent.wingPaint(java.awt.Graphics)



wingProcessActionEvent
public void wingProcessActionEvent(ActionEvent e)(Code)



wingProcessKeyEvent
protected void wingProcessKeyEvent(KeyEvent e, WingComponent redirecting)(Code)



wingProcessMouseEvent
protected void wingProcessMouseEvent(MouseEvent e)(Code)



Fields inherited from com.javujavu.javux.wings.WingComponent
final public static int POET_EVENT(Code)(Java Doc)
final public static int WINGSKIN_VERSION(Code)(Java Doc)
final public static String WINGS_VERSION(Code)(Java Doc)
protected ActionListener actionListener(Code)(Java Doc)
protected static int debugDelay(Code)(Java Doc)
protected static ItemRenderer defaultRenderer(Code)(Java Doc)
protected static boolean doubleBuffering(Code)(Java Doc)
protected static Thread eventThread(Code)(Java Doc)
protected static boolean heavyPopups(Code)(Java Doc)
protected ItemListener itemListener(Code)(Java Doc)
protected static boolean lightPopups(Code)(Java Doc)
protected static WingComponent mrRoot(Code)(Java Doc)
final protected static Vector oetEvents(Code)(Java Doc)
protected static boolean oetNoQueue(Code)(Java Doc)
final protected static Vector oetTargets(Code)(Java Doc)
protected WingComponent popupOwner(Code)(Java Doc)
protected ItemRenderer renderer(Code)(Java Doc)
protected Vector shortcuts(Code)(Java Doc)
protected Style stDisabled(Code)(Java Doc)
protected Style stNormal(Code)(Java Doc)
protected Style stTop(Code)(Java Doc)
protected String styleId(Code)(Java Doc)
final protected static WingTimer tipStartTimer(Code)(Java Doc)
final protected static WingTimer tipStopTimer(Code)(Java Doc)
protected Object tooltip(Code)(Java Doc)
protected boolean wingFocusable(Code)(Java Doc)
protected Dimension wingPrefSize(Code)(Java Doc)
protected boolean wingPrefSizeSet(Code)(Java Doc)
protected int wingValid(Code)(Java Doc)

Methods inherited from com.javujavu.javux.wings.WingComponent
public void addActionListener(ActionListener l)(Code)(Java Doc)
public void addItemListener(ItemListener l)(Code)(Java Doc)
public void addNotify()(Code)(Java Doc)
public void addShortcut(Shortcut s)(Code)(Java Doc)
public void addShortcuts(WingComponent source)(Code)(Java Doc)
protected void cancelPopup(WingComponent src)(Code)(Java Doc)
protected static void clrPopup(WingComponent popup)(Code)(Java Doc)
protected void dispatchEventOET(AWTEvent e)(Code)(Java Doc)
protected boolean dispatchEventsOET()(Code)(Java Doc)
protected void dispatchShortcuts(KeyEvent e)(Code)(Java Doc)
protected void doScrollRectToVisible(Rectangle r)(Code)(Java Doc)
public static void enablePopups(boolean enableLightweightPopups, boolean enableHeavyweightPopups)(Code)(Java Doc)
public Color getBackground()(Code)(Java Doc)
public String getClipboardText()(Code)(Java Doc)
public Font getFont()(Code)(Java Doc)
public Color getForeground()(Code)(Java Doc)
public Dimension getMinimumSize()(Code)(Java Doc)
public Frame getParentFrame()(Code)(Java Doc)
public Dimension getPreferredSize()(Code)(Java Doc)
public ItemRenderer getRenderer()(Code)(Java Doc)
public WingRootPane getRootPane()(Code)(Java Doc)
public void getScrollIncrements(Point unit, Point block)(Code)(Java Doc)
public Style getStyle()(Code)(Java Doc)
public Object getTooltipAt(int x, int y)(Code)(Java Doc)
public Dimension getViewOrSize()(Code)(Java Doc)
public Dimension getViewSize()(Code)(Java Doc)
protected Dimension getViewSize(WingComponent child)(Code)(Java Doc)
public WingFont getWingFont()(Code)(Java Doc)
protected void hideTooltip()(Code)(Java Doc)
public boolean imageUpdate(Image img, int infoflags, int x, int y, int w, int h)(Code)(Java Doc)
public void invalidate()(Code)(Java Doc)
public boolean isFocusTraversable()(Code)(Java Doc)
public void loadSkin()(Code)(Java Doc)
public void mouseWheelMoved(Object source, int wheelRotation)(Code)(Java Doc)
public void paint(Graphics g)(Code)(Java Doc)
public void paintBackground(Graphics g)(Code)(Java Doc)
public void paintComponent(Graphics g)(Code)(Java Doc)
public void postOnEventThread(AWTEvent e)(Code)(Java Doc)
protected void processEvent(AWTEvent 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 void removeActionListener(ActionListener l)(Code)(Java Doc)
public void removeItemListener(ItemListener l)(Code)(Java Doc)
public void removeShortcut(Shortcut s)(Code)(Java Doc)
public void removeShortcuts(WingComponent source)(Code)(Java Doc)
public void repaintVisible()(Code)(Java Doc)
public boolean repaintVisible(int x, int y, int width, int height)(Code)(Java Doc)
public void revalidateAndRepaint()(Code)(Java Doc)
public void scrollRectToVisible(Rectangle r)(Code)(Java Doc)
public void setClipboardText(String text)(Code)(Java Doc)
public static void setDebugDelay(int debugDelay)(Code)(Java Doc)
public static void setDoubleBuffering(boolean doubleBuffering)(Code)(Java Doc)
public void setEnabled(boolean b)(Code)(Java Doc)
protected static void setPopup(WingComponent popup)(Code)(Java Doc)
public void setPreferredSize(Dimension prefSize)(Code)(Java Doc)
public void setRenderer(ItemRenderer renderer)(Code)(Java Doc)
public void setStyleId(String styleId)(Code)(Java Doc)
public void setTooltip(Object tooltip)(Code)(Java Doc)
public void setTopStyle(Style topStyle)(Code)(Java Doc)
public void setWingFocusable(boolean focusable)(Code)(Java Doc)
protected void showTooltip(Point point)(Code)(Java Doc)
public void update(Graphics g)(Code)(Java Doc)
protected void updateShortcuts(WingComponent target, boolean add)(Code)(Java Doc)
public static void updateSkin(Container c)(Code)(Java Doc)
protected void validateTree()(Code)(Java Doc)
public void wingHierarchyChanged(boolean showing)(Code)(Java Doc)
public void wingPaint(Graphics g)(Code)(Java Doc)
protected void wingProcessActionEvent(ActionEvent e)(Code)(Java Doc)
protected void wingProcessItemEvent(ItemEvent e)(Code)(Java Doc)
protected void wingProcessKeyEvent(KeyEvent e, WingComponent redirecting)(Code)(Java Doc)
protected void wingProcessMouseEvent(MouseEvent e)(Code)(Java Doc)
public void wingRequestFocusInWindow()(Code)(Java Doc)
protected void wingValidate()(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.