NullPointerException ohne CodeLink

KalliBumBum

Grünschnabel
Hallo zusammen,

ich benutze de JTreeTable Ansatz von Sun.
Wenn ich jetzt eine Zelle doppelt anklicke (was erlaubt ist) um etwas hinein zu schreiben DANN aber ohne zu bestätigen (drücken von Enter) auf eine andere Zelle klicke bekomme ich folgende Fehlermeldung:
Code:
Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException
	at com.sun.java.swing.SwingUtilities2.adjustFocus(Unknown Source)
	at javax.swing.plaf.basic.BasicTableUI$Handler.adjustFocusAndSelection(Unknown Source)
	at javax.swing.plaf.basic.BasicTableUI$Handler.mousePressed(Unknown Source)
	at java.awt.AWTEventMulticaster.mousePressed(Unknown Source)
	at java.awt.Component.processMouseEvent(Unknown Source)
	at javax.swing.JComponent.processMouseEvent(Unknown Source)
	at java.awt.Component.processEvent(Unknown Source)
	at java.awt.Container.processEvent(Unknown Source)
	at java.awt.Component.dispatchEventImpl(Unknown Source)
	at java.awt.Container.dispatchEventImpl(Unknown Source)
	at java.awt.Component.dispatchEvent(Unknown Source)
	at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
	at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
	at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
	at java.awt.Container.dispatchEventImpl(Unknown Source)
	at java.awt.Window.dispatchEventImpl(Unknown Source)
	at java.awt.Component.dispatchEvent(Unknown Source)
	at java.awt.EventQueue.dispatchEvent(Unknown Source)
	at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source)
	at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
	at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
	at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
	at java.awt.EventDispatchThread.run(Unknown Source)

das letzte was in MEINEM code bearbeitet wird, ist die Funktion
Code:
public void setValueAt(final Object value, final int row, final int column)
die die Funktion aus JTable überschreibt.

Ich nehme mal an, dass irgendwas mit dem EventHandling nicht funktioniert. Allerdings komme ich nicht wirklich dahinter wo und was schief läuft. FindBugs z.B. findet auch keinen Fehler.
Vielleicht kann mir jemand weiterhelfen.

Viele Grüße Kalle
 

Neue Beiträge

Zurück