debuggercdi/com.nokia.cdt.debug.launch/src/com/nokia/cdt/internal/debug/launch/PhoneLaunchShortcut.java
author dadubrow
Mon, 15 Feb 2010 13:49:01 -0600
changeset 956 d1e221a2875f
child 1168 8e38fdef1cea
permissions -rw-r--r--
new launch wizard implementation
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
956
d1e221a2875f new launch wizard implementation
dadubrow
parents:
diff changeset
     1
/*
d1e221a2875f new launch wizard implementation
dadubrow
parents:
diff changeset
     2
* Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
d1e221a2875f new launch wizard implementation
dadubrow
parents:
diff changeset
     3
* All rights reserved.
d1e221a2875f new launch wizard implementation
dadubrow
parents:
diff changeset
     4
* This component and the accompanying materials are made available
d1e221a2875f new launch wizard implementation
dadubrow
parents:
diff changeset
     5
* under the terms of the License "Eclipse Public License v1.0"
d1e221a2875f new launch wizard implementation
dadubrow
parents:
diff changeset
     6
* which accompanies this distribution, and is available
d1e221a2875f new launch wizard implementation
dadubrow
parents:
diff changeset
     7
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
d1e221a2875f new launch wizard implementation
dadubrow
parents:
diff changeset
     8
*
d1e221a2875f new launch wizard implementation
dadubrow
parents:
diff changeset
     9
* Initial Contributors:
d1e221a2875f new launch wizard implementation
dadubrow
parents:
diff changeset
    10
* Nokia Corporation - initial contribution.
d1e221a2875f new launch wizard implementation
dadubrow
parents:
diff changeset
    11
*
d1e221a2875f new launch wizard implementation
dadubrow
parents:
diff changeset
    12
* Contributors:
d1e221a2875f new launch wizard implementation
dadubrow
parents:
diff changeset
    13
*
d1e221a2875f new launch wizard implementation
dadubrow
parents:
diff changeset
    14
* Description: 
d1e221a2875f new launch wizard implementation
dadubrow
parents:
diff changeset
    15
*
d1e221a2875f new launch wizard implementation
dadubrow
parents:
diff changeset
    16
*/
d1e221a2875f new launch wizard implementation
dadubrow
parents:
diff changeset
    17
package com.nokia.cdt.internal.debug.launch;
d1e221a2875f new launch wizard implementation
dadubrow
parents:
diff changeset
    18
d1e221a2875f new launch wizard implementation
dadubrow
parents:
diff changeset
    19
import org.eclipse.cdt.debug.core.executables.Executable;
d1e221a2875f new launch wizard implementation
dadubrow
parents:
diff changeset
    20
import org.eclipse.core.resources.IProject;
d1e221a2875f new launch wizard implementation
dadubrow
parents:
diff changeset
    21
import org.eclipse.core.runtime.IPath;
d1e221a2875f new launch wizard implementation
dadubrow
parents:
diff changeset
    22
d1e221a2875f new launch wizard implementation
dadubrow
parents:
diff changeset
    23
import com.nokia.carbide.remoteconnections.RemoteConnectionsActivator;
d1e221a2875f new launch wizard implementation
dadubrow
parents:
diff changeset
    24
import com.nokia.carbide.remoteconnections.interfaces.IConnectionTypeProvider;
d1e221a2875f new launch wizard implementation
dadubrow
parents:
diff changeset
    25
import com.nokia.carbide.remoteconnections.interfaces.IService;
d1e221a2875f new launch wizard implementation
dadubrow
parents:
diff changeset
    26
import com.nokia.cdt.internal.debug.launch.LaunchPlugin.ILaunchCreationWizardFactory;
d1e221a2875f new launch wizard implementation
dadubrow
parents:
diff changeset
    27
import com.nokia.cdt.internal.debug.launch.newwizard.LaunchWizard;
d1e221a2875f new launch wizard implementation
dadubrow
parents:
diff changeset
    28
import com.nokia.cdt.internal.debug.launch.wizard.ILaunchCreationWizard;
d1e221a2875f new launch wizard implementation
dadubrow
parents:
diff changeset
    29
import com.nokia.cdt.internal.debug.launch.wizard.LaunchOptions;
d1e221a2875f new launch wizard implementation
dadubrow
parents:
diff changeset
    30
d1e221a2875f new launch wizard implementation
dadubrow
parents:
diff changeset
    31
public class PhoneLaunchShortcut extends AbstractSymbianLaunchShortcut {
d1e221a2875f new launch wizard implementation
dadubrow
parents:
diff changeset
    32
d1e221a2875f new launch wizard implementation
dadubrow
parents:
diff changeset
    33
	@Override
d1e221a2875f new launch wizard implementation
dadubrow
parents:
diff changeset
    34
	protected void launchProject(IProject project, Executable executable, IPath defaultMMP, String mode) {
d1e221a2875f new launch wizard implementation
dadubrow
parents:
diff changeset
    35
		LaunchPlugin.getDefault().launchProject(project, executable, defaultMMP, mode, 
d1e221a2875f new launch wizard implementation
dadubrow
parents:
diff changeset
    36
																new ILaunchCreationWizardFactory() {
d1e221a2875f new launch wizard implementation
dadubrow
parents:
diff changeset
    37
					public ILaunchCreationWizard createLaunchCreationWizard(LaunchOptions launchOptions) throws Exception {
d1e221a2875f new launch wizard implementation
dadubrow
parents:
diff changeset
    38
						IConnectionTypeProvider provider = RemoteConnectionsActivator.getConnectionTypeProvider();
d1e221a2875f new launch wizard implementation
dadubrow
parents:
diff changeset
    39
						IService trkService = provider.findServiceByID("com.nokia.carbide.trk.support.service.TRKService"); //$NON-NLS-1$
d1e221a2875f new launch wizard implementation
dadubrow
parents:
diff changeset
    40
						LaunchWizard launchWizard = new LaunchWizard(launchOptions, trkService);
d1e221a2875f new launch wizard implementation
dadubrow
parents:
diff changeset
    41
						return launchWizard;
d1e221a2875f new launch wizard implementation
dadubrow
parents:
diff changeset
    42
					};
d1e221a2875f new launch wizard implementation
dadubrow
parents:
diff changeset
    43
				});
d1e221a2875f new launch wizard implementation
dadubrow
parents:
diff changeset
    44
	}
d1e221a2875f new launch wizard implementation
dadubrow
parents:
diff changeset
    45
}