return ((IType) element).getFullyQualifiedName();
}
}
private IType selectType(IAction action, List types) {
PopupTableSelector selector = new PopupTableSelector(getShell(), types);
selector.setTitle(action.getText());
selector.setCommandForward(action.getActionDefinitionId());
selector.setLabelProvider(new TypeLabelProvider());
return (IType) selector.select();
}