boolean isAdmin = WojServicesHelper.getDefault().isAdministrator();
Composite panel = new Composite(parent, SWT.NONE);
panel.setLayout(new GridLayout());
setControl(panel);
//javadoc panel
_javadoc = new RessourceLocator(panel, isAdmin, isAdmin, true);
_javadoc.setTitle(Messages.getString("wizard.attachmodule.javadoc")); //$NON-NLS-1$
_javadoc.getComposite().setLayoutData(new GridData(GridData.FILL, GridData.FILL, true, true));
_javadoc.addPropertyChangeListener(this);
//source panel
_source = new RessourceLocator(panel, isAdmin, isAdmin, true);
_source.setTitle(Messages.getString("wizard.attachmodule.source")); //$NON-NLS-1$
_source.getComposite().setLayoutData(new GridData(GridData.FILL, GridData.FILL, true, true));
_source.addPropertyChangeListener(this);
}