IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

Eclipse Platform Discussion :

[Debutant] Erreur "Unhandled event loop exception"


Sujet :

Eclipse Platform

  1. #1
    Membre du Club
    Profil pro
    Developpeur
    Inscrit en
    Mars 2004
    Messages
    64
    Détails du profil
    Informations personnelles :
    Localisation : France, Loire Atlantique (Pays de la Loire)

    Informations professionnelles :
    Activité : Developpeur

    Informations forums :
    Inscription : Mars 2004
    Messages : 64
    Points : 59
    Points
    59
    Par défaut [Debutant] Erreur "Unhandled event loop exception"
    Bonjour,

    Je juis en train de developper un plugin pour Eclipse et j'ai un probleme a l'execution; Eclipse me sort ceci et je ne sais pas a quoi ca correspond :

    Unhandled event loop exception
    Reason:
    org/eclipse/jdt/core/JavaModelException


    Merci pour votre aide

  2. #2
    Nouveau membre du Club
    Profil pro
    Inscrit en
    Décembre 2004
    Messages
    23
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Décembre 2004
    Messages : 23
    Points : 31
    Points
    31
    Par défaut
    Salut,

    Regarde par ici

    Il s'agit d'un rapport de bug sur eclipse...

    @+

  3. #3
    Membre du Club
    Profil pro
    Developpeur
    Inscrit en
    Mars 2004
    Messages
    64
    Détails du profil
    Informations personnelles :
    Localisation : France, Loire Atlantique (Pays de la Loire)

    Informations professionnelles :
    Activité : Developpeur

    Informations forums :
    Inscription : Mars 2004
    Messages : 64
    Points : 59
    Points
    59
    Par défaut
    ok merci bien

  4. #4
    Membre du Club
    Profil pro
    Developpeur
    Inscrit en
    Mars 2004
    Messages
    64
    Détails du profil
    Informations personnelles :
    Localisation : France, Loire Atlantique (Pays de la Loire)

    Informations professionnelles :
    Activité : Developpeur

    Informations forums :
    Inscription : Mars 2004
    Messages : 64
    Points : 59
    Points
    59
    Par défaut
    Euh ... je comprends pas tout car la raison du bug est : Widget is disposed

    Et moi c'est : org/eclipse/jdt/core/JavaModelException

  5. #5
    Nouveau membre du Club
    Profil pro
    Inscrit en
    Décembre 2004
    Messages
    23
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Décembre 2004
    Messages : 23
    Points : 31
    Points
    31
    Par défaut
    Ton Model ne doit pas correspondre au Model utilisé par Eclipse...

    Peux-tu nous en dire plus sur ce que fait ton plug-in ?

  6. #6
    Membre du Club
    Profil pro
    Developpeur
    Inscrit en
    Mars 2004
    Messages
    64
    Détails du profil
    Informations personnelles :
    Localisation : France, Loire Atlantique (Pays de la Loire)

    Informations professionnelles :
    Activité : Developpeur

    Informations forums :
    Inscription : Mars 2004
    Messages : 64
    Points : 59
    Points
    59
    Par défaut
    Ok alors,

    C'est un plugin pour Eclipse qui rajoute un wizard qui permet de créer des nouvelles classes avec du code prédéfini en fonction du nom d'une classe sélectionnée dans ce meme wizard.

    Pour l'instant la selection de cette classe se fait en cliquant sur un bouton "Browse" qui ouvre une FileDialog (donc la navigation se fait par le browser de fichier).

    Maintenant j'aimerai faire cette selection de classe par la meme fenetre de selection de superclass , comme lorsque tu créés une nouvelle classe dans eclipse et que tu veux selectionner une superclass; c'est cette fenetre la que je veux appeler ...

    Je veux faire un test avec le code suivant qui se trouve dans une methode appelée lors du click sur le bouton Browse :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
     
    try {
    		IJavaSearchScope searchscope = SearchEngine.createWorkspaceScope();
    		SelectionDialog sd = JavaUI.createPackageDialog(getShell(), javaProject, IJavaElementSearchConstants.CONSIDER_REQUIRED_PROJECTS);
    		sd.open();		
    		Object[] objects = sd.getResult();
    			if (null != objects && objects.length >0) {
    				PackageFragment pf = (PackageFragment) objects[0];
    				System.out.println("Le nom de la classe est : " + pf.getElementName());
    			}
    		}
     
    		catch (JavaModelException jme){
    			jme.printStackTrace();
    		}
    Et c'est lorsque je veux tester mon plugin en lancant le runtime workbench que ma premiere fenetre de wizard ne veut pas s'ouvrir et que j'ai l'erreur suivante dans la console :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
     
    Unhandled event loop exception 
    Reason: 
    org/eclipse/jdt/core/JavaModelException
    J'espere que j'ai été assez explicite :o

    Merci pour ton aide

  7. #7
    Nouveau membre du Club
    Profil pro
    Inscrit en
    Décembre 2004
    Messages
    23
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Décembre 2004
    Messages : 23
    Points : 31
    Points
    31
    Par défaut
    OK,

    Peux-tu nous donner le contenu (10 premiere ligne) du fichier de l'Error Log ?

  8. #8
    Membre du Club
    Profil pro
    Developpeur
    Inscrit en
    Mars 2004
    Messages
    64
    Détails du profil
    Informations personnelles :
    Localisation : France, Loire Atlantique (Pays de la Loire)

    Informations professionnelles :
    Activité : Developpeur

    Informations forums :
    Inscription : Mars 2004
    Messages : 64
    Points : 59
    Points
    59
    Par défaut
    J'ai vidé le contenu de mon fichier log avant de reprovoquer l'erreur et voila ce qu'il me sort (y'en a un paquet desolé) :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    !SESSION nov. 30, 2004 15:57:41.392 --------------------------------------------
    eclipse.buildId=M200409161125
    java.version=1.4.2_05
    java.vendor=Sun Microsystems Inc.
    BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=fr_FR
     
    !SESSION déc. 08, 2004 14:20:07.49 ---------------------------------------------
    eclipse.buildId=M200409161125
    java.version=1.4.2_05
    java.vendor=Sun Microsystems Inc.
    BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=fr_FR
     
    !ENTRY org.eclipse.osgi déc. 08, 2004 14:20:07.49
    !MESSAGE ECLIPSE_CACHEDMANIFEST_UNEXPECTED_EXCEPTION
    !STACK 0
    org.osgi.framework.BundleException: Error converting plugin at c:\Documents and Settings\eml\Desktop\eclipse-SDK-3.0.1-win32\eclipse\plugins\dao.plugin.
    	at org.eclipse.core.runtime.adaptor.EclipseBundleData.generateManifest(EclipseBundleData.java:236)
    	at org.eclipse.core.runtime.adaptor.EclipseBundleData.loadManifest(EclipseBundleData.java:191)
    	at org.eclipse.core.runtime.adaptor.CachedManifest.getManifest(CachedManifest.java:36)
    	at org.eclipse.core.runtime.adaptor.CachedManifest.get(CachedManifest.java:75)
    	at org.eclipse.osgi.framework.internal.core.ManifestLocalization.getResourceBundle(ManifestLocalization.java:98)
    	at org.eclipse.osgi.framework.internal.core.ManifestLocalization.getHeaders(ManifestLocalization.java:52)
    	at org.eclipse.osgi.framework.internal.core.AbstractBundle.getHeaders(AbstractBundle.java:1032)
    	at org.eclipse.osgi.framework.internal.core.AbstractBundle.getHeaders(AbstractBundle.java:982)
    	at org.eclipse.osgi.framework.internal.core.AbstractBundle.uninstallWorkerPrivileged(AbstractBundle.java:913)
    	at org.eclipse.osgi.framework.internal.core.AbstractBundle$4.run(AbstractBundle.java:836)
    	at java.security.AccessController.doPrivileged(Native Method)
    	at org.eclipse.osgi.framework.internal.core.AbstractBundle.uninstallWorker(AbstractBundle.java:869)
    	at org.eclipse.osgi.framework.internal.core.AbstractBundle.uninstall(AbstractBundle.java:834)
    	at org.eclipse.update.internal.configurator.ConfigurationActivator.installBundles(ConfigurationActivator.java:171)
    	at org.eclipse.update.internal.configurator.ConfigurationActivator.start(ConfigurationActivator.java:82)
    	at org.eclipse.osgi.framework.internal.core.BundleContextImpl$1.run(BundleContextImpl.java:958)
    	at java.security.AccessController.doPrivileged(Native Method)
    	at org.eclipse.osgi.framework.internal.core.BundleContextImpl.startActivator(BundleContextImpl.java:954)
    	at org.eclipse.osgi.framework.internal.core.BundleContextImpl.start(BundleContextImpl.java:937)
    	at org.eclipse.osgi.framework.internal.core.BundleHost.startWorker(BundleHost.java:421)
    	at org.eclipse.osgi.framework.internal.core.AbstractBundle.resume(AbstractBundle.java:366)
    	at org.eclipse.osgi.framework.internal.core.Framework.resumeBundle(Framework.java:999)
    	at org.eclipse.osgi.framework.internal.core.StartLevelManager.resumeBundles(StartLevelManager.java:577)
    	at org.eclipse.osgi.framework.internal.core.StartLevelManager.incFWSL(StartLevelManager.java:488)
    	at org.eclipse.osgi.framework.internal.core.StartLevelManager.doSetStartLevel(StartLevelManager.java:273)
    	at org.eclipse.osgi.framework.internal.core.StartLevelManager.dispatchEvent(StartLevelManager.java:444)
    	at org.eclipse.osgi.framework.eventmgr.EventManager.dispatchEvent(EventManager.java:186)
    	at org.eclipse.osgi.framework.eventmgr.EventThread.run(EventThread.java:104)
    Caused by: org.eclipse.osgi.service.pluginconversion.PluginConversionException: Could not find a plugin.xml or a fragment.xml in c:\Documents and Settings\eml\Desktop\eclipse-SDK-3.0.1-win32\eclipse\plugins\dao.plugin.
    	at org.eclipse.core.runtime.adaptor.PluginConverterImpl.fillPluginInfo(PluginConverterImpl.java:110)
    	at org.eclipse.core.runtime.adaptor.PluginConverterImpl.convertManifest(PluginConverterImpl.java:660)
    	at org.eclipse.core.runtime.adaptor.EclipseBundleData.generateManifest(EclipseBundleData.java:233)
    	... 27 more
    Root exception:
    org.eclipse.osgi.service.pluginconversion.PluginConversionException: Could not find a plugin.xml or a fragment.xml in c:\Documents and Settings\eml\Desktop\eclipse-SDK-3.0.1-win32\eclipse\plugins\dao.plugin.
    	at org.eclipse.core.runtime.adaptor.PluginConverterImpl.fillPluginInfo(PluginConverterImpl.java:110)
    	at org.eclipse.core.runtime.adaptor.PluginConverterImpl.convertManifest(PluginConverterImpl.java:660)
    	at org.eclipse.core.runtime.adaptor.EclipseBundleData.generateManifest(EclipseBundleData.java:233)
    	at org.eclipse.core.runtime.adaptor.EclipseBundleData.loadManifest(EclipseBundleData.java:191)
    	at org.eclipse.core.runtime.adaptor.CachedManifest.getManifest(CachedManifest.java:36)
    	at org.eclipse.core.runtime.adaptor.CachedManifest.get(CachedManifest.java:75)
    	at org.eclipse.osgi.framework.internal.core.ManifestLocalization.getResourceBundle(ManifestLocalization.java:98)
    	at org.eclipse.osgi.framework.internal.core.ManifestLocalization.getHeaders(ManifestLocalization.java:52)
    	at org.eclipse.osgi.framework.internal.core.AbstractBundle.getHeaders(AbstractBundle.java:1032)
    	at org.eclipse.osgi.framework.internal.core.AbstractBundle.getHeaders(AbstractBundle.java:982)
    	at org.eclipse.osgi.framework.internal.core.AbstractBundle.uninstallWorkerPrivileged(AbstractBundle.java:913)
    	at org.eclipse.osgi.framework.internal.core.AbstractBundle$4.run(AbstractBundle.java:836)
    	at java.security.AccessController.doPrivileged(Native Method)
    	at org.eclipse.osgi.framework.internal.core.AbstractBundle.uninstallWorker(AbstractBundle.java:869)
    	at org.eclipse.osgi.framework.internal.core.AbstractBundle.uninstall(AbstractBundle.java:834)
    	at org.eclipse.update.internal.configurator.ConfigurationActivator.installBundles(ConfigurationActivator.java:171)
    	at org.eclipse.update.internal.configurator.ConfigurationActivator.start(ConfigurationActivator.java:82)
    	at org.eclipse.osgi.framework.internal.core.BundleContextImpl$1.run(BundleContextImpl.java:958)
    	at java.security.AccessController.doPrivileged(Native Method)
    	at org.eclipse.osgi.framework.internal.core.BundleContextImpl.startActivator(BundleContextImpl.java:954)
    	at org.eclipse.osgi.framework.internal.core.BundleContextImpl.start(BundleContextImpl.java:937)
    	at org.eclipse.osgi.framework.internal.core.BundleHost.startWorker(BundleHost.java:421)
    	at org.eclipse.osgi.framework.internal.core.AbstractBundle.resume(AbstractBundle.java:366)
    	at org.eclipse.osgi.framework.internal.core.Framework.resumeBundle(Framework.java:999)
    	at org.eclipse.osgi.framework.internal.core.StartLevelManager.resumeBundles(StartLevelManager.java:577)
    	at org.eclipse.osgi.framework.internal.core.StartLevelManager.incFWSL(StartLevelManager.java:488)
    	at org.eclipse.osgi.framework.internal.core.StartLevelManager.doSetStartLevel(StartLevelManager.java:273)
    	at org.eclipse.osgi.framework.internal.core.StartLevelManager.dispatchEvent(StartLevelManager.java:444)
    	at org.eclipse.osgi.framework.eventmgr.EventManager.dispatchEvent(EventManager.java:186)
    	at org.eclipse.osgi.framework.eventmgr.EventThread.run(EventThread.java:104)
     
    !ENTRY org.eclipse.core.runtime 4 2 déc. 08, 2004 14:20:27.869
    !MESSAGE Problems occurred when invoking code from plug-in: "org.eclipse.core.runtime".
    !STACK 0
    java.lang.NoClassDefFoundError: org/eclipse/jdt/core/JavaModelException
    	at ClassSelectionPlugin.wizards.SampleNewWizard.addPages(SampleNewWizard.java:46)
    	at org.eclipse.jface.wizard.WizardSelectionPage.getNextPage(WizardSelectionPage.java:105)
    	at org.eclipse.ui.internal.dialogs.WorkbenchWizardSelectionPage.getNextPage(WorkbenchWizardSelectionPage.java:82)
    	at org.eclipse.ui.internal.dialogs.NewWizardSelectionPage.advanceToNextPage(NewWizardSelectionPage.java:51)
    	at org.eclipse.ui.internal.dialogs.NewWizardNewPage.doubleClick(NewWizardNewPage.java:465)
    	at org.eclipse.jface.viewers.StructuredViewer$1.run(StructuredViewer.java:409)
    	at org.eclipse.core.internal.runtime.InternalPlatform.run(InternalPlatform.java:616)
    	at org.eclipse.core.runtime.Platform.run(Platform.java:747)
    	at org.eclipse.jface.viewers.StructuredViewer.fireDoubleClick(StructuredViewer.java:407)
    	at org.eclipse.jface.viewers.StructuredViewer.handleDoubleSelect(StructuredViewer.java:618)
    	at org.eclipse.jface.viewers.StructuredViewer$4.widgetDefaultSelected(StructuredViewer.java:721)
    	at org.eclipse.jface.util.OpenStrategy.fireDefaultSelectionEvent(OpenStrategy.java:189)
    	at org.eclipse.jface.util.OpenStrategy.access$0(OpenStrategy.java:186)
    	at org.eclipse.jface.util.OpenStrategy$1.handleEvent(OpenStrategy.java:236)
    	at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82)
    	at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:796)
    	at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2772)
    	at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2431)
    	at org.eclipse.jface.window.Window.runEventLoop(Window.java:668)
    	at org.eclipse.jface.window.Window.open(Window.java:648)
    	at org.eclipse.ui.actions.NewWizardAction.run(NewWizardAction.java:163)
    	at org.eclipse.jface.action.Action.runWithEvent(Action.java:881)
    	at org.eclipse.ui.commands.ActionHandler.execute(ActionHandler.java:143)
    	at org.eclipse.ui.internal.commands.Command.execute(Command.java:132)
    	at org.eclipse.ui.internal.keys.WorkbenchKeyboard.executeCommand(WorkbenchKeyboard.java:453)
    	at org.eclipse.ui.internal.keys.WorkbenchKeyboard.press(WorkbenchKeyboard.java:871)
    	at org.eclipse.ui.internal.keys.WorkbenchKeyboard.processKeyEvent(WorkbenchKeyboard.java:912)
    	at org.eclipse.ui.internal.keys.WorkbenchKeyboard.filterKeySequenceBindings(WorkbenchKeyboard.java:530)
    	at org.eclipse.ui.internal.keys.WorkbenchKeyboard.access$2(WorkbenchKeyboard.java:478)
    	at org.eclipse.ui.internal.keys.WorkbenchKeyboard$1.handleEvent(WorkbenchKeyboard.java:243)
    	at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82)
    	at org.eclipse.swt.widgets.Display.filterEvent(Display.java:740)
    	at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:795)
    	at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:820)
    	at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:805)
    	at org.eclipse.swt.widgets.Control.sendKeyEvent(Control.java:1734)
    	at org.eclipse.swt.widgets.Control.sendKeyEvent(Control.java:1730)
    	at org.eclipse.swt.widgets.Control.WM_CHAR(Control.java:3067)
    	at org.eclipse.swt.widgets.Tree.WM_CHAR(Tree.java:1372)
    	at org.eclipse.swt.widgets.Control.windowProc(Control.java:2970)
    	at org.eclipse.swt.widgets.Display.windowProc(Display.java:3338)
    	at org.eclipse.swt.internal.win32.OS.DispatchMessageW(Native Method)
    	at org.eclipse.swt.internal.win32.OS.DispatchMessage(OS.java:1473)
    	at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2429)
    	at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1377)
    	at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1348)
    	at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:254)
    	at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:141)
    	at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:96)
    	at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:335)
    	at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:273)
    	at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:129)
    	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    	at java.lang.reflect.Method.invoke(Method.java:324)
    	at org.eclipse.core.launcher.Main.basicRun(Main.java:185)
    	at org.eclipse.core.launcher.Main.run(Main.java:704)
    	at org.eclipse.core.launcher.Main.main(Main.java:688)

  9. #9
    Nouveau membre du Club
    Profil pro
    Inscrit en
    Décembre 2004
    Messages
    23
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Décembre 2004
    Messages : 23
    Points : 31
    Points
    31
    Par défaut
    Apparement, il y a plusieurs choses:

    - Utilises-tu un fichier plugin.xml et fragment.xml ??
    - Le ClassLoader ne peut pas charger JavaModelException...

    Regarde dèjà de ses deux côtés là. . .

  10. #10
    Membre du Club
    Profil pro
    Developpeur
    Inscrit en
    Mars 2004
    Messages
    64
    Détails du profil
    Informations personnelles :
    Localisation : France, Loire Atlantique (Pays de la Loire)

    Informations professionnelles :
    Activité : Developpeur

    Informations forums :
    Inscription : Mars 2004
    Messages : 64
    Points : 59
    Points
    59
    Par défaut
    J'ai un fichier plugin.xml, necessaire pour l'execution du plugin, c'est lui qui se charge de faire l'intermédiaire entre le menu que je rajoute a Eclipse et le code des classes permettant de le faire fonctionner.

    Par contre je n'ai pas de fragment.xml ...

    Ok pour le ClassLoader, mais pour quelles raisons ne pourrait-il pas loader JavaModelException : :

    p-s: désolé je suis debutant et ne maitrise pas du tout certaines parties

  11. #11
    Nouveau membre du Club
    Profil pro
    Inscrit en
    Décembre 2004
    Messages
    23
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Décembre 2004
    Messages : 23
    Points : 31
    Points
    31
    Par défaut
    Je ne suis malheureusement pas expert en la matière...

    Où est ton fichier plugin.xml ?

    As-tu un import org.eclipse.jdt.core.* ?

  12. #12
    Membre du Club
    Profil pro
    Developpeur
    Inscrit en
    Mars 2004
    Messages
    64
    Détails du profil
    Informations personnelles :
    Localisation : France, Loire Atlantique (Pays de la Loire)

    Informations professionnelles :
    Activité : Developpeur

    Informations forums :
    Inscription : Mars 2004
    Messages : 64
    Points : 59
    Points
    59
    Par défaut
    Le fichier plugin.xml dans mon projet et une fois exporté il se trouve a la racine du dossier de mon plugin dans le repertoire plugins d'eclipse.

    J'ai bien un import de org.eclipse.jdt.core.JavaModelException
    Et meme si j'importe tout : org.eclipse.jdt.core.* , le probleme reste le meme

    Merci au passage pour ton aide et la rapidite de tes reponses

  13. #13
    Nouveau membre du Club
    Profil pro
    Inscrit en
    Décembre 2004
    Messages
    23
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Décembre 2004
    Messages : 23
    Points : 31
    Points
    31
    Par défaut
    Je pencherai pour un problème d'install de Java ou d'Eclipse...

    As-tu essayé de compiler / d'utiliser un plug-in dont on sait qu'il fonctionne ?

    Sinon, je crois que nous aurons besoin d'un spécialiste Java / Eclipse !!

  14. #14
    Membre du Club
    Profil pro
    Developpeur
    Inscrit en
    Mars 2004
    Messages
    64
    Détails du profil
    Informations personnelles :
    Localisation : France, Loire Atlantique (Pays de la Loire)

    Informations professionnelles :
    Activité : Developpeur

    Informations forums :
    Inscription : Mars 2004
    Messages : 64
    Points : 59
    Points
    59
    Par défaut
    Ouais j'ai pas de pb avec d'autres plugins, d'ailleurs quand j'enleve le bout de code que je t'ai montré plus haut et que je le remplace par l'ancien (ouverture d'une FileDialog) ca fonctionne impeccable

  15. #15
    Membre du Club
    Profil pro
    Developpeur
    Inscrit en
    Mars 2004
    Messages
    64
    Détails du profil
    Informations personnelles :
    Localisation : France, Loire Atlantique (Pays de la Loire)

    Informations professionnelles :
    Activité : Developpeur

    Informations forums :
    Inscription : Mars 2004
    Messages : 64
    Points : 59
    Points
    59
    Par défaut
    Merci pour ton aide Jay-G

Discussions similaires

  1. 'permgen space java.lang.outofmemory' et 'unhandled event loop'
    Par JeffPalmier dans le forum Eclipse Java
    Réponses: 7
    Dernier message: 02/09/2010, 16h31
  2. Réponses: 3
    Dernier message: 12/02/2010, 18h20
  3. Réponses: 8
    Dernier message: 12/02/2010, 12h51
  4. Unhandled event loop exception Item not added
    Par *alexandre* dans le forum Eclipse Java
    Réponses: 2
    Dernier message: 25/07/2009, 15h31
  5. [ eclipse ] [ plugin ] [ JNI ] Unhandled event loop error
    Par Jean-Philippe Shields dans le forum Eclipse Java
    Réponses: 9
    Dernier message: 28/11/2005, 18h05

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo