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 /org.eclipse.debug.ui/ui/org/eclipse/debug
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>
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse/debug')
-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
2 files changed, 23 insertions, 1 deletions
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