Interface véroulliée après un Listener
Bonjour je travaille sur un plugin eclipse et j'ai un modèle je sélectionne un élément graphique et aprés je modifie ses propriétés avec mon UI le problème c'est que aprés la sélection mon UI est verouillée je ne peux pas entrer des données et au dessus de la UI jai ' ce message
(Nom-Schema Graphique)org.eclipse.jface.viewers.StructuredSelection
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
private ISelectionListener listener = new ISelectionListener() {
public void selectionChanged(IWorkbenchPart sourcepart, ISelection selection) {
// we ignore our own selections
if (sourcepart != PrivacyPropertiesView.this)
{
showSelection(sourcepart, selection);
}
}
};
@Override
public void init(IViewSite site,IMemento memento) throws PartInitException{
init(site);
this.memento = memento;
} |