From: Martin W. <mar...@us...> - 2005-09-02 15:59:26
|
Update of /cvsroot/aseclipseplugin/org.asdt.core/src/org/asdt/core In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14673/src/org/asdt/core Modified Files: ASCoreMessages.java ASCorePlugin.java ASCoreMessages.properties Log Message: Cleaned up javadoc comments. Refactor word list classes. Standardised spelling of 'classpathes' to classpath. Index: ASCoreMessages.java =================================================================== RCS file: /cvsroot/aseclipseplugin/org.asdt.core/src/org/asdt/core/ASCoreMessages.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** ASCoreMessages.java 15 Jun 2005 22:59:11 -0000 1.2 --- ASCoreMessages.java 2 Sep 2005 15:59:13 -0000 1.3 *************** *** 24,27 **** --- 24,32 ---- import java.util.ResourceBundle; + /** + * Provides access to message resource bundle + * @author Peter Schreiber + * + */ public class ASCoreMessages { Index: ASCorePlugin.java =================================================================== RCS file: /cvsroot/aseclipseplugin/org.asdt.core/src/org/asdt/core/ASCorePlugin.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** ASCorePlugin.java 8 Jun 2005 16:49:48 -0000 1.1 --- ASCorePlugin.java 2 Sep 2005 15:59:13 -0000 1.2 *************** *** 22,26 **** /** ! * The constructor. */ public ASCorePlugin() { --- 22,26 ---- /** ! * Creates the shared plugin instance and initializes the resource bundle. */ public ASCorePlugin() { *************** *** 52,56 **** /** ! * Returns the shared instance. */ public static ASCorePlugin getDefault() { --- 52,56 ---- /** ! * @return the shared plugin instance. */ public static ASCorePlugin getDefault() { *************** *** 59,63 **** /** ! * Returns the string from the plugin's resource bundle, * or 'key' if not found. */ --- 59,63 ---- /** ! * @return the string from the plugin's resource bundle, * or 'key' if not found. */ *************** *** 72,76 **** /** ! * Returns the plugin's resource bundle, */ public ResourceBundle getResourceBundle() { --- 72,76 ---- /** ! * @return the plugin's resource bundle, */ public ResourceBundle getResourceBundle() { *************** *** 100,104 **** /** ! * Returns the active workbench window's shell */ public static Shell getActiveWorkbenchShell() { --- 100,104 ---- /** ! * @return the active workbench window's shell */ public static Shell getActiveWorkbenchShell() { Index: ASCoreMessages.properties =================================================================== RCS file: /cvsroot/aseclipseplugin/org.asdt.core/src/org/asdt/core/ASCoreMessages.properties,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** ASCoreMessages.properties 24 Aug 2005 23:15:57 -0000 1.4 --- ASCoreMessages.properties 2 Sep 2005 15:59:13 -0000 1.5 *************** *** 3,7 **** ProjectPropertiesPage.title=Classpath Settings ! ProjectPropertiesPage.pathes=Pathes: ProjectPropertiesPage.classpath=&Classpath or "." for Project: ProjectPropertiesPage.classpathNotExists=classpath doesn't exist --- 3,7 ---- ProjectPropertiesPage.title=Classpath Settings ! ProjectPropertiesPage.paths=Paths: ProjectPropertiesPage.classpath=&Classpath or "." for Project: ProjectPropertiesPage.classpathNotExists=classpath doesn't exist |