/**
  * Convenience method to get the source of a type in a project
  *
  * @param oracle The DMO representing a project
  * @param fullyQualifiedClassName The FQCN of the type
  * @return
  */
 public static TypeSource getTypeSource(
     final ProjectDataModelOracle oracle, final String fullyQualifiedClassName) {
   return oracle.getProjectTypeSources().get(fullyQualifiedClassName);
 }