Package com.google.gerrit.extensions.api.changes

Examples of com.google.gerrit.extensions.api.changes.SubmitInput


        final Optional<ChangeInfo> selectedChange = getSelectedChange(anActionEvent);
        if (!selectedChange.isPresent()) {
            return;
        }
        SubmitInput submitInput = new SubmitInput();
        gerritUtil.postSubmit(selectedChange.get().id, submitInput, project, new Consumer<Void>() {
            @Override
            public void consume(Void aVoid) {
                NotificationBuilder notification = new NotificationBuilder(
                        project, "Change submitted", getSuccessMessage(selectedChange.get())
View Full Code Here

TOP

Related Classes of com.google.gerrit.extensions.api.changes.SubmitInput

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.