Premetto che ho Windows XP Professional

Ho installato l'SDK 1.3 seguendo tutti i consigli e le FAQ presenti sul forum.

Questa è la directory di installazione: c:\jdk13
E così ho settato le variabili d'ambiente:

PATH = c:\altro;c:\jdk13\bin
CLASSPATH = .;c:\jdk13;c:\jdk13\lib\tools.jar;c:\jdk13\prova

Ho creato il mio file Ellsworth.java (che riporto di seguito) e l'ho messo nella directory c:\jdk13\prova

-------------------------------------------------------------------

public class Ellsworth {
public static void main(String[] arguments) {
String line1 = "The advancement of the arts, from year\n";
String line2 = "to year, taxes our credulity, and seems\n";
String line3 = "to presage the arrival of that period\n";
String line4 = "when human improvement must end.";
String quote = line1 + line2 + line3 + line4;
String speaker = "Henry Ellsworth";
String title = "U.S. Commissioner of Patents";
String from = "1843 Annual Report of the Patent Office";
System.out.println('\u0022' + quote + '\u0022');
System.out.println("\t" + speaker);
System.out.println("\t" + title);
System.out.println("\t" + from);
}
}

-------------------------------------------------------------------

Ho lanciato:

C:\jdk13\prova>javac Ellsworth.java

e fin qui tutto ok.
Poi ho lanciato

C:\jdk13\prova>java Ellsworth.class

e mi ha dato questo errore:

Exception in thread "main" java.lang.NoClassDefFoundError: Ellsworth/class

Perchè mi dà errore se ho settato tutte le variabili correttamente???