Beispiel #1
0
 /**
  * Fulfill the ResourceCollection contract.
  *
  * @return whether this is a filesystem-only resource collection.
  */
 public synchronized boolean isFilesystemOnly() {
   if (isReference()) {
     return ((Path) getCheckedRef()).isFilesystemOnly();
   }
   dieOnCircularReference();
   assertFilesystemOnly(union);
   return true;
 }