Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 189977
Collapse All | Expand All

(-)src/org/eclipse/hyades/test/ui/internal/util/ContextIds.java (-2 / +5 lines)
Lines 1-5 Link Here
1
/**********************************************************************
1
/**********************************************************************
2
 * Copyright (c) 2005, 2007 IBM Corporation and others.
2
 * Copyright (c) 2005, 2008 IBM Corporation and others.
3
 * All rights reserved.   This program and the accompanying materials
3
 * All rights reserved.   This program and the accompanying materials
4
 * are made available under the terms of the Eclipse Public License v1.0
4
 * are made available under the terms of the Eclipse Public License v1.0
5
 * which accompanies this distribution, and is available at
5
 * which accompanies this distribution, and is available at
Lines 17-27 Link Here
17
 * 
17
 * 
18
 * 
18
 * 
19
 * @author      Paul E. Slauenwhite
19
 * @author      Paul E. Slauenwhite
20
 * @version     December 6, 2007
20
 * @version     May 16, 2008
21
 * @since       February 1, 2005
21
 * @since       February 1, 2005
22
 */
22
 */
23
public class ContextIds {
23
public class ContextIds {
24
24
25
	//New test from recording wizard:
26
	public static final String REC_WIZ = ".recw0001"; //$NON-NLS-1$
27
25
	//New resource wizard:
28
	//New resource wizard:
26
	public static final String RES_WIZ = ".resw0001"; //$NON-NLS-1$
29
	public static final String RES_WIZ = ".resw0001"; //$NON-NLS-1$
27
30
(-)src-recorder/org/eclipse/tptp/test/internal/recorder/ui/wizards/NewRecordingWizardPage.java (-1 / +7 lines)
Lines 23-28 Link Here
23
import org.eclipse.hyades.test.ui.TestUIImages;
23
import org.eclipse.hyades.test.ui.TestUIImages;
24
import org.eclipse.hyades.test.ui.UiPlugin;
24
import org.eclipse.hyades.test.ui.UiPlugin;
25
import org.eclipse.hyades.test.ui.internal.resources.UiPluginResourceBundle;
25
import org.eclipse.hyades.test.ui.internal.resources.UiPluginResourceBundle;
26
import org.eclipse.hyades.test.ui.internal.util.ContextIds;
26
import org.eclipse.jface.preference.IPreferenceStore;
27
import org.eclipse.jface.preference.IPreferenceStore;
27
import org.eclipse.jface.resource.ImageDescriptor;
28
import org.eclipse.jface.resource.ImageDescriptor;
28
import org.eclipse.jface.wizard.WizardPage;
29
import org.eclipse.jface.wizard.WizardPage;
Lines 43-48 Link Here
43
import org.eclipse.swt.widgets.TableItem;
44
import org.eclipse.swt.widgets.TableItem;
44
import org.eclipse.tptp.test.provisional.recorder.ui.wizards.IGenericRecorderWizard;
45
import org.eclipse.tptp.test.provisional.recorder.ui.wizards.IGenericRecorderWizard;
45
import org.eclipse.tptp.test.provisional.recorder.ui.wizards.IRecorderPageProvider;
46
import org.eclipse.tptp.test.provisional.recorder.ui.wizards.IRecorderPageProvider;
47
import org.eclipse.ui.PlatformUI;
46
48
47
/**
49
/**
48
 * The first page of the Generic Recorder Framework (GRF) wizard.
50
 * The first page of the Generic Recorder Framework (GRF) wizard.
Lines 55-61 Link Here
55
 * 
57
 * 
56
 * @author  Jeffery Nevicosi
58
 * @author  Jeffery Nevicosi
57
 * @author  Paul E. Slauenwhite
59
 * @author  Paul E. Slauenwhite
58
 * @version March 7, 2008
60
 * @version May 16, 2008
59
 * @since   September 23, 2005
61
 * @since   September 23, 2005
60
 */
62
 */
61
public class NewRecordingWizardPage extends WizardPage implements
63
public class NewRecordingWizardPage extends WizardPage implements
Lines 106-111 Link Here
106
	 * @see org.eclipse.jface.dialogs.IDialogPage#createControl(org.eclipse.swt.widgets.Composite)
108
	 * @see org.eclipse.jface.dialogs.IDialogPage#createControl(org.eclipse.swt.widgets.Composite)
107
	 */
109
	 */
108
	public void createControl(Composite parent) {
110
	public void createControl(Composite parent) {
111
		
112
		//Set the context sensitive help for the wizard page:
113
		PlatformUI.getWorkbench().getHelpSystem().setHelp(parent, UiPlugin.getID() + ContextIds.REC_WIZ);		
114
		
109
		setPageComplete(false);
115
		setPageComplete(false);
110
		setDescription(UiPluginResourceBundle.NewRecordingWizardPage_DESCRIPTION);
116
		setDescription(UiPluginResourceBundle.NewRecordingWizardPage_DESCRIPTION);
111
		Composite composite = new Composite(parent, SWT.NULL);
117
		Composite composite = new Composite(parent, SWT.NULL);
(-)infopop/testUI.xml (+6 lines)
Lines 177-182 Link Here
177
<!--topic href="../org.eclipse.hyades.test.doc/tasks/tsetting_preferences.htm" label="Setting Test preferences"/-->
177
<!--topic href="../org.eclipse.hyades.test.doc/tasks/tsetting_preferences.htm" label="Setting Test preferences"/-->
178
</context>
178
</context>
179
179
180
<context id="recw0001">
181
<!--New test from recording wizard content-->
182
<description>Select the recorder to create a new recording and test or create a new test from an existing recording.</description>
183
<topic href="../org.eclipse.tptp.test.recorders.url.doc.user/tasks/trecordtest.html" label="Creating a new test from a recording"/>
184
</context>
185
180
<context id="resw0001">
186
<context id="resw0001">
181
<!--New resource wizard content-->
187
<!--New resource wizard content-->
182
<description>Select an existing resource in the workspace or create a new resource in the workspace.</description>
188
<description>Select an existing resource in the workspace or create a new resource in the workspace.</description>

Return to bug 189977