* @param type The Type of the Assembler
* @return A Loader instance for the requested type
*/
public Loader getLoader(String type)
{
Loader loader = null;
if (isCaching && loaderCache.containsKey(type))
{
loader = loaderCache.get(type);
log.debug("Found " + type + " loader in the cache!");