Hi All:
I am using MyEclipse Version: 6.5.1 GA Build id: 6.5.1-GA-20080715.
I double click on the method name “init”
java code:
public static void init(String dir) {
try {
SchedulerFactory schedFact = new org.quartz.impl.StdSchedulerFactory();
Scheduler sched = schedFact.getScheduler();
}
catch(Exception ex) {
logger.error(ex);
}
}
And right click on the hightlight code “init” and choose “references/project” and the search result doesnot show me which java class and method call the init method of the java class JobScheduler.
Or double click on “init” and choose menu “Search/References/Project” and still doesnot get the result.
I did the above steps in Eclipse 3.2 and it works with no problem.
Is there some kind of settings I need to change in my project in myEclipse to make references works?
Yours,
Frustrated.