TextField Example 2 : Text « SWT JFace Eclipse « Java

Java
1. 2D Graphics GUI
2. 3D
3. Advanced Graphics
4. Ant
5. Apache Common
6. Chart
7. Collections Data Structure
8. Database SQL JDBC
9. Design Pattern
10. Development Class
11. Email
12. Event
13. File Input Output
14. Game
15. Hibernate
16. J2EE
17. J2ME
18. JDK 6
19. JSP
20. JSTL
21. Language Basics
22. Network Protocol
23. PDF RTF
24. Regular Expressions
25. Security
26. Servlets
27. Spring
28. Swing Components
29. Swing JFC
30. SWT JFace Eclipse
31. Threads
32. Tiny Application
33. Velocity
34. Web Services SOA
35. XML
Microsoft Office Word 2007 Tutorial
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
C# / C Sharp
C# / CSharp Tutorial
ASP.Net
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
PHP
Python
SQL Server / T-SQL
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Java » SWT JFace Eclipse » TextScreenshots 
TextField Example 2
TextField Example 2

import org.eclipse.swt.SWT;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.swt.widgets.Text;

public class TextFieldExample2 {

  Display d;

  Shell s;

  TextFieldExample2() {
    d = new Display();
    s = new Shell(d);
    s.setSize(250250);
    s.setText("A Text Field Example");
    final Text text1 = new Text(s, SWT.SINGLE | SWT.BORDER);
    text1.setBounds(1005010020);
    final Text text2 = new Text(s, SWT.SINGLE | SWT.BORDER);
    text2.setBounds(1007510020);
    s.open();
    while (!s.isDisposed()) {
      if (!d.readAndDispatch())
        d.sleep();
    }
    d.dispose();
  }

  public static void main(String[] arg) {
    new TextFieldExample2();
  }

}


           
       
Related examples in the same category
1. Text to uppercase
2. Text EventText Event
3. Text and Label demoText and Label demo
4. Wrap LinesWrap Lines
5. Remarks TextRemarks Text
6. Demonstrates text fieldsDemonstrates text fields
7. Demonstrates multiline comments
8. Turns e characters red using a LineStyleListenerTurns e characters red using a LineStyleListener
9. TextField Example 5TextField Example 5
10. TextField Example 4
11. TextField Example 3TextField Example 3
12. TextField ExampleTextField Example
13. SWT XML Editor: Modify DOMSWT XML Editor: Modify DOM
14. Draw internationalized styled text on a shellDraw internationalized styled text on a shell
15. Detect when the user scrolls a text controlDetect when the user scrolls a text control
16. Verify input (format for date)Verify input (format for date)
17. Verify input (only allow digits)Verify input (only allow digits)
18. Set the selection (start, end)Set the selection (start, end)
19. Text example snippet: set the selection (i-beam)Text example snippet: set the selection (i-beam)
20. Select all the text in the controlSelect all the text in the control
21. Resize a text control (show about 10 characters)Resize a text control (show about 10 characters)
22. Prompt for a password (set the echo character)Prompt for a password (set the echo character)
23. Stop CR from going to the default buttonStop CR from going to the default button
24. Add a select all menu item to the controlAdd a select all menu item to the control
25. Detect CR in a text or combo control (default selelection)Detect CR in a text or combo control (default selelection)
w_w_w___._ja__v___a2___s._c__o__m___ | Contact Us
Copyright 2003 - 08 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.