Examples of VcsContextFactory


Examples of com.intellij.openapi.vcs.actions.VcsContextFactory

        if (!(vcs instanceof SvnVcs)) {
            Messages.showErrorDialog(project, file.getName() + " is not managed by Subversion", ERROR_DIALOG_TITLE);
            return;
        }

        VcsContextFactory vcsContext = VcsContextFactory.SERVICE.getInstance();
        FilePath filePath = vcsContext.createFilePathOn(file);

        SVNRevisionGraph.createAndShow(project, filePath);
    }
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.