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 172552 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]
Patch v2
patch317505v2.txt (text/plain), 3.28 KB, created by
Konstantin Komissarchik
on 2010-06-23 17:02:31 EDT
(
hide
)
Description:
Patch v2
Filename:
MIME Type:
Creator:
Konstantin Komissarchik
Created:
2010-06-23 17:02:31 EDT
Size:
3.28 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.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 23 Jun 2010 20:59:58 -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; >@@ -133,6 +135,20 @@ > this.sourceFoldersTree = this.sourceFoldersTreeViewer.getTree(); > this.sourceFoldersTree.setLayoutData( gdfill() ); > >+ this.sourceFoldersTree.getAccessible().addAccessibleListener >+ ( >+ new AccessibleAdapter() >+ { >+ public void getName( final AccessibleEvent event ) >+ { >+ if( event.childID == -1 ) >+ { >+ event.result = Resources.sourceFoldersAccessibilityLabel; >+ } >+ } >+ } >+ ); >+ > this.sourceFoldersTreeViewer.setContentProvider( new SourceFoldersContentProvider() ); > this.sourceFoldersTreeViewer.setLabelProvider( new SourceFoldersLabelProvider() ); > this.sourceFoldersTreeViewer.setInput( new Object() ); >@@ -456,6 +472,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; >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 23 Jun 2010 20:59:58 -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
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