Category Archives: e(fx)clipse
Friday fun stuff – JavaFX Based Java IDE
While I’ve been working (and still work) on general IDE concept and frameworks I decided to today that I want to work on something simpler. After having hacked the whole day I have now a basic Java IDE: Nothing fancy … Continue reading
e(fx)clipse support for Java9
Approximately a month ago we started to the work to run e(fx)clipse applications on Java9. We had to clean up our codebase a bit because sometimes we called into none-public API (eg impl_*) who has been made private or released … Continue reading
e(fx)clipse runtime library – Dealing with listeners on JavaFX-Observables
Now that the e(fx)clipse runtime code base is available to any application developer (see this blog post). It is time to explore all the cool stuff it provides for Java(FX) application development. In the next few weeks I’ll blog about … Continue reading
Make it easy to consume e(fx)clipse libraries in maven (or gradle)
In the past we now and then published some of our artifacts on maven central but because this was a manual process we’ve often been too lazy leading to do it on each release. This leads frustration because while we’ve … Continue reading
Making @Service annotation even cleverer
As some of you might know e(fx)clipse provides a Eclipse DI extension supporting more powerful feature when we deal with OSGi-Services: Support for dynamics (eg if a higher-ranked service comes along you get it injected, …) Support for service list … Continue reading
Improving Min/Max performance in “e4-on-JavaFX” applications
When it comes to performance in JavaFX one of the biggest problems is that if you detach and reattach a big SceneGraph-Part you run: CSS-Pass Layout-Pass So in general one should avoid those operations as much as possible but there … Continue reading
New SashLayout container has landed in e(fx)clipse
I just pushed a new layout-container who has a similar feature set than the JavaFX built-in SplitPane but ensures that proportions are not corrupted if you shrink the container (just watch the video below to get an idea what I … Continue reading
Building e4 JavaFX applications with gitlab-ci and docker
We’ve decided internally sometime ago to use a self-hosted gitlab instance for our projects. To get started quickly we first only used the ticket-system and keep our jenkins-instance to do our builds which works fine but it somehow bothered me … Continue reading
e(fx)clipse 2.3.0 released
Right for EclipseConNA 2016 next week we released e(fx)clipse 2.3.0. This release mainly provides features in the runtime layer. Where to get it from If you are interested in the Tooling you can: Install it into a 4.5.2 install using … Continue reading
Using TypeScript LanguageService to build an JS/TypeScript IDE in Java
Yesterday I blogged about my endeavors into loading and using the TypeScript Language Service (V8 and Nashorn) and calling it from Java to get things like an outline, auto-completions, … . Today I connected these headless pieces to my JavaFX-Editor-Framework. … Continue reading