private String getResolvedSourcePath(ICompilerProject project, ISourceLocation location, String sourceValue, Collection<ICompilerProblem> problems)
{
if (sourceValue == null || sourceValue.isEmpty())
{
problems.add(new EmbedNoSourceAttributeProblem(location));
return null;
}
Map<String,String> searchedLocations = new LinkedHashMap<String,String>();
String containingSourcePath = new File(containingSourceFilename).getParent();