blob: 3bd21a56837ee8f90533dadf79e8a038dae315b9 [file] [log] [blame]
/*=============================================================================#
# Copyright (c) 2007, 2017 Stephan Wahlbrink and others.
#
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at
# https://www.eclipse.org/legal/epl-2.0, or the Apache License, Version 2.0
# which is available at https://www.apache.org/licenses/LICENSE-2.0.
#
# SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
#
# Contributors:
# Stephan Wahlbrink <sw@wahlbrink.eu> - initial API and implementation
#=============================================================================*/
package org.eclipse.statet.internal.redocs.tex.r.ui.processing;
import org.eclipse.debug.ui.AbstractLaunchConfigurationTabGroup;
import org.eclipse.debug.ui.ILaunchConfigurationDialog;
import org.eclipse.debug.ui.ILaunchConfigurationTab;
import org.eclipse.statet.ecommons.debug.ui.util.CheckedCommonTab;
/**
* Tab group for Sweave (LaTeX+R) output creation toolchain.
*/
public class TexRweaveConfigTabGroup extends AbstractLaunchConfigurationTabGroup {
public TexRweaveConfigTabGroup() {
}
@Override
public void createTabs(final ILaunchConfigurationDialog dialog, final String mode) {
final ILaunchConfigurationTab[] tabs= new ILaunchConfigurationTab[] {
new RweaveTab(),
new TexTab(),
new PreviewTab(),
new CheckedCommonTab()
};
setTabs(tabs);
}
}