Category Archives: Eclipse

Compensator – A code editor and a code dev environment written in JavaFX

If you’ve followed the release of e(fx)clipse 1.2.0 and my latest blogs on this, you might have noticed that we have spent quite some time on components like a styled text editor, a filesystem viewer and other basic stuff one … Continue reading

Posted in e(fx)clipse | 12 Comments

How to create an editor with syntax highlighting for Java

I see many people at stackoverflow who ask for an editor who does syntax highlighting in their JavaFX applications. As e(fx)clipse runtime has such a control available and the Eclipse Text Framework has all the tokenizing and reconcoling infrastructure I … Continue reading

Posted in e(fx)clipse | 8 Comments

e(fx)clipse 1.2.0 released

Before going into the weekend and work on my EclipseCon stuff I’m happy to announce the 1.2.0 release of e(fx)clipse tooling and runtime. Tooling e(fx)clipse adds JavaFX tooling to your Eclipse IDE and provides: FXML editor including a live preview … Continue reading

Posted in e(fx)clipse | Tagged | 12 Comments

e(fx)clipse 1.2.0 – Helper API to call methods who throw exceptions

Have you ever worked with a library who throws an exceptions but there’s not possible recovery for you and you simply want to move on with a default value or null? I’ve had the “fun” to work with something like … Continue reading

Posted in e(fx)clipse | Leave a comment

e(fx)clipse 1.2.0 – publishing runtime as an R5 bundle repository

In other posts I already outlined that our effort beside creating new features is to make the e(fx)clipse runtime a better citizen of the OSGi community / ecosystem. Starting with 1.2.0 we are not only providing a p2 repository – … Continue reading

Posted in e(fx)clipse | 5 Comments

e(fx)clipse 1.2.0 – StyledTextArea improvements

A lot of time has been spent on StyledTextArea and so it has improved a lot. Many many bugs have been fixed one of the most interesting features from an API point of view is most likely support for custom … Continue reading

Posted in e(fx)clipse | Tagged | Leave a comment

e(fx)clipse 1.2.0 – New service to observe a filesystem path

With 1.2.0 the e(fx)clipse core runtime bundle comes with a service who is able to track filesystem modifications. Since Java7 there’s an API to observe filesystem paths and so has the Eclipse Core Resources System which is used inside your … Continue reading

Posted in e(fx)clipse | Tagged | 1 Comment

e(fx)clipse 1.2.0 – RRobot learned to generate declarative services

In my last blog post I described that the way you define themes has changed – pre 1.2.0 you used extension points, now with 1.2.0 you are supposed to use OSGi-Services (preferably through the use of declarative services). I guess … Continue reading

Posted in e(fx)clipse | Tagged | Leave a comment

e(fx)clipse 1.2.0 – Themes are OSGi services

e(fx)clipse 1.2.0 is trying to get a better OSGi citizen and so we try to remove more and more Equinox/Eclipse specific stuff which means that we want to get rid of the Extension Registry in our/your code. In 1.1.0 themes … Continue reading

Posted in e(fx)clipse | Tagged | 5 Comments

EMap – Map your EMF to an SQL-Database

There are various technologies available for mapping EMF-objects to SQL databases, like the probably most established ones in the Eclipse ecosystem (both developed by Martin Taal) Teneo Texo We more than contentendly used these two in quite some projects until … Continue reading

Posted in Eclipse | Leave a comment