Connecting Tech Pros Worldwide Forums | Help | Site Map

eclipse application getting an Assertion failed exception

Newbie
 
Join Date: Sep 2007
Posts: 11
#1: Feb 13 '08
Hello All,

I am trying to execute an application that is developed using eclipse libraries.
Jface, SWT , etc.

While I execute the application , i have received an exception which I am unable to trace it.

TextViewer.setSelection(100,true);
is the statement whre it araised.
TextViewer is org.eclipse.jface.text.SourceViewer object.

The error reported is :


Expand|Select|Wrap|Line Numbers
  1.  
  2. org.eclipse.jface.text.Assert$AssertionFailedException: Assertion failed:
  3. at org.eclipse.jface.text.Assert.isTrue(Assert.java:189)
  4. at org.eclipse.jface.text.Assert.isTrue(Assert.java:174)
  5. at org.eclipse.jface.text.source.LineNumberRulerColumn.getBaselineBias(LineNumberRulerColumn.java:815)
  6. at org.eclipse.jface.text.source.LineNumberRulerColumn.doPaint(LineNumberRulerColumn.java:693)
  7. at org.eclipse.jface.text.source.LineNumberRulerColumn.doubleBufferPaint(LineNumberRulerColumn.java:624)
  8. at org.eclipse.jface.text.source.LineNumberRulerColumn.redraw(LineNumberRulerColumn.java:866)
  9. at org.eclipse.jface.text.source.LineNumberRulerColumn$InternalListener.viewportChanged(LineNumberRulerColumn.java:72)
  10. at org.eclipse.jface.text.TextViewer.updateViewportListeners(TextViewer.java:2666)
  11. at org.eclipse.jface.text.TextViewer.internalRevealRange(TextViewer.java:2869)
  12. at org.eclipse.jface.text.TextViewer.revealRange(TextViewer.java:2821)
  13. at org.eclipse.jface.text.TextViewer.setSelection(TextViewer.java:2141)
  14. at cdacb.ssdg.diviag.process.ProcessWindow$TextTabItem$MySourceViewer.scrollToLine(ProcessWindow.java:1853)
  15. at cdacb.ssdg.diviag.process.ProcessWindow$TextTabItem.updateCurrentLine(ProcessWindow.java:1480)
  16. at cdacb.ssdg.diviag.process.ProcessWindow.updateCurrentLine(ProcessWindow.java:1141)
  17. at cdacb.ssdg.diviag.cp.ControlPanel.openWindows(ControlPanel.java:1178)
  18. at cdacb.ssdg.diviag.cp.ControlPanel.createProcGroups(ControlPanel.java:1023)
  19. at cdacb.ssdg.diviag.cp.ControlPanel$1.widgetSelected(ControlPanel.java:785)
  20. at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:90)
  21. at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66)
  22. at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1021)
  23. at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2867)
  24. at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2572)
  25. at cdacb.ssdg.diviag.Main.main(Main.java:56)
  26. at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  27. at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
  28. at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
  29. at java.lang.reflect.Method.invoke(Unknown Source)
  30. at com.sun.javaws.Launcher.executeApplication(Unknown Source)
  31. at com.sun.javaws.Launcher.executeMainClass(Unknown Source)
  32. at com.sun.javaws.Launcher.doLaunchApp(Unknown Source)
  33. at com.sun.javaws.Launcher.run(Unknown Source)
  34. at java.lang.Thread.run(Unknown Source)
  35.  

Dököll's Avatar
Moderator
 
Join Date: Nov 2006
Location: Upstate NY - US
Posts: 2,268
#2: Dec 8 '08

re: eclipse application getting an Assertion failed exception


Greetings, ravit!

Looks like are having IDE problems... are you using an IDE other than Eclipe to run your app...

You can download a free version of Eclipse to try the code.

You can also post the whole code for easy access, in case someone see something else that could be problematic.

In a bit!
Nepomuk's Avatar
Moderator
 
Join Date: Aug 2007
Location: Germany
Posts: 2,466
#3: Dec 8 '08

re: eclipse application getting an Assertion failed exception


Great! An unknown error and no code to work with! I'm absolutely sure, your error is in line #104, the 4th character...

OK, seriously now. We can't help you, if we don't know your code. Generally, I'd try commenting out some sections of the code and check if the error still occurs - that way you can limit the area the error may be. But if you want any further help, we'll need to see some code.

Greetings,
Nepomuk
JosAH's Avatar
Expert
 
Join Date: Mar 2007
Posts: 10,611
#4: Dec 9 '08

re: eclipse application getting an Assertion failed exception


Quote:

Originally Posted by Dököll View Post

Looks like are having IDE problems...

It is not an IDE problem; it has to do with SWT and by coincidence Eclipse also is bundled with those libraries (which it uses itself) and is made available to the user as well, Stop pointing to those IDEs all the time; they're innocent.

kind regards,

Jos
Reply