I have this class:
public class hello {
public static void main(String [] args) {
hello();
}
public static void hello() {
System.out.println("Hello.");
}
}When point's in hello() (in main()) and I type C-c C-v C-y, the JDEE returns 'Cannot determine the class of "hello".' Both the global-classpath and sourcepath are set to ".". Is this the expected behavior?
-- Ed
