Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 3aa2a0838bd9bf9cbed94c47250028bf7494a5f6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/*******************************************************************************
 * Copyright (c) 2012 Mentor Graphics Corporation and others.
 * 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:
 *     Mohamed Hussein (Mentor Graphics) - initial API and implementation (Bug 386673)
 *******************************************************************************/
package org.eclipse.debug.ui;

/**
 * Optional enhancements for {@link ILaunchConfigurationTab}.
 * @since 3.9
 */
public interface ILaunchConfigurationTab2 extends ILaunchConfigurationTab {

	/**
	 * Returns a warning message to be displayed to the user
	 * or <code>null</code> if none is present.
	 * @return Returns a warning message to be displayed to the user
	 * or <code>null</code> if none is present.
	 */
	public String getWarningMessage();
}

Back to the top