Example #1
0
 /**
  * Returns a relative path that should be unique across all remote and packages, based on the
  * repository and package names.
  */
 public PathFragment getPathFragment() {
   return repository.isDefault()
       ? pkgName
       : new PathFragment(ExternalPackage.NAME)
           .getRelative(repository.strippedName())
           .getRelative(pkgName);
 }
Example #2
0
 /**
  * Returns the name of this package.
  *
  * <p>There are certain places that expect the path fragment as the package name ('foo/bar') as a
  * package identifier. This isn't specific enough for packages in other repositories, so their
  * stringified version is '@baz//foo/bar'.
  */
 @Override
 public String toString() {
   return (repository.isDefault() ? "" : repository + "//") + pkgName;
 }