}
protected Configuration getConfiguration(String name) {
- List allConfigsList = ConfigurationManager.getInstance().getConfigurations();
+ List allConfigsList = ConfigurationManager.getInstance()
+ .getConfigurations();
ArrayList configsList = new ArrayList();
for (int i = 0; i < allConfigsList.size(); i++) {
IConfiguration temp = (IConfiguration) allConfigsList.get(i);
}
Collections.sort(configsList);
- ListSelectionDialog listSelectionDialog = new ListSelectionDialog(PHPHelpPlugin.getDefault().getWorkbench()
- .getActiveWorkbenchWindow().getShell(), configsList, new ListContentProvider(), new LabelProvider(), "Select URL");
+ ListSelectionDialog listSelectionDialog = new ListSelectionDialog(
+ PHPHelpPlugin.getDefault().getWorkbench()
+ .getActiveWorkbenchWindow().getShell(), configsList,
+ new ListContentProvider(), new LabelProvider(), "Select URL");
listSelectionDialog.setTitle("Multiple configuration found");
if (listSelectionDialog.open() == Window.OK) {
Object[] configurations = listSelectionDialog.getResult();