// setting the classLoder
// jam_service_parms.setParentClassLoader(factory.createJamClassLoader(classLoader));
// it can posible to add the classLoader as well
jam_service_parms.addClassLoader(classLoader);
jam_service_parms.includeClass(className);
JamService service = factory.createService(jam_service_parms);
JamClassIterator jClassIter = service.getClasses();
// all most all the time the ittr will have only one class in it
while (jClassIter.hasNext()) {
JClass jclass = (JClass)jClassIter.next();