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

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


    @Override
    protected List<WizardPageSection> createSections() {
      List<WizardPageSection> sections = new ArrayList<WizardPageSection>();

      FieldModel<String> projectName = model.getProjectName();
      sections.add(new StringFieldSection(this, projectName));

      WizardPageSection radios = createRadioGroupsSection(this);
      if (radios!=null) {
        sections.add(radios);
      }

      for (FieldModel<String> f : model.stringInputs) {
        //caution! we already created the section for projectName because we want it at the top
        if (projectName!=f) {
          sections.add(new StringFieldSection(this, f));
        }
      }

      sections.add(
        new CheckBoxesSection<String>(this, model.style)
View Full Code Here


      FieldModel<String> projectName = model.getProjectName();
      sections.add(new ProjectLocationSection(this, model.getLocation(), projectName.getVariable(), model.getLocationValidator()));
      sections.add(workingSetSection = new WorkingSetSection(this, selection));

      sections.add(new GroupSection(this, "Site Info",
          new StringFieldSection(this, "Base Url", model.baseUrl, model.baseUrlValidator),
          new DescriptionSection(this, model.downloadUrl).label("Full Url").readOnly(false)
      ));

      return sections;
    }
View Full Code Here

TOP

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

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.