MemberPage memberPage = new MemberPage(wizard);
wizard.addAndLinkPage(MEMBER_PAGE, memberPage);
wizard.getManager().setNext(MEMBER_PAGE, MEMBER_PAGE);
// Customize the property page
JaspiraWizardObjectPage objectPage = (JaspiraWizardObjectPage) wizard.getPage("property");
// Constrain the visible element
PropertyBrowser oe = objectPage.getPropertyBrowser();
oe.setVisibleMembers(typeVisibleProperties);
// Add the 'Addd member' button below the property browser
JPanel buttonPanel = createButtonPanel();
buttonPanel.add(BorderLayout.CENTER, createAddButton(context, objectPage));
objectPage.getContentPanel().add(buttonPanel, BorderLayout.SOUTH);
}