Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDani Megert2008-05-13 13:39:13 +0000
committerDani Megert2008-05-13 13:39:13 +0000
commitd4d89934fa8d9ad372c6506a080e122a9843a5e9 (patch)
treeeabce6ee58e89dea29a59e274f049479cbdff870 /org.eclipse.text/src/org/eclipse/text/undo
parent16479bc3b1a3a6dd049621a9c258231a9b9283d4 (diff)
downloadeclipse.platform.text-d4d89934fa8d9ad372c6506a080e122a9843a5e9.tar.gz
eclipse.platform.text-d4d89934fa8d9ad372c6506a080e122a9843a5e9.tar.xz
eclipse.platform.text-d4d89934fa8d9ad372c6506a080e122a9843a5e9.zip
Added API tooling tags.
Diffstat (limited to 'org.eclipse.text/src/org/eclipse/text/undo')
-rw-r--r--org.eclipse.text/src/org/eclipse/text/undo/DocumentUndoManagerRegistry.java7
1 files changed, 3 insertions, 4 deletions
diff --git a/org.eclipse.text/src/org/eclipse/text/undo/DocumentUndoManagerRegistry.java b/org.eclipse.text/src/org/eclipse/text/undo/DocumentUndoManagerRegistry.java
index f3baf5c2a7b..3168f66a21a 100644
--- a/org.eclipse.text/src/org/eclipse/text/undo/DocumentUndoManagerRegistry.java
+++ b/org.eclipse.text/src/org/eclipse/text/undo/DocumentUndoManagerRegistry.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2000, 2006 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
@@ -17,6 +17,7 @@ import org.eclipse.core.runtime.Assert;
import org.eclipse.jface.text.IDocument;
+
/**
* This document undo manager registry provides access to a document's
* undo manager. In order to connect a document a document undo manager
@@ -28,11 +29,9 @@ import org.eclipse.jface.text.IDocument;
* document is connected.
* <p>
* <em>The recoding of changes starts with the first {@link #connect(IDocument)}.</em></p>
- * <p>
- * This class is not intended to be subclassed.
- * </p>
*
* @since 3.2
+ * @noinstantiate This class is not intended to be instantiated by clients.
*/
public final class DocumentUndoManagerRegistry {

Back to the top