Package com.intellij.openapi.vcs.vfs

Examples of com.intellij.openapi.vcs.vfs.VcsVirtualFile


        throw new RevuFriendlyException("VCS fetched content is null: ",
          RevuBundle.message("friendlyError.failedToFetchVcsFile.nullContent.details.text",
          vFile.getPath(), contentRevision));
      }

      return new VcsVirtualFile(contentRevision.getFile().getPath(), content.getBytes(),
        vcsRevisionNumber.asString(), vFile.getFileSystem());
    }
View Full Code Here


        throw new RevuFriendlyException("VCS fetched content is null: "+ contentRevision,
          RevuBundle.message("friendlyError.failedToFetchVcsFile.nullContent.details.text",
          vFile.getPath()));
      }

      return new VcsVirtualFile(contentRevision.getFile().getPath(), content.getBytes(),
        vcsRevisionNumber.asString(), vFile.getFileSystem());
    }
View Full Code Here

            return _project;
        } else if (VcsDataKeys.VCS.is(dataId)) {
            return SvnVcs.getInstance(_project).getKeyInstanceMethod();
        } else if (VcsDataKeys.VCS_VIRTUAL_FILE.is(dataId)) {
            if (selectedRevision != null) {
                return new VcsVirtualFile(_filePath.getPath(),
                        createVcsFileRevision(selectedRevision, false),
                        VcsFileSystem.getInstance());
            }
        } else if (VcsDataKeys.VCS_FILE_REVISION.is(dataId)) {
            if (selectedRevision != null) {
View Full Code Here

TOP

Related Classes of com.intellij.openapi.vcs.vfs.VcsVirtualFile

Copyright © 2018 www.massapicom. 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.