//
 // private methods
 //
 private static URL getClassLocation() {
   // get location of GenerationTarget.class
   Class<?> thisClass = GenerationTarget.class;
   URL url = thisClass.getResource(thisClass.getSimpleName() + ".class");
   return url;
 } // end getClassLocation()