Package org.nbgit.task

Examples of org.nbgit.task.StatusTask


        final String repository = GitUtils.getRootPath(context);
        if (repository == null) {
            return;
        }
        RequestProcessor rp = Git.getInstance().getRequestProcessor(repository);
        gitProgressSupport = new StatusTask(context) {

            @Override
            protected void performAfter() {
                setupModels();
            }
View Full Code Here


        };

        supportAdd.start(rp, root.getAbsolutePath(),
                org.openide.util.NbBundle.getMessage(InitAction.class, "MSG_Create_Add_Progress")); // NOI18N

        GitProgressSupport supportStatus = new StatusTask(context) {

            @Override
            public void performAfter() {
                git.versionedFilesChanged();
                git.refreshAllAnnotations();
            }

        };

        supportStatus.start(rp, root.getAbsolutePath(),
                NbBundle.getMessage(InitAction.class, "MSG_Create_Status_Progress")); // NOI18N

    }
View Full Code Here

            executeStatusSupport = null;
        }

        LifecycleManager.getDefault().saveAll();
        RequestProcessor rp = Git.getInstance().getRequestProcessor();
        executeStatusSupport = new StatusTask(context) {

            @Override
            public void performAfter() {
                SwingUtilities.invokeLater(new Runnable() {
View Full Code Here

TOP

Related Classes of org.nbgit.task.StatusTask

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.