Package org.fusesource.ide.commons.ui.form

Examples of org.fusesource.ide.commons.ui.form.FormPage


    this.node = node;
  }

  @Override
  protected IPage createPage() {
    return new FormPage(new ProfilesForm(null, node));
  }
View Full Code Here


public class ProfilesTabSection extends FormPagePropertyTabSection {

    @Override
    protected FormPage createPage(Object selection) {
        return new FormPage(new ProfilesForm(null, (ContainerNode) selection));
    }
View Full Code Here

    this.node = node;
  }

  @Override
  protected IPage createPage() {
    return new FormPage(new ProfileDetailsForm(null, node));
  }
View Full Code Here

    this.node = node;
  }

  @Override
  protected IPage createPage() {
    return new FormPage(new ProfileRequirementsForm(node));
  }
View Full Code Here

public class ProfileTreeTabSection extends FormPagePropertyTabSection {

    @Override
    protected FormPage createPage(Object selection) {
        return new FormPage(new ProfileTreeForm((ContainerNode) selection));
    }
View Full Code Here

public class ProfileDetailsTabSection extends FormPagePropertyTabSection {

    @Override
    protected FormPage createPage(Object selection) {
        return new FormPage(new ProfileDetailsForm(null, (ProfileNode) selection));
    }
View Full Code Here

    this.node = node;
  }

  @Override
  protected IPage createPage() {
    return new FormPage(new ProfileTreeForm(node));
  }
View Full Code Here

public class ProfileRequirementsTabSection extends FormPagePropertyTabSection {

    @Override
    protected FormPage createPage(Object selection) {
        return new FormPage(new ProfileRequirementsForm((ProfileNode) selection));
    }
View Full Code Here

TOP

Related Classes of org.fusesource.ide.commons.ui.form.FormPage

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.