Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for CommandRegistry (0.05 sec)

  1. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnsh/ShellCommandRegistryHolder.java

            this.commandRegistries.add(commandRegistry);
        }
    
        public CommandRegistry[] getCommandRegistries() {
            return commandRegistries.toArray(new CommandRegistry[0]);
        }
    
        @Override
        public void close() throws Exception {
            ArrayList<Exception> exceptions = new ArrayList<>();
            for (CommandRegistry commandRegistry : commandRegistries) {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Dec 17 09:50:45 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnsh/ShellCommandRegistryFactory.java

     * under the License.
     */
    package org.apache.maven.cling.invoker.mvnsh;
    
    import org.apache.maven.cling.invoker.LookupContext;
    import org.jline.console.CommandRegistry;
    
    public interface ShellCommandRegistryFactory {
        CommandRegistry createShellCommandRegistry(LookupContext context);
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Dec 17 09:50:45 UTC 2024
    - 1K bytes
    - Viewed (0)
Back to top