Enumeration enum = headers.keys();
while (enum.hasMoreElements()) {
String name = (String) enum.nextElement();
Forgive me here, but to me it looks like they're declaring a variable's identifier to be a java keyword...? I've seen this more than once, but ran across it just now in the com.oreilly.servlet package source. Eclipse always gives me errors when I load example code containing something like this, so I'm sure it's incorrect. What's the deal? Was enum formerly not a keyword, and this is old code?
And I have another question: I tried my darndest but couldn't figure out how to get Eclipse to recognize com.oreilly.servlet package when I tried to import it; it always says it's unknown or something, so I know I have to make the IDE or compiler or whatever aware of this package, but how do I do that? Put the package in a special folder where these sorts of things go, and where my IDE will find it automatically? Or add it to some list or other from within the IDE...
Thanks for your help.

