Package org.springsource.ide.eclipse.commons.livexp.ui

Examples of org.springsource.ide.eclipse.commons.livexp.ui.CommentSection


 
  @Override
  protected List<WizardPageSection> createSections() throws CoreException {
    //return super.createSections();
    return Arrays.asList(
        new CommentSection(this, "Project: "+model.getProjectName()),
        new ChooseMultipleSection<SpringBootStarter>(this, "Starters", model.getAvailableStarters(), model.starters, Validator.constant(ValidationResult.OK))
    );
  }
View Full Code Here


//        boolean visible = checkboxes.length>0;
//        gd.exclude = !visible;

        if (names.length==0) {
          //don't leave section empty it looks ugly
          subsections[0] = new CommentSection(owner, "No codesets");
          subsections[0].createContents(group);
        }
        GridLayout newLayout = createLayout();
        newLayout.numColumns = names.length>2 ? 3 : 2;
        group.setLayout(newLayout);
View Full Code Here

//        boolean visible = checkboxes.length>0;
//        gd.exclude = !visible;

    if (options.length==0) {
      //don't leave section empty it looks ugly
      subsections[0] = new CommentSection(owner, "No choices available");
      subsections[0].createContents(group);
    }

    for (int i = 0; i < options.length; i++) {
      subsections[i] = new CheckBox(owner, options[i], model.getLabel(options[i]), model.getTooltip(options[i]));
View Full Code Here

TOP

Related Classes of org.springsource.ide.eclipse.commons.livexp.ui.CommentSection

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.