Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Keller2011-02-25 19:03:05 +0000
committerMarkus Keller2011-02-25 19:03:05 +0000
commit1c55a30d34c71d0af5d8708290296c27e371311a (patch)
tree3c0efcf3d33c71422c6f5f6f50b5c82e9e9b792e
parent3f8ae18d659490a301754b288d5f5dbbfe92dfa9 (diff)
downloadeclipse.platform.text-1c55a30d34c71d0af5d8708290296c27e371311a.tar.gz
eclipse.platform.text-1c55a30d34c71d0af5d8708290296c27e371311a.tar.xz
eclipse.platform.text-1c55a30d34c71d0af5d8708290296c27e371311a.zip
doc: specified element type
-rw-r--r--org.eclipse.jface.text/src/org/eclipse/jface/text/templates/ContextTypeRegistry.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.jface.text/src/org/eclipse/jface/text/templates/ContextTypeRegistry.java b/org.eclipse.jface.text/src/org/eclipse/jface/text/templates/ContextTypeRegistry.java
index 70b526aedd9..8a216202538 100644
--- a/org.eclipse.jface.text/src/org/eclipse/jface/text/templates/ContextTypeRegistry.java
+++ b/org.eclipse.jface.text/src/org/eclipse/jface/text/templates/ContextTypeRegistry.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2000, 2005 IBM Corporation and others.
+ * Copyright (c) 2000, 2011 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
@@ -52,7 +52,7 @@ public class ContextTypeRegistry {
/**
* Returns an iterator over all registered context types.
*
- * @return an iterator over all registered context types
+ * @return an iterator over all registered context types (element type: {@link TemplateContextType})
*/
public Iterator contextTypes() {
return fContextTypes.values().iterator();

Back to the top