Examples of ChooseDependencyModel


Examples of org.springframework.ide.eclipse.boot.core.ChooseDependencyModel

   */
  public static MavenCoordinates openOn(String title, String message,
      Collection<MavenCoordinates> availableChoices,
      Shell shell
  ) throws CoreException, OperationCanceledException {
    ChooseDependencyModel model = new ChooseDependencyModel(availableChoices);
    ChooseDependencyDialog dialog = new ChooseDependencyDialog(title, message,
        model, shell
    );
    dialog.setBlockOnOpen(true);
    dialog.open();
    return model.getResult();
  }
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.