/**
   * Deletes all mappings associated with the specified MappingClass, but does not delete the
   * MappingClass itself.
   *
   * @param theMappingClass
   * @throws ModelerCoreException
   */
  public void deleteMappingClass(MappingClass theMappingClass) throws ModelerCoreException {
    CoreArgCheck.isNotNull(theMappingClass);

    mappingLocator.deleteMappingClass(theMappingClass);
  }