Examples of PromptProvider


Examples of org.springframework.shell.plugin.PromptProvider

   * <link>org.springframework.core.Ordered.getOder</link> will win.
   *
   * @return prompt text
   */
  protected String getPromptText() {
    PromptProvider promptProvider = PluginUtils.getHighestPriorityProvider(this.applicationContext,PromptProvider.class);
    String providerPromptText = promptProvider.getPrompt();
    if (providerPromptText != null) {
      return providerPromptText;
    } else {
      return promptText;
    }
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.