Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSarika Sinha2017-09-20 13:29:39 +0000
committerSarika Sinha2017-09-20 13:29:39 +0000
commit50788a926b51ec9532fca94cf3a7bcc7e8f07f4a (patch)
tree689e7b57a0c975f6fcded7d377f4c830600517f2
parent1b93440740ddcadb63df6c30e152e52810e5b932 (diff)
downloadeclipse.platform.debug-S4_7_1_aRC2.tar.gz
eclipse.platform.debug-S4_7_1_aRC2.tar.xz
eclipse.platform.debug-S4_7_1_aRC2.zip
-rw-r--r--org.eclipse.debug.ui/.settings/.api_filters14
-rw-r--r--org.eclipse.debug.ui/META-INF/MANIFEST.MF2
-rw-r--r--org.eclipse.debug.ui/pom.xml4
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/ui/ILaunchConfigurationTab.java4
4 files changed, 19 insertions, 5 deletions
diff --git a/org.eclipse.debug.ui/.settings/.api_filters b/org.eclipse.debug.ui/.settings/.api_filters
index b6cbd924f..a0fcf55f1 100644
--- a/org.eclipse.debug.ui/.settings/.api_filters
+++ b/org.eclipse.debug.ui/.settings/.api_filters
@@ -61,6 +61,20 @@
<message_argument value="postApply()"/>
</message_arguments>
</filter>
+ <filter id="1209008130">
+ <message_arguments>
+ <message_argument value="3.13"/>
+ <message_argument value="3.12"/>
+ <message_argument value="OkToLeaveTab()"/>
+ </message_arguments>
+ </filter>
+ <filter id="1209008130">
+ <message_arguments>
+ <message_argument value="3.13"/>
+ <message_argument value="3.12"/>
+ <message_argument value="postApply()"/>
+ </message_arguments>
+ </filter>
</resource>
<resource path="ui/org/eclipse/debug/ui/actions/AbstractLaunchHistoryAction.java" type="org.eclipse.debug.ui.actions.AbstractLaunchHistoryAction">
<filter comment="Known leaked internal types" id="576725006">
diff --git a/org.eclipse.debug.ui/META-INF/MANIFEST.MF b/org.eclipse.debug.ui/META-INF/MANIFEST.MF
index a55ecbdba..152f30fac 100644
--- a/org.eclipse.debug.ui/META-INF/MANIFEST.MF
+++ b/org.eclipse.debug.ui/META-INF/MANIFEST.MF
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
Bundle-SymbolicName: org.eclipse.debug.ui; singleton:=true
-Bundle-Version: 3.12.0.qualifier
+Bundle-Version: 3.12.50.qualifier
Bundle-Activator: org.eclipse.debug.internal.ui.DebugUIPlugin
Bundle-Vendor: %providerName
Bundle-Localization: plugin
diff --git a/org.eclipse.debug.ui/pom.xml b/org.eclipse.debug.ui/pom.xml
index fd2fa7047..f2a788680 100644
--- a/org.eclipse.debug.ui/pom.xml
+++ b/org.eclipse.debug.ui/pom.xml
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
- Copyright (c) 2012, 2016 Eclipse Foundation and others.
+ Copyright (c) 2012, 2017 Eclipse Foundation and others.
All rights reserved. This program and the accompanying materials
are made available under the terms of the Eclipse Distribution License v1.0
which accompanies this distribution, and is available at
@@ -18,7 +18,7 @@
</parent>
<groupId>org.eclipse.debug</groupId>
<artifactId>org.eclipse.debug.ui</artifactId>
- <version>3.12.0-SNAPSHOT</version>
+ <version>3.12.50-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
<properties>
<code.ignoredWarnings>-warn:+resource,-deprecation,unavoidableGenericProblems</code.ignoredWarnings>
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/ILaunchConfigurationTab.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/ILaunchConfigurationTab.java
index 158530f36..a257c13a9 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/ILaunchConfigurationTab.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/ILaunchConfigurationTab.java
@@ -240,7 +240,7 @@ public interface ILaunchConfigurationTab {
* Checks if it is OK to leave the Tab.
*
* @return <code>true</code> if OK to leave the tab or <code>false</code>
- * @since 3.12
+ * @since 3.13
*/
public default boolean OkToLeaveTab() {
return true;
@@ -249,7 +249,7 @@ public interface ILaunchConfigurationTab {
/**
* Perform the changes after apply.
*
- * @since 3.12
+ * @since 3.13
*/
public default void postApply() {
}

Back to the top