blob: 1a4960e408c016d28ccf3745fc03f7746de41598 [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.openmpi.ui.launch;
import org.eclipse.ptp.core.elements.IResourceManager;
import org.eclipse.ptp.rm.ui.launch.ExtendableRMLaunchConfigurationDynamicTab;
/**
*
* @author Daniel Felix Ferber
*
*/
public class NewOpenMPIRMLaunchConfigurationDynamicTab extends
ExtendableRMLaunchConfigurationDynamicTab {
public NewOpenMPIRMLaunchConfigurationDynamicTab(IResourceManager rm) {
super();
addDynamicTab(new BasicOpenMpiRMLaunchConfigurationDynamicTab());
addDynamicTab(new AdvancedOpenMpiRMLaunchConfigurationDynamicTab(rm));
}
}