Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOlivier Thomann2010-10-20 13:48:41 +0000
committerOlivier Thomann2010-10-20 13:48:41 +0000
commit96939eb0492ec1cb13ddd5bdcba40000acf3e910 (patch)
treed8dcee8da944600b54cd679aa40bde95702fd86e /org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/MarkerAnnotation.java
parent7bd675acf4007077bf6bd84b82139719c7a8ca75 (diff)
downloadeclipse.jdt.core-96939eb0492ec1cb13ddd5bdcba40000acf3e910.tar.gz
eclipse.jdt.core-96939eb0492ec1cb13ddd5bdcba40000acf3e910.tar.xz
eclipse.jdt.core-96939eb0492ec1cb13ddd5bdcba40000acf3e910.zip
HEAD - Fix for 328115
Diffstat (limited to 'org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/MarkerAnnotation.java')
-rw-r--r--org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/MarkerAnnotation.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/MarkerAnnotation.java b/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/MarkerAnnotation.java
index ab31286ca5..adf2b59db4 100644
--- a/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/MarkerAnnotation.java
+++ b/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/MarkerAnnotation.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2004, 2008 IBM Corporation and others.
+ * Copyright (c) 2004, 2010 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
@@ -29,7 +29,7 @@ import java.util.List;
public final class MarkerAnnotation extends Annotation {
/**
- * The "typeName" structural property of this node type.
+ * The "typeName" structural property of this node type (child type: {@link Name}).
*/
public static final ChildPropertyDescriptor TYPE_NAME_PROPERTY =
internalTypeNamePropertyFactory(MarkerAnnotation.class);

Back to the top