String bPath = paths[0];
String fsPath = (paths.length > 1 ? paths[1] : null);
if (bPath.startsWith("@"))
{
bPath = bPath.substring(1);
return new InlineResource(BldProject.this, bPath);
}
else if (bPath.startsWith("{"))
{
bPath = bPath.substring(1, bPath.length() - 1);
return new PreprocessedResource(BldProject.this, bPath, fsPath);