/******************************************************************************* * Copyright (c) 2008, 2012 Red Hat, Inc. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Elliott Baron <ebaron@redhat.com> - initial API and implementation * Red Hat Inc. - modification to use code in this plug-in *******************************************************************************/ package org.eclipse.linuxtools.internal.gprof.launch; import org.eclipse.debug.core.ILaunchConfigurationType; import org.eclipse.debug.core.ILaunchConfigurationWorkingCopy; import org.eclipse.linuxtools.profiling.launch.ProfileLaunchShortcut; public class GprofLaunchShortcut extends ProfileLaunchShortcut { @Override protected void setDefaultProfileAttributes( ILaunchConfigurationWorkingCopy wc) { //nothing to do } /** * Method getValgrindLaunchConfigType. * @return ILaunchConfigurationType */ @Override protected ILaunchConfigurationType getLaunchConfigType() { return getLaunchManager().getLaunchConfigurationType(GprofLaunch.LAUNCH_ID); } }