// b.) if it has a hostname, it is UNC name... Any java or eclipse api
// helps it ??
if (newPath != null && host != null && host.length() != 0) {
IPath uncPath = new Path(host);
uncPath = uncPath.append(path);
newPath = uncPath.makeUNC(true);
}
if (newPath != null)
{
return newPath.toString();