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 172359 Details for
Bug 317505
[NLS] Accessibility: Labels of lists are not read by JAWS in several wizards
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.
[patch]
The java facet part of 315679
bug317505.patch (text/plain), 3.37 KB, created by
Carl Anderson
on 2010-06-21 15:15:40 EDT
(
hide
)
Description:
The java facet part of 315679
Filename:
MIME Type:
Creator:
Carl Anderson
Created:
2010-06-21 15:15:40 EDT
Size:
3.37 KB
patch
obsolete
>### Eclipse Workspace Patch 1.0 >#P org.eclipse.jst.common.project.facet.ui >Index: src/org/eclipse/jst/common/project/facet/ui/internal/JavaFacetInstallPage.properties >=================================================================== >RCS file: /cvsroot/webtools/common/plugins/org.eclipse.jst.common.project.facet.ui/src/org/eclipse/jst/common/project/facet/ui/internal/JavaFacetInstallPage.properties,v >retrieving revision 1.4 >diff -u -r1.4 JavaFacetInstallPage.properties >--- src/org/eclipse/jst/common/project/facet/ui/internal/JavaFacetInstallPage.properties 5 Feb 2010 19:25:01 -0000 1.4 >+++ src/org/eclipse/jst/common/project/facet/ui/internal/JavaFacetInstallPage.properties 21 Jun 2010 19:14:51 -0000 >@@ -2,6 +2,7 @@ > pageDescription = Configure project for building a Java application. > defaultOutputFolderLabel = &Default output folder\: > sourceFoldersLabel = &Source folders on build path\: >+sourceFoldersAccessibilityLabel = Source folders on build path > addFolderButton = &Add Folder... > editButton = &Edit... > removeButton = &Remove >Index: src/org/eclipse/jst/common/project/facet/ui/internal/JavaFacetInstallPage.java >=================================================================== >RCS file: /cvsroot/webtools/common/plugins/org.eclipse.jst.common.project.facet.ui/src/org/eclipse/jst/common/project/facet/ui/internal/JavaFacetInstallPage.java,v >retrieving revision 1.7 >diff -u -r1.7 JavaFacetInstallPage.java >--- src/org/eclipse/jst/common/project/facet/ui/internal/JavaFacetInstallPage.java 22 Dec 2009 08:15:47 -0000 1.7 >+++ src/org/eclipse/jst/common/project/facet/ui/internal/JavaFacetInstallPage.java 21 Jun 2010 19:14:51 -0000 >@@ -47,6 +47,8 @@ > import org.eclipse.jst.common.project.facet.core.JavaFacetInstallConfig; > import org.eclipse.osgi.util.NLS; > import org.eclipse.swt.SWT; >+import org.eclipse.swt.accessibility.AccessibleAdapter; >+import org.eclipse.swt.accessibility.AccessibleEvent; > import org.eclipse.swt.events.DisposeEvent; > import org.eclipse.swt.events.DisposeListener; > import org.eclipse.swt.events.ModifyEvent; >@@ -128,11 +130,14 @@ > final Label sourceFoldersLabel = new Label( composite, SWT.NONE ); > sourceFoldersLabel.setLayoutData( gdhspan( gd(), 2 ) ); > sourceFoldersLabel.setText( Resources.sourceFoldersLabel ); >- > this.sourceFoldersTreeViewer = new TreeViewer( composite, SWT.BORDER ); > this.sourceFoldersTree = this.sourceFoldersTreeViewer.getTree(); > this.sourceFoldersTree.setLayoutData( gdfill() ); >- >+ this.sourceFoldersTree.getAccessible().addAccessibleListener( >+ new AccessibleAdapter() { >+ public void getName(AccessibleEvent e) { >+ e.result = Resources.sourceFoldersAccessibilityLabel; >+ }}); > this.sourceFoldersTreeViewer.setContentProvider( new SourceFoldersContentProvider() ); > this.sourceFoldersTreeViewer.setLabelProvider( new SourceFoldersLabelProvider() ); > this.sourceFoldersTreeViewer.setInput( new Object() ); >@@ -456,6 +461,7 @@ > public static String pageDescription; > public static String defaultOutputFolderLabel; > public static String sourceFoldersLabel; >+ public static String sourceFoldersAccessibilityLabel; > public static String addFolderButton; > public static String editButton; > public static String removeButton;
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 Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 317505
:
172359
|
172552