final String n = name.replace( '$', '.' );
final IType type = this.project.findType( n );
if( type != null && type.exists() && ! type.isAnonymous() )
{
return new JdtJavaType( type );
}
}
catch( JavaModelException e )
{
Sapphire.service( LoggingService.class ).log( e );