### Eclipse Workspace Patch 1.0 #P org.eclipse.jdt.core Index: model/org/eclipse/jdt/core/NamingConventions.java =================================================================== RCS file: /cvsroot/eclipse/org.eclipse.jdt.core/model/org/eclipse/jdt/core/NamingConventions.java,v retrieving revision 1.39 diff -u -r1.39 NamingConventions.java --- model/org/eclipse/jdt/core/NamingConventions.java 27 Oct 2008 14:20:53 -0000 1.39 +++ model/org/eclipse/jdt/core/NamingConventions.java 17 Nov 2008 11:26:27 -0000 @@ -11,6 +11,7 @@ package org.eclipse.jdt.core; import org.eclipse.jdt.core.compiler.CharOperation; + import org.eclipse.jdt.internal.codeassist.impl.AssistOptions; import org.eclipse.jdt.internal.compiler.parser.ScannerHelper; import org.eclipse.jdt.internal.core.INamingRequestor; @@ -25,18 +26,24 @@ * The possible options are : * *

*

- * For a complete description of the configurable options, see getDefaultOptions. - * For programmaticaly change these options, see JavaCore#setOptions(). + * For a complete description of the configurable options, see {@link JavaCore#getDefaultOptions()}. + * To programmatically change these options, see {@link JavaCore#setOptions(java.util.Hashtable)}. *

*

* This class provides static methods and constants only. @@ -1041,16 +1048,16 @@ * *

* The base name is used to compute the variable name. - * Some different kinds of base name are possible and each kind is associated to a different heuristic to compute variable names.
+ * Some different kinds of base names are possible and each kind is associated to a different heuristic to compute variable names.
* The heuristic depends also on the kind of the variable. Each kind of variable is identified by a constant starting with VK_.
* When a prefix and a suffix can be added then all combinations of prefix and suffix are suggested. * If the name is name, the prefix is pre and the suffix is suf then the suggested names will be * prenamesuf, prename, namesuf and name.
*
- * The different kinds of base name are: + * The different kinds of base names are: *