Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to generate flowcharts in Eclipse?

I am looking for a flowchart plugin for eclipse (I am using eclipse for Android) and stumbled upon CodeRocket for Eclipse.

  • Is it the best flow chart generator eclipse?

I tried Code Rocket for Eclipse.

Did it exactly as described here but I am getting this error

Could not create the view: Plug-in com.rapidqualitysystems.coderocket.ui was unable to load class com.rapidqualitysystems.coderocket.views.EclipseFlowchartEditor.

enter image description here

Any help will be highly appreciated.

Added StackTrace The full stacktrace will clutter the screen and is here and starting five line are below

java.lang.UnsupportedClassVersionError: com/rapidqualitysystems/coderocket/views/EclipseFlowchartEditor : Unsupported major.minor version 51.0
    at java.lang.ClassLoader.defineClass1(Native Method)
    at java.lang.ClassLoader.defineClassCond(ClassLoader.java:631)
    at java.lang.ClassLoader.defineClass(ClassLoader.java:615)
    at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.defineClass(DefaultClassLoader.java:188)

Edit 2 First error was that Code Rocket for Eclipse worked with Java 7 only. I upgraded my Java to 7, later Support for the CodeRocket for Eclipse informed that the software only works with 32-bit version of eclipse.

like image 919
Gaurav Agarwal Avatar asked Feb 03 '26 08:02

Gaurav Agarwal


1 Answers

The most likely cause of your problem ist that

  • The plugin containing the class com.rapidqualitysystems.coderocket.views.EclipseFlowchartEditor is missing
  • Or the class EclipseFlowchartEditor itself requires another class that is missing

Sometimes its very tricky to track down such kinds of problems.

  • Check whether you get a more detailed error message or a stack trace when you push the "Details" button.
  • Check also if there is a error message in the Error Log view.
  • Try to find the plugin that should provide the class EclipseFlowchartEditor and show whether the Plugins view lists this plugin.
like image 75
Claas Wilke Avatar answered Feb 05 '26 20:02

Claas Wilke