Examples of MksSandboxInfo


Examples of org.intellij.vcs.mks.realtime.MksSandboxInfo

  private void processRecursively(@NotNull final VirtualFile vFile,
                  @NotNull final SandboxCache cache,
                  @NotNull final SandboxesToRefresh refresh) {
        // todo collects parent of the project directory
    final MksSandboxInfo owningSandbox = cache.getSandboxInfo(vFile);

    if (owningSandbox != null) {
      final Module module = ModuleUtil.findModuleForFile(vFile, myProject);
      if (module == null) {
        refresh.addNonRecursive(owningSandbox, vFile);
View Full Code Here

Examples of org.intellij.vcs.mks.realtime.MksSandboxInfo

    }

    @Nullable
    @Override
    public VcsHistorySession createSessionFor(final FilePath filePath) throws VcsException {
        final MksSandboxInfo sandbox = getSandbox(filePath);
        if (sandbox == null) {
            LOGGER.warn("can't find sandbox for " + filePath);
            return null;
        }
        final List<VcsFileRevision> revisions = getRevisions(filePath);
View Full Code Here

Examples of org.intellij.vcs.mks.realtime.MksSandboxInfo


    @Override
    public void reportAppendableHistory(FilePath filePath,
                                        VcsAppendableHistorySessionPartner partner) throws VcsException {
        final MksSandboxInfo sandbox = getSandbox(filePath);
        if (sandbox == null) {
            LOGGER.warn("can't find sandbox for " + filePath);
            return;
        }
View Full Code Here

Examples of org.intellij.vcs.mks.realtime.MksSandboxInfo

    for (VirtualFile file : virtualFiles) {
      if (file == null) {
        LOGGER.warn("null virtual file passed to DispatchBySandboxCommand#execute");
      } else {

        final MksSandboxInfo sandbox = (basedOnTopSanbox) ? mksVcs.getSandboxCache().getSandboxInfo(file) :
            mksVcs.getSandboxCache().getSubSandbox(file);
        if (sandbox == null) {
          notInSandboxFiles.add(file);
        } else {
          ArrayList<VirtualFile> managedFiles = filesBySandbox.get(sandbox);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.