Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDani Megert2008-05-21 08:54:16 +0000
committerDani Megert2008-05-21 08:54:16 +0000
commita4fa22324fcf1928330b4ffbd045de0eb9743ff4 (patch)
tree2eeeaef22397b1c7c87bb86f8cd6c143e3c8e986
parentcf7dd35d5a2bd52bf7ea5534259eab5d8754602c (diff)
downloadeclipse.platform.text-a4fa22324fcf1928330b4ffbd045de0eb9743ff4.tar.gz
eclipse.platform.text-a4fa22324fcf1928330b4ffbd045de0eb9743ff4.tar.xz
eclipse.platform.text-a4fa22324fcf1928330b4ffbd045de0eb9743ff4.zip
Added API tooling tags.
-rw-r--r--org.eclipse.jface.text/src/org/eclipse/jface/text/revisions/RevisionInformation.java15
-rw-r--r--org.eclipse.ui.editors/src/org/eclipse/ui/texteditor/DefaultMarkerAnnotationAccess.java1
2 files changed, 8 insertions, 8 deletions
diff --git a/org.eclipse.jface.text/src/org/eclipse/jface/text/revisions/RevisionInformation.java b/org.eclipse.jface.text/src/org/eclipse/jface/text/revisions/RevisionInformation.java
index bb246c10460..62f5b7873b7 100644
--- a/org.eclipse.jface.text/src/org/eclipse/jface/text/revisions/RevisionInformation.java
+++ b/org.eclipse.jface.text/src/org/eclipse/jface/text/revisions/RevisionInformation.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2000, 2007 IBM Corporation and others.
+ * Copyright (c) 2000, 2008 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
@@ -49,14 +49,14 @@ public final class RevisionInformation implements ITextHoverExtension, IInformat
/**
* The hover control creator. Can be <code>null</code>.
*
- * @since 3.3
+ * @since 3.3
*/
private IInformationControlCreator fHoverControlCreator;
/**
* The information presenter control creator. Can be <code>null</code>.
*
- * @since 3.3
+ * @since 3.3
*/
private IInformationControlCreator fInformationPresenterControlCreator;
@@ -119,12 +119,11 @@ public final class RevisionInformation implements ITextHoverExtension, IInformat
}
/**
- * Adjusts the revision information to the given diff information. Any previous diff information
- * is discarded. <strong>Note</strong>: This is an internal framework method and must not be
- * called by clients.
+ * Adjusts the revision information to the given diff information. Any previous diff information is discarded. <strong>Note</strong>: This is an internal framework method and must not be called by clients.
*
* @param hunks the diff hunks to adjust the revision information to
* @since 3.3
+ * @noreference This method is not intended to be referenced by clients.
*/
public void applyDiff(Hunk[] hunks) {
fRanges= null; // mark for recomputation
@@ -156,7 +155,7 @@ public final class RevisionInformation implements ITextHoverExtension, IInformat
* returned by the concrete implementation of {@link Revision#getHoverInfo()}.
* </p>
*
- * @param creator the control creator
+ * @param creator the control creator
* @since 3.3
*/
public void setHoverControlCreator(IInformationControlCreator creator) {
@@ -166,7 +165,7 @@ public final class RevisionInformation implements ITextHoverExtension, IInformat
/**
* Sets the information presenter control creator.
*
- * @param creator the control creator
+ * @param creator the control creator
* @since 3.3
*/
public void setInformationPresenterControlCreator(IInformationControlCreator creator) {
diff --git a/org.eclipse.ui.editors/src/org/eclipse/ui/texteditor/DefaultMarkerAnnotationAccess.java b/org.eclipse.ui.editors/src/org/eclipse/ui/texteditor/DefaultMarkerAnnotationAccess.java
index 75ed7f8bfce..4e09930f65a 100644
--- a/org.eclipse.ui.editors/src/org/eclipse/ui/texteditor/DefaultMarkerAnnotationAccess.java
+++ b/org.eclipse.ui.editors/src/org/eclipse/ui/texteditor/DefaultMarkerAnnotationAccess.java
@@ -313,6 +313,7 @@ public class DefaultMarkerAnnotationAccess implements IAnnotationAccess, IAnnota
*
* @return the annotation type hierarchy
* @since 3.0
+ * @noreference This method is not intended to be referenced by clients.
*/
protected AnnotationTypeHierarchy getAnnotationTypeHierarchy() {
return EditorsPlugin.getDefault().getAnnotationTypeHierarchy();

Back to the top