Examples of containsFileOfStatus()


Examples of org.nbgit.StatusCache.containsFileOfStatus()

    }

    @Override
    public boolean isEnabled() {
        StatusCache cache = Git.getInstance().getStatusCache();
        return cache.containsFileOfStatus(context, StatusInfo.STATUS_VERSIONED_CONFLICT);
    }

    static void resolveConflicts(File[] files) {
        if (files.length == 0) {
            NotifyDescriptor nd = new NotifyDescriptor.Message(
View Full Code Here

Examples of org.nbgit.StatusCache.containsFileOfStatus()

        }
        if (showDirty) {
            return true;
        }
        StatusCache cache = Git.getInstance().getStatusCache();
        return !cache.containsFileOfStatus(context, StatusInfo.STATUS_LOCAL_CHANGE);
    }

    @Override
    protected void performAction(ActionEvent event) {
        File root = GitUtils.getProjectFile(context);
View Full Code Here

Examples of org.nbgit.StatusCache.containsFileOfStatus()

    }

    @Override
    public boolean isEnabled() {
        StatusCache cache = Git.getInstance().getStatusCache();
        return cache.containsFileOfStatus(context, StatusInfo.STATUS_LOCAL_CHANGE);
    }

    public void performAction(ActionEvent e) {
        final File root = GitUtils.getRootFile(context);
        if (root == null) {
View Full Code Here

Examples of org.nbgit.StatusCache.containsFileOfStatus()

    }

    @Override
    public boolean isEnabled() {
        StatusCache cache = Git.getInstance().getStatusCache();
        return cache.containsFileOfStatus(context, StatusInfo.STATUS_LOCAL_CHANGE);
    }

    public static void diff(VCSContext ctx, int type, String contextName) {
        MultiDiffPanel panel = new MultiDiffPanel(ctx, type, contextName); // spawns background DiffPrepareTask
        DiffTopComponent tc = new DiffTopComponent(panel);
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.