blob: eb4d5d6919e539ab3a78eb7181d67d45b6db1176 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2013, 2018 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.debug.internal.examples.mixedmode;
import java.util.HashSet;
import java.util.Set;
public class AntExtraTab extends DoNothingMainTab {
@Override
public String getName() {
return Messages.AntExtraTab_0;
}
@Override
public String getId() {
return "org.eclipse.debug.examples.mixedmode.ant.tab"; //$NON-NLS-1$
}
/**
* @return the set of modes this tab works with
*/
@Override
public Set<String> getModes() {
if (fOptions == null) {
fOptions = new HashSet<>();
fOptions.add("ant"); //$NON-NLS-1$
fOptions.add("test"); //$NON-NLS-1$
}
return fOptions;
}
}