diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/api/SubmoduleUpdateCommand.java b/org.eclipse.jgit/src/org/eclipse/jgit/api/SubmoduleUpdateCommand.java index c0aeb83d4..4faaac2db 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/api/SubmoduleUpdateCommand.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/api/SubmoduleUpdateCommand.java @@ -91,6 +91,8 @@ public class SubmoduleUpdateCommand extends private CloneCommand.Callback callback; + private FetchCommand.Callback fetchCallback; + private boolean fetch = false; /** @@ -191,10 +193,8 @@ public Collection call() throws InvalidConfigurationException, clone.setProgressMonitor(monitor); submoduleRepo = clone.call().getRepository(); } else if (this.fetch) { - if (callback != null) { - // FIXME: Do we need a new callback to tell them we're - // fetching? - callback.cloningSubmodule(generator.getPath()); + if (fetchCallback != null) { + fetchCallback.fetchingSubmodule(generator.getPath()); } FetchCommand fetchCommand = Git.wrap(submoduleRepo).fetch(); if (monitor != null) { @@ -274,4 +274,18 @@ public SubmoduleUpdateCommand setCallback(CloneCommand.Callback callback) { this.callback = callback; return this; } + + /** + * Set status callback for submodule fetch operation. + * + * @param callback + * the callback + * @return {@code this} + * @since 4.9 + */ + public SubmoduleUpdateCommand setFetchCallback( + FetchCommand.Callback callback) { + this.fetchCallback = callback; + return this; + } }