Eclipse GEF Tutorial – GEF MVC
This code example belongs to the Eclipse RCP tutorial series. Eclipse GEF (Graphical Editing Framework) contains three components: Draw2d (org.eclipse.draw2d), GEF (MVC) …
This code example belongs to the Eclipse RCP tutorial series. Eclipse GEF (Graphical Editing Framework) contains three components: Draw2d (org.eclipse.draw2d), GEF (MVC) …
Let’s say each widget has 4 sides, e.g., a button has top, bottom, left, and right. FormLayout works by using FormAttachments for …
1. What the popup menu looks like in an eclipse editor? This tutorial shows how to add a popup menu item to …
The following are snapshots of every step involved when creating a popup menu by using PDE.
The following tutorial shows how to add a menu item to the popup menu when right click a .java file in Package …
PDE is what you need for developing Eclipse Plug-in projects. Installing PDE is the first step for doing RCP development. It can …
A perspective is the container for a set of views and editors. The most commonly used perspective is probably “Java” which contains …
In this tutorial, I will use examples to show you how to use the Eclipse PlatformUI class. PlatformUI is a final class …
Open source is not a new concept and you can find open source projects for most commonly used frameworks. In 2010, UCI …
This post also assumes that you have a standalone Eclipse RCP application. You can find out how to make one here. We …
This post also assumes that you have a standalone Eclipse RCP application. You can find out how to make one here. You …
If you don’t want to use latex or metapost to plot your research data, Java is also good for that. We can …
If you develop an RCP rich client application, sooner or later you will have to know some layout to organize the widgets …
Error message(partial): java.lang.ClassNotFoundException: com.mysql.jdbc.Driver at org.eclipse.osgi.internal.loader.BundleLoader.findClassInternal(BundleLoader.java:506) at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:422) at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:410) at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.loadClass(DefaultClassLoader.java:107) at java.lang.ClassLoader.loadClass(Unknown Source) You may check again and again if …
1. What is a Workbench? The following diagram is from eclipse official site. In brief, when you open your eclipse, what you …
This tutorial is about eclipse Job and it consists two parts. The first part introduces how to make a progress bar by …
For learning Eclipse RCP, reading a book is not the most efficient way. We can find a lot of free resources on …
To develop a standalone desktop GUI application by using eclipse RCP, exporting it to be a product is necessary. This tutorial is …
Eclipse RCP is a good platform to develop GUI desktop application. There is a bottleneck for programmers to learn how to build …
If you want to develop Java Desktop application, you probably have two choices of libraries: SWT vs. Swing. Where there is pros …