Index: dom/org/eclipse/jdt/core/dom/AST.java =================================================================== RCS file: /data/cvs/eclipse/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/AST.java,v retrieving revision 1.119 diff -u -r1.119 AST.java --- dom/org/eclipse/jdt/core/dom/AST.java 25 May 2004 13:30:42 -0000 1.119 +++ dom/org/eclipse/jdt/core/dom/AST.java 27 May 2004 13:38:16 -0000 @@ -301,6 +301,7 @@ *

* * @param level the API level; one of the LEVEL constants + * @return new AST instance following the specified set of API rules. * @since 3.0 */ public static AST newAST(int level) { Index: dom/org/eclipse/jdt/core/dom/ASTNode.java =================================================================== RCS file: /data/cvs/eclipse/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/ASTNode.java,v retrieving revision 1.60 diff -u -r1.60 ASTNode.java --- dom/org/eclipse/jdt/core/dom/ASTNode.java 25 May 2004 13:30:41 -0000 1.60 +++ dom/org/eclipse/jdt/core/dom/ASTNode.java 27 May 2004 13:38:16 -0000 @@ -1530,6 +1530,7 @@ * * * @param property the property + * @param value the property value * @exception RuntimeException if this node does not have the * given property, or if the given property cannot be set * @since 3.0 Index: dom/org/eclipse/jdt/core/dom/ASTParser.java =================================================================== RCS file: /data/cvs/eclipse/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/ASTParser.java,v retrieving revision 1.15 diff -u -r1.15 ASTParser.java --- dom/org/eclipse/jdt/core/dom/ASTParser.java 25 May 2004 13:30:42 -0000 1.15 +++ dom/org/eclipse/jdt/core/dom/ASTParser.java 27 May 2004 13:38:16 -0000 @@ -107,6 +107,7 @@ * * @param level the API level; one of the LEVEL constants * declared on AST + * @return new ASTParser instance */ public static ASTParser newParser(int level) { return new ASTParser(level); Index: search/org/eclipse/jdt/core/search/SearchRequestor.java =================================================================== RCS file: /data/cvs/eclipse/org.eclipse.jdt.core/search/org/eclipse/jdt/core/search/SearchRequestor.java,v retrieving revision 1.5 diff -u -r1.5 SearchRequestor.java --- search/org/eclipse/jdt/core/search/SearchRequestor.java 22 Apr 2004 11:31:03 -0000 1.5 +++ search/org/eclipse/jdt/core/search/SearchRequestor.java 27 May 2004 13:38:17 -0000 @@ -35,6 +35,7 @@ * Accepts the given search match. * * @param match the found match + * @throws CoreException */ // TODO (jerome) - remove throws CoreException public abstract void acceptSearchMatch(SearchMatch match) throws CoreException;