Somebody gave me a file called eMail.class. So I chucked it in my WEB-INF folder (which is in my classpath, just in case), opened up JBuilder, and did a quick test:


Code:
package com.turtletips;
.
.
.
public class Utilities
{
    private static void main(String[] args)
    {
        eMail m = new eMail();
        System.out.println(m.getStatus());
    }
}
And it gives me an error about not being able to find the class. Adding the line import eMail; doesn't help.