Download
Getting Started
Members
Projects
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
More
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
Toggle navigation
Bugzilla – Attachment 14443 Details for
Bug 69350
Accessibility : Group title is not taken into account by Window-Eyes 4.5
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
Log In
[x]
|
Terms of Use
|
Copyright Agent
Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read
this important communication.
GroupTests.java
GroupTests.java (text/plain), 1.09 KB, created by
Carolyn MacLeod
on 2004-09-08 11:25:35 EDT
(
hide
)
Description:
GroupTests.java
Filename:
MIME Type:
Creator:
Carolyn MacLeod
Created:
2004-09-08 11:25:35 EDT
Size:
1.09 KB
patch
obsolete
>package org.eclipse.swt.snippets; > >import org.eclipse.swt.*; >import org.eclipse.swt.widgets.*; >import org.eclipse.swt.layout.*; > >public class GroupTests { > static Display display; > static Shell shell; > > public static void main(String[] args) { > display = new Display(); > shell = new Shell(display); > shell.setLayout(new GridLayout(2, true)); > shell.setText("Group Tests"); > > Group group1 = new Group(shell, SWT.NONE); > group1.setLayout(new GridLayout()); > group1.setText("Foreground"); > Button button1 = new Button(group1, SWT.RADIO); > button1.setText("green"); > button1.setSelection(true); > new Button(group1, SWT.RADIO).setText("blue"); > > Group group2 = new Group(shell, SWT.NONE); > group2.setLayout(new GridLayout()); > group2.setText("Background"); > new Button(group2, SWT.RADIO).setText("green"); > Button button2 = new Button(group2, SWT.RADIO); > button2.setText("blue"); > button2.setSelection(true); > > shell.pack(); > shell.open(); > while (!shell.isDisposed()) { > if (!display.readAndDispatch()) display.sleep(); > } > display.dispose(); > } >}
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 69350
:
14333
| 14443 |
15052