Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse/debug/ui/ILaunchConfigurationTab2.java')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/ui/ILaunchConfigurationTab2.java26
1 files changed, 26 insertions, 0 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/ILaunchConfigurationTab2.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/ILaunchConfigurationTab2.java
new file mode 100644
index 000000000..b019f87fb
--- /dev/null
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/ILaunchConfigurationTab2.java
@@ -0,0 +1,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();
+} \ No newline at end of file

Back to the top