25262728293031
this.node = node; } @Override protected IPage createPage() { return new FormPage(new ProfilesForm(null, node)); }
17181920212223
public class ProfilesTabSection extends FormPagePropertyTabSection { @Override protected FormPage createPage(Object selection) { return new FormPage(new ProfilesForm(null, (ContainerNode) selection)); }
this.node = node; } @Override protected IPage createPage() { return new FormPage(new ProfileDetailsForm(null, node)); }
29303132333435
this.node = node; } @Override protected IPage createPage() { return new FormPage(new ProfileRequirementsForm(node)); }
public class ProfileTreeTabSection extends FormPagePropertyTabSection { @Override protected FormPage createPage(Object selection) { return new FormPage(new ProfileTreeForm((ContainerNode) selection)); }
public class ProfileDetailsTabSection extends FormPagePropertyTabSection { @Override protected FormPage createPage(Object selection) { return new FormPage(new ProfileDetailsForm(null, (ProfileNode) selection)); }
this.node = node; } @Override protected IPage createPage() { return new FormPage(new ProfileTreeForm(node)); }
public class ProfileRequirementsTabSection extends FormPagePropertyTabSection { @Override protected FormPage createPage(Object selection) { return new FormPage(new ProfileRequirementsForm((ProfileNode) selection)); }