* Invoked at object creation, or when there are updates to class files (i.e., invalidation), to create a new set of
* Javassist class pools and loaders.
*/
private void initializeService()
{
ClassFactoryClassPool classPool = new ClassFactoryClassPool(_parent);
_loader = new PackageAwareLoader(_parent, classPool);
ClassPath path = new LoaderClassPath(_loader);
classPool.appendClassPath(path);
try
{
_loader.addTranslator(classPool, this);
}