Index: batch/org/eclipse/jdt/internal/compiler/batch/messages.properties =================================================================== RCS file: /data/cvs/eclipse/org.eclipse.jdt.core/batch/org/eclipse/jdt/internal/compiler/batch/messages.properties,v retrieving revision 1.164 diff -u -r1.164 messages.properties --- batch/org/eclipse/jdt/internal/compiler/batch/messages.properties 21 Mar 2003 09:58:33 -0000 1.164 +++ batch/org/eclipse/jdt/internal/compiler/batch/messages.properties 21 Mar 2003 15:33:21 -0000 @@ -33,7 +33,6 @@ ### configure configure.requiresJDK1.2orAbove = Need to use a JVM >= 1.2 -configure.noSourceFile = no source file specified configure.duplicateLog = duplicate log specification: {0} configure.duplicateRepeat = duplicate repeat specification: {0} configure.duplicateCompliance = duplicate compliance setting specification: {0} Index: compiler/org/eclipse/jdt/internal/compiler/Compiler.java =================================================================== RCS file: /data/cvs/eclipse/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/Compiler.java,v retrieving revision 1.43 diff -u -r1.43 Compiler.java --- compiler/org/eclipse/jdt/internal/compiler/Compiler.java 11 Mar 2003 15:03:53 -0000 1.43 +++ compiler/org/eclipse/jdt/internal/compiler/Compiler.java 21 Mar 2003 15:33:22 -0000 @@ -245,7 +245,7 @@ public void accept(ISourceType[] sourceTypes, PackageBinding packageBinding) { problemReporter.abortDueToInternalError( Util.bind( - "abort.againstSourceModel " , //$NON-NLS-1$ + "abort.againstSourceModel" , //$NON-NLS-1$ String.valueOf(sourceTypes[0].getName()), String.valueOf(sourceTypes[0].getFileName()))); } Index: compiler/org/eclipse/jdt/internal/compiler/util/messages.properties =================================================================== RCS file: /data/cvs/eclipse/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/util/messages.properties,v retrieving revision 1.10 diff -u -r1.10 messages.properties --- compiler/org/eclipse/jdt/internal/compiler/util/messages.properties 11 Mar 2003 15:03:56 -0000 1.10 +++ compiler/org/eclipse/jdt/internal/compiler/util/messages.properties 21 Mar 2003 15:33:22 -0000 @@ -53,11 +53,6 @@ binding.implementation = anonymous implementation of {0} ### ast -ast.missingStatement = Missing statement code generation implementation -ast.variableShouldProvide = Assignment variable should provide an implementation for flow analysis -ast.compoundPreShouldProvide = Compound pre assignments should provide an implementation for code generation -ast.compoundVariableShouldProvide = Compound assignment variable should provide an implementation for code generation -ast.postIncrShouldProvide = Post increment variable should provide an implementation for code generation ast.missingCode = Missing code gen implementation ### constant Index: model/org/eclipse/jdt/core/JavaConventions.java =================================================================== RCS file: /data/cvs/eclipse/org.eclipse.jdt.core/model/org/eclipse/jdt/core/JavaConventions.java,v retrieving revision 1.79 diff -u -r1.79 JavaConventions.java --- model/org/eclipse/jdt/core/JavaConventions.java 19 Mar 2003 12:36:58 -0000 1.79 +++ model/org/eclipse/jdt/core/JavaConventions.java 21 Mar 2003 15:33:24 -0000 @@ -219,7 +219,7 @@ int index; index = name.lastIndexOf('.'); if (index == -1) { - return new Status(IStatus.ERROR, JavaCore.PLUGIN_ID, -1, Util.bind("convention.classFile.notJavaName"), null); //$NON-NLS-1$ + return new Status(IStatus.ERROR, JavaCore.PLUGIN_ID, -1, Util.bind("convention.classFile.notClassFileName"), null); //$NON-NLS-1$ } identifier = name.substring(0, index); IStatus status = validateIdentifier(identifier); Index: model/org/eclipse/jdt/internal/core/JavaProject.java =================================================================== RCS file: /data/cvs/eclipse/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/JavaProject.java,v retrieving revision 1.220 diff -u -r1.220 JavaProject.java --- model/org/eclipse/jdt/internal/core/JavaProject.java 19 Mar 2003 14:56:11 -0000 1.220 +++ model/org/eclipse/jdt/internal/core/JavaProject.java 21 Mar 2003 15:33:26 -0000 @@ -2103,7 +2103,7 @@ throws JavaModelException { if (path == null) { - throw new IllegalArgumentException(Util.bind("path.nullpath")); //$NON-NLS-1$ + throw new IllegalArgumentException(Util.bind("path.nullPath")); //$NON-NLS-1$ } if (path.equals(getOutputLocation())) { return; Index: model/org/eclipse/jdt/internal/core/messages.properties =================================================================== RCS file: /data/cvs/eclipse/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/messages.properties,v retrieving revision 1.80 diff -u -r1.80 messages.properties --- model/org/eclipse/jdt/internal/core/messages.properties 18 Mar 2003 18:47:12 -0000 1.80 +++ model/org/eclipse/jdt/internal/core/messages.properties 21 Mar 2003 15:33:26 -0000 @@ -20,18 +20,13 @@ ### java element element.doesNotExist = {0} does not exist. element.invalidClassFileName = Class file name must end with .class. -element.cannotReconcile = Must create reconciler on a working copy. element.reconciling = Reconciling... element.attachingSource = Attaching source... element.invalidType = Type is not one of the defined constants. -element.classpathCycle = A cycle was detected in the project''s classpath. -element.onlyOneJavaModel = Cannot instantiate more than one Java Model. -element.projectDoesNotExist = Project {0} not present element.invalidResourceForProject = Illegal argument - must be one of IProject, IFolder, or IFile element.nullName = Name cannot be null. element.nullType = Type cannot be null. element.illegalParent = Illegal parent argument. -element.notPresent = Not present ### java model operations operation.needElements = Operation requires one or more elements. @@ -106,7 +101,7 @@ ### status status.cannotUseDeviceOnPath = Operation requires a path with no device. Path specified was: {0} status.coreException = Core exception. -status.defaultPackeReadOnly = Default package is read-only. +status.defaultPackageReadOnly = Default package is read-only. status.evaluationError = Evaluation error: {0}. status.JDOMError = JDOM error. status.IOException = I/O exception. @@ -167,8 +162,6 @@ ### miscellaneous file.notFound = File not found: ''{0}''. file.badFormat = Bad format. -variable.badFormat = Bad format for variables. -option.badFormat = Bad format for options. path.nullPath = Path cannot be null. path.mustBeAbsolute = Path must be absolute. cache.invalidLoadFactor = Incorrect load factor @@ -180,7 +173,7 @@ convention.unit.nullName = Compilation unit name must not be null. convention.unit.notJavaName = Compilation unit name must end with .java. convention.classFile.nullName = .class file name must not be null. -convention.classFile.notJavaName = .class file name must end with .class. +convention.classFile.notClassFileName = .class file name must end with .class. convention.illegalIdentifier = ''{0}'' is not a valid Java identifier. convention.import.nullImport = An import declaration must not be null. convention.import.unqualifiedImport = An import declaration must not end with an unqualified *. @@ -215,9 +208,6 @@ dom.addAncestorAsSibling = Attempt to insert ancestor as sibling dom.addNullInterface = Cannot add null interface dom.nullInterfaces = Illegal to set super interfaces to null - -### eval -eval.needBuiltState = Cannot evaluate if the project has not been built once ### correction correction.nullRequestor = Requestor cannot be null. Index: model/org/eclipse/jdt/internal/core/util/messages.properties =================================================================== RCS file: /data/cvs/eclipse/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/util/messages.properties,v retrieving revision 1.10 diff -u -r1.10 messages.properties --- model/org/eclipse/jdt/internal/core/util/messages.properties 11 Mar 2003 15:03:55 -0000 1.10 +++ model/org/eclipse/jdt/internal/core/util/messages.properties 21 Mar 2003 15:33:26 -0000 @@ -22,13 +22,10 @@ disassembler.begincommentline = \ *\ disassembler.fieldhasconstant =\ =\ disassembler.endoffieldheader = ; -disassembler.methodtitle = Method disassembler.exceptiontableheader = Exception Table: disassembler.linenumberattributeheader = Line number attribute: disassembler.localvariabletableattributeheader = Local variable table attribute: disassembler.arraydimensions = [] -disassembler.constructor_method_name = -disassembler.parameternameinmethodinvocation = disassembler.innerattributesheader = Inner classes attributes: disassembler.inner_class_info_name = inner class info name: disassembler.outer_class_info_name = outer class info name: