Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMickael Istria2017-10-12 18:24:04 +0000
committerMickael Istria2017-10-12 18:24:04 +0000
commitfbe3de30dbe38f11de73c3c0cc506b9a0d6ba9f9 (patch)
tree40ec12321e21aee8861b1d2e2728785631eee168
parent88ac5d16695ad2249b474f39ae21093be0b105bc (diff)
downloadeclipse.platform.debug-fbe3de30dbe38f11de73c3c0cc506b9a0d6ba9f9.tar.gz
eclipse.platform.debug-fbe3de30dbe38f11de73c3c0cc506b9a0d6ba9f9.tar.xz
eclipse.platform.debug-fbe3de30dbe38f11de73c3c0cc506b9a0d6ba9f9.zip
Added copyright Fix version Change-Id: Ia02f5096bfa9c5066517b0d2f28b38568882dff0 Signed-off-by: Mickael Istria <mistria@redhat.com>
-rw-r--r--org.eclipse.debug.ui/META-INF/MANIFEST.MF2
-rw-r--r--org.eclipse.debug.ui/pom.xml2
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/hover/DebugTextHover.java10
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/hover/ExpressionInformationControlCreator.java14
4 files changed, 25 insertions, 3 deletions
diff --git a/org.eclipse.debug.ui/META-INF/MANIFEST.MF b/org.eclipse.debug.ui/META-INF/MANIFEST.MF
index b5c6c49b7..d7b4586c0 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.100.qualifier
+Bundle-Version: 3.13.0.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 789f8620e..9ff236050 100644
--- a/org.eclipse.debug.ui/pom.xml
+++ b/org.eclipse.debug.ui/pom.xml
@@ -18,7 +18,7 @@
</parent>
<groupId>org.eclipse.debug</groupId>
<artifactId>org.eclipse.debug.ui</artifactId>
- <version>3.12.100-SNAPSHOT</version>
+ <version>3.13.0-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/internal/ui/hover/DebugTextHover.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/hover/DebugTextHover.java
index cd9d44217..26292ffcb 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/hover/DebugTextHover.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/hover/DebugTextHover.java
@@ -1,3 +1,13 @@
+/****************************************************************************
+* Copyright (c) 2017 Red Hat Inc. 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:
+* Mickael Istria (Red Hat Inc.) - [521958] initial implementation
+*******************************************************************************/
package org.eclipse.debug.internal.ui.hover;
import org.eclipse.core.runtime.Adapters;
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/hover/ExpressionInformationControlCreator.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/hover/ExpressionInformationControlCreator.java
index 980925a44..8ef66ef3b 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/hover/ExpressionInformationControlCreator.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/hover/ExpressionInformationControlCreator.java
@@ -1,3 +1,13 @@
+/****************************************************************************
+* Copyright (c) 2017 Red Hat Inc. 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:
+* Mickael Istria (Red Hat Inc.) - [521958] initial implementation
+*******************************************************************************/
package org.eclipse.debug.internal.ui.hover;
import org.eclipse.core.runtime.CoreException;
@@ -44,10 +54,12 @@ import org.eclipse.ui.PlatformUI;
/**
* Creates an information control to display an expression in a hover control.
+ * This was mostly copied for JDT
+ * org.eclipse.jdt.internal.debug.ui.ExpressionInformationControlCreator
*
* @noextend This class is not intended to be subclassed by clients.
*
- * @since 3.3
+ * @since 3.13
*/
public class ExpressionInformationControlCreator implements IInformationControlCreator {

Back to the top