예제 #1
0
 public RepoContentActivity(String repoURI, String prefix, ClientFactory factory) {
   this.cacheManager = factory.getCacheManager();
   this.historyMapper = factory.getHistoryMapper();
   this.repositoryUri = repoURI;
   this.prefix = isBlankOrNull(prefix) ? null : prefix;
   this.placeController = factory.getPlaceController();
   this.display = factory.getRepoContentView();
 }
예제 #2
0
 public RepoActivity(String repositoryUri, ClientFactory factory) {
   this.cacheManager = factory.getCacheManager();
   this.repositoryUri = repositoryUri;
   this.placeController = factory.getPlaceController();
   this.display = factory.getRepoView();
 }