View | Details | Raw Unified | Return to bug 493147 | Differences between
and this patch

Collapse All | Expand All

(-)a/ds/org.eclipse.pde.ds.annotations/src/org/eclipse/pde/ds/internal/annotations/DSAnnotationPropertyPage.java (+4 lines)
Lines 41-46 Link Here
41
import org.eclipse.swt.widgets.Text;
41
import org.eclipse.swt.widgets.Text;
42
import org.eclipse.ui.IWorkbench;
42
import org.eclipse.ui.IWorkbench;
43
import org.eclipse.ui.IWorkbenchPreferencePage;
43
import org.eclipse.ui.IWorkbenchPreferencePage;
44
import org.eclipse.ui.PlatformUI;
44
import org.eclipse.ui.dialogs.PreferencesUtil;
45
import org.eclipse.ui.dialogs.PreferencesUtil;
45
import org.eclipse.ui.dialogs.PropertyPage;
46
import org.eclipse.ui.dialogs.PropertyPage;
46
import org.eclipse.ui.preferences.IWorkbenchPreferenceContainer;
47
import org.eclipse.ui.preferences.IWorkbenchPreferenceContainer;
Lines 169-174 Link Here
169
		refreshWidgets();
170
		refreshWidgets();
170
171
171
		Dialog.applyDialogFont(composite);
172
		Dialog.applyDialogFont(composite);
173
		
174
		PlatformUI.getWorkbench().getHelpSystem().setHelp(parent, IDSAnnotationHelpContextIds.DS_ANNOTATION_PAGE);
175
		
172
		return composite;
176
		return composite;
173
	}
177
	}
174
178
(-)a/ds/org.eclipse.pde.ds.annotations/src/org/eclipse/pde/ds/internal/annotations/IDSAnnotationHelpContextIds.java (+20 lines)
Added Link Here
1
/*******************************************************************************
2
 * Copyright (c) 2016 IBM Corporation and others.
3
 * All rights reserved. This program and the accompanying materials
4
 * are made available under the terms of the Eclipse Public License v1.0
5
 * which accompanies this distribution, and is available at
6
 * http://www.eclipse.org/legal/epl-v10.html
7
 *
8
 * Contributors:
9
 *     IBM Corporation - initial API and implementation
10
 *******************************************************************************/
11
package org.eclipse.pde.ds.internal.annotations;
12
13
public interface IDSAnnotationHelpContextIds {
14
15
	public static final String PREFIX = Activator.PLUGIN_ID + ".";//$NON-NLS-1$ //$NON-NLS-2$
16
17
	// DS annotation page
18
	public static final String DS_ANNOTATION_PAGE = PREFIX + "ds_annotation_page"; //$NON-NLS-1$
19
20
}

Return to bug 493147