blob: 65c31af75061177e82c21a2c230be092ebbb1d84 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008 IBM Corporation.
* 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:
* IBM Corporation - initial API and implementation
******************************************************************************/
package org.eclipse.ptp.rm.mpi.mpich2.ui.launch;
import org.eclipse.debug.ui.ILaunchConfigurationDialog;
import org.eclipse.ptp.core.elements.IResourceManager;
import org.eclipse.ptp.rm.ui.launch.ExtendableRMLaunchConfigurationDynamicTab;
/**
*
* @author Daniel Felix Ferber
*
*/
public class NewMPICH2RMLaunchConfigurationDynamicTab extends ExtendableRMLaunchConfigurationDynamicTab {
/**
* @since 2.0
*/
public NewMPICH2RMLaunchConfigurationDynamicTab(IResourceManager rm, ILaunchConfigurationDialog dialog) {
super(dialog);
addDynamicTab(new BasicMPICH2RMLaunchConfigurationDynamicTab(dialog));
addDynamicTab(new AdvancedMPICH2RMLaunchConfigurationDynamicTab(dialog));
}
}