|
|
|
| Feature | Description |
|
Swing GUI Components |
Includes everything from buttons to split panes to tables. |
|
Pluggable Look-and-Feel Support |
Gives any program that uses Swing components a choice of look and feel. For example, the same program can use either the Java or the Windows look and feel. Many more look-and-feel packages are available from various sources. As of v1.4.2, the Java platform supports the GTK+ look and feel, which makes hundreds of existing look and feels available to Swing programs. |
|
Accessibility API |
Enables assistive technologies, such as screen readers and Braille displays, to get information from the user interface. |
|
Java 2D API |
Enables developers to easily incorporate high-quality 2D graphics, text, and images in applications and applets. Java 2D includes extensive APIs for generating and sending high-quality output to printing devices. |
|
Drag-and-Drop Support |
Provides the ability to drag and drop between Java applications and native applications. |
|
Internationalization |
Allows developers to build applications that can interact with users worldwide in their own languages and cultural conventions. With the input method framework developers can build applications that accept text in languages that use thousands of different characters, such as Japanese, Chinese, or Korean. |
javax.swing.
This trail concentrates on the Swing API in the Java 2 platform, Standard Edition, v1.4.2. Except where noted, the code in this trail works, without change, with earlier J2SE releases. We also include notes about a few important changes expected in 1.5.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
javax.swing
javax.swing.event (not always required)
Bhopal news
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100