View | Details | Raw Unified | Return to bug 227326
Collapse All | Expand All

(-)ui/org/eclipse/jdt/internal/ui/javaeditor/breadcrumb/BreadcrumbItemDetails.java (+4 lines)
Lines 30-35 Link Here
30
import org.eclipse.swt.widgets.Display;
30
import org.eclipse.swt.widgets.Display;
31
import org.eclipse.swt.widgets.Label;
31
import org.eclipse.swt.widgets.Label;
32
32
33
import org.eclipse.jdt.internal.ui.util.SWTUtil;
34
33
35
34
/**
36
/**
35
 * The label and icon part of the breadcrumb item.
37
 * The label and icon part of the breadcrumb item.
Lines 150-155 Link Here
150
	public void setText(String text) {
152
	public void setText(String text) {
151
		if (text != null) {
153
		if (text != null) {
152
			fElementText.setText(text);
154
			fElementText.setText(text);
155
			SWTUtil.setAccessibilityText(fTextComposite, text);
156
			SWTUtil.setAccessibilityText(fImageComposite, text);
153
		} else {
157
		} else {
154
			fElementText.setText(""); //$NON-NLS-1$
158
			fElementText.setText(""); //$NON-NLS-1$
155
		}
159
		}
(-)ui/org/eclipse/jdt/internal/ui/javaeditor/breadcrumb/BreadcrumbItemDropDown.java (+2 lines)
Lines 52-57 Link Here
52
import org.eclipse.jdt.ui.JavaElementComparator;
52
import org.eclipse.jdt.ui.JavaElementComparator;
53
53
54
import org.eclipse.jdt.internal.ui.JavaPluginImages;
54
import org.eclipse.jdt.internal.ui.JavaPluginImages;
55
import org.eclipse.jdt.internal.ui.util.SWTUtil;
55
56
56
57
57
/**
58
/**
Lines 81-86 Link Here
81
		
82
		
82
		fToolBar= new ToolBar(composite, SWT.FLAT);
83
		fToolBar= new ToolBar(composite, SWT.FLAT);
83
		fToolBar.setLayoutData(new GridData(SWT.END, SWT.CENTER, false, false));
84
		fToolBar.setLayoutData(new GridData(SWT.END, SWT.CENTER, false, false));
85
		SWTUtil.setAccessibilityText(fToolBar, BreadcrumbMessages.BreadcrumbItemDropDown_showDropDownMenu_action_toolTip);
84
		ToolBarManager manager= new ToolBarManager(fToolBar);
86
		ToolBarManager manager= new ToolBarManager(fToolBar);
85
87
86
		Action showDropDownMenuAction= new Action(null, SWT.NONE) {
88
		Action showDropDownMenuAction= new Action(null, SWT.NONE) {

Return to bug 227326