コード例 #1
0
 public boolean canReplaceLocal(String localPath) {
   for (PathMapping mapping : myPathMappings) {
     if (mapping.canReplaceLocal(localPath)) {
       return true;
     }
   }
   return false;
 }
コード例 #2
0
 public String convertToRemote(String localPath) {
   for (PathMapping mapping : myPathMappings) {
     if (mapping.canReplaceLocal(localPath)) {
       return mapping.mapToRemote(localPath);
     }
   }
   return localPath;
 }