I need your help. I want to add the swtChart to my RCP project but it´s not working! I understood that I have to add the org.swtchart_0.9.0.v20140219 to my lib folder and then configure it in built path, in fact, I can see that the code is compiling and I can see the class Chart in org.swtchart, so I don´t understand why the error message is "java.lang.ClassNotFoundException: org.swtchart.Chart". Are there something else to do when installing an external plugin. Sorry I`m new in RCP/SWT. Thanks a lot!
installing swtChart RCP/SWT- java.lang.ClassNotFoundException: org.swtchart.Chart
492 Views Asked by Monik Eliz At
1
There are 1 best solutions below
Related Questions in JAVA
- Add image to JCheckBoxMenuItem
- How to access invisible Unordered List element with Selenium WebDriver using Java
- Inheritance in Java, apparent type vs actual type
- Java catch the ball Game
- Access objects variable & method by name
- GridBagLayout is displaying JTextField and JTextArea as short, vertical lines
- Perform a task each interval
- Compound classes stored in an array are not accessible in selenium java
- How to avoid concurrent access to a resource?
- Why does processing goes slower on implementing try catch block in java?
- Redirect inside java interceptor
- Push toolbar content below statusbar
- Animation in Java on top of JPanel
- JPA - How to query with a LIKE operator in combination with an AttributeConverter
- Java Assign a Value to an array cell
Related Questions in ECLIPSE
- Set log4j.properties for GWT
- Compound classes stored in an array are not accessible in selenium java
- Eclipse color highlighting broken
- Eclipse Luna with Nodeclipse hangs when navigating a .js file with the Outline view
- Java Heap Space error on Layout xml: GC overhead limit exceeded
- Eclipse, how to find how many attributes defined in a class?
- Eclipse and Windows Headers
- Eclipse find source file from library
- mingw-64 conflicting declarations when cross-compiling
- String.split() not behaving in android
- local variable referenced before assignment in strange condition
- eclipse errors when try to change to master git branch
- Scala Eclipse IDE compiler giving errors until "clean" is run
- Not able to send email in java using SMTP,its blocked by firewall in my office.Is there any other method by which we can send mail?
- Behaviour Difference: Intellij vs Eclipse
Related Questions in SWT
- Opening PDF file in SWT Browser - XulRunner default viewer
- SWT CTabFolder doesn't display when running from eclipse
- Sash becomes lost after resize
- Making a table dynamic according to the size of the screen in SWT
- How to align image to center of table cell (SWT Table) RAP Platform
- Unable to set size for a scrolled composite SWT
- RCP or SWT to build eclipse plugin
- How to add html code to the table column header in Eclipse RAP
- SWT Text Widgets in StackLayout—Can't adjust height when switching top control
- How to drag and open file in editor?
- How to make a SWT Composite selectable?
- scroll and auto resize
- Simulate click on menu item in SWT
- How to stop re fetching of data in JFace TableViewer during column sorting
- SWT - show multiple table items
Related Questions in RCP
- How to align image to center of table cell (SWT Table) RAP Platform
- Editable combo is not properly binding to model property
- How export Eclipse 3.7 rcp product with AspectJ support?
- XML source formatter not working on plugin.xml sources
- installing swtChart RCP/SWT- java.lang.ClassNotFoundException: org.swtchart.Chart
- ECLIPSE E4 dependencies issue
- How to close a part when error occurs during initialization in eclipse e4 rcp?
- Eclipse RCP 4 + JavaFX - How to load Scene saved as FXML
- How to improve RCP application start times
- Not able to launch Eclipse RCP product in Eclipse Neon which was built on Eclipse Indigo
- How to visible Plugin A all classes to Plugin B
- How to make the children of a composite visible immediately after disposed them and loaded them again in SWT?
- Using FormEditor, how can I programmatically give focus to the content instead of the header?
- How to pass data from plugin B to Plugin A
- how to save data after closing view
Related Questions in SWTCHART
- installing swtChart RCP/SWT- java.lang.ClassNotFoundException: org.swtchart.Chart
- swtchart doesn't display in dialog
- JAVA SWTchart change Y AXIS sign without changing the rest of the graph
- Displaying diffrent series in the same chart using swtchart
- SWT stacked bar chart show total value
- SWTChart mouse over handling
- SWTChart mouse event handling
- scatter plot with different point colours and sizes
- How can I add zoom and Scroll in swtchart in Java?
- Save java SWT chart to image
- How to dynamically update series data and legend in SWTChart?
- SWT Display / Shell terminate and reshow
- SWTChart not redraw when it is inside a loop
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Just adding a jar to the Java Build Path is not correct for an Eclipse plugin.
The swtchart jar is an Eclipse plugin so for an RCP you should add the swtchart plugin to your Target Platform and make your plugin depend on the swtchart plugin.
You should then include the swtchart plugin in the plugins that are included in the RCP build (if you are using a .product file this means including the swtchart plugin in the Dependencies)
You can also just use swtchart as a jar in your plugin. In this case you must use the MANIFEST.MF editor to add the jar to the plugin Classpath (on the Runtime tab). You must also include the jar in the build - the Build tab of the manifest editor.