Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDani Megert2013-09-04 16:03:18 +0000
committerDani Megert2013-09-04 16:03:18 +0000
commitee6146d56273ea37a0626233aabf999048eb264a (patch)
tree2a14f85a2c5e90ac90de7e4d026e7c5875b60957
parent16727c41952073b63b688e6e7564177f874252bb (diff)
downloadeclipse.platform.text-ee6146d56273ea37a0626233aabf999048eb264a.tar.gz
eclipse.platform.text-ee6146d56273ea37a0626233aabf999048eb264a.tar.xz
eclipse.platform.text-ee6146d56273ea37a0626233aabf999048eb264a.zip
-rw-r--r--org.eclipse.ui.examples.javaeditor/Eclipse Java Editor Example/org/eclipse/ui/examples/javaeditor/JavaAnnotationHover.java5
1 files changed, 3 insertions, 2 deletions
diff --git a/org.eclipse.ui.examples.javaeditor/Eclipse Java Editor Example/org/eclipse/ui/examples/javaeditor/JavaAnnotationHover.java b/org.eclipse.ui.examples.javaeditor/Eclipse Java Editor Example/org/eclipse/ui/examples/javaeditor/JavaAnnotationHover.java
index 1aabbf58d15..91728124442 100644
--- a/org.eclipse.ui.examples.javaeditor/Eclipse Java Editor Example/org/eclipse/ui/examples/javaeditor/JavaAnnotationHover.java
+++ b/org.eclipse.ui.examples.javaeditor/Eclipse Java Editor Example/org/eclipse/ui/examples/javaeditor/JavaAnnotationHover.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2000, 2008 IBM Corporation and others.
+ * Copyright (c) 2000, 2013 IBM 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
@@ -17,8 +17,9 @@ import org.eclipse.jface.text.IRegion;
import org.eclipse.jface.text.source.IAnnotationHover;
import org.eclipse.jface.text.source.ISourceViewer;
+
/**
- * The JavaAnnotationHover provides the hover support for java editors.
+ * This class provides the hover support for Java editors.
*/
public class JavaAnnotationHover implements IAnnotationHover {

Back to the top