I tried the code on Netbeans 7.0.1, but unable to compile the code. The error shown is
C:\Users\Nikunj\Documents\NetBeansProjects\Quartz\src\NewJob.java:21: cannot find symbol
C:\Users\xyz\Documents\NetBeansProjects\Quartz\src\NewJob.java:21: cannot find symbol
symbol : method getName()
location: interface org.quartz.JobDetail
String jname = jcontext.getJobDetail().getName();
C:\Users\xyz\Documents\NetBeansProjects\Quartz\src\NewJob.java:22: cannot find symbol
symbol : method getGroup()
location: interface org.quartz.JobDetail
String jgroup = jcontext.getJobDetail().getGroup();
2 errors
I have imported jar files of 2.1.2 version.
Having compilation errorNikunj Bhagat January 30, 2012 at 12:20 PM
I tried the code on Netbeans 7.0.1, but unable to compile the code. The error shown is C:\Users\Nikunj\Documents\NetBeansProjects\Quartz\src\NewJob.java:21: cannot find symbol C:\Users\xyz\Documents\NetBeansProjects\Quartz\src\NewJob.java:21: cannot find symbol symbol : method getName() location: interface org.quartz.JobDetail String jname = jcontext.getJobDetail().getName(); C:\Users\xyz\Documents\NetBeansProjects\Quartz\src\NewJob.java:22: cannot find symbol symbol : method getGroup() location: interface org.quartz.JobDetail String jgroup = jcontext.getJobDetail().getGroup(); 2 errors I have imported jar files of 2.1.2 version.
Post your Comment