net.officefloor.eclipse.woof.launch.WoofTabGroup Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of net.officefloor.extras Show documentation
Show all versions of net.officefloor.extras Show documentation
Provides Eclipse extensions for extra OfficeFloor plug-ins
/*
* OfficeFloor - http://www.officefloor.net
* Copyright (C) 2005-2013 Daniel Sagenschneider
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see .
*/
package net.officefloor.eclipse.woof.launch;
import net.officefloor.plugin.woof.WoofOfficeFloorSource;
import org.eclipse.debug.ui.AbstractLaunchConfigurationTabGroup;
import org.eclipse.debug.ui.CommonTab;
import org.eclipse.debug.ui.EnvironmentTab;
import org.eclipse.debug.ui.ILaunchConfigurationDialog;
import org.eclipse.debug.ui.ILaunchConfigurationTab;
import org.eclipse.debug.ui.ILaunchConfigurationTabGroup;
import org.eclipse.debug.ui.sourcelookup.SourceLookupTab;
import org.eclipse.jdt.debug.ui.launchConfigurations.JavaArgumentsTab;
import org.eclipse.jdt.debug.ui.launchConfigurations.JavaClasspathTab;
import org.eclipse.jdt.debug.ui.launchConfigurations.JavaJRETab;
import org.eclipse.jdt.debug.ui.launchConfigurations.JavaMainTab;
/**
* {@link ILaunchConfigurationTabGroup} for the {@link WoofOfficeFloorSource}.
*
* @author Daniel Sagenschneider
*/
public class WoofTabGroup extends AbstractLaunchConfigurationTabGroup {
/*
* ============== AbstractLaunchConfigurationTabGroup ================
*/
@Override
public void createTabs(ILaunchConfigurationDialog dialog, String mode) {
// Specify the tabs
ILaunchConfigurationTab[] tabs = new ILaunchConfigurationTab[] {
new JavaMainTab(), new JavaArgumentsTab(), new JavaJRETab(),
new JavaClasspathTab(), new SourceLookupTab(),
new EnvironmentTab(), new CommonTab() };
this.setTabs(tabs);
}
} © 2015 - 2025 Weber Informatics LLC | Privacy Policy