Author Archives: Tom Schindl
Slides from latest talks
I’ve seen some people coming to my blog from the eclipsecon.org website and are probably looking for slides of the talks I’ve given: e(fx)clipse – Short intro as part of the JavaFX-Slot – Thanks Donald and Oracle for giving us … Continue reading
A busy time
It’s going to be a busy time in the next few weeks. Next week I’m heading to Antwerpen to join Ralph, Wayne, Benjamin and Sven on the Eclipse Deep Dive-Evening on Oct, 27th where I give a short intro to … Continue reading
e(fx)clipse 0.0.7 released
UPDATE Please download the latest version from efxclipse.org So the next release 0.0.7 with a huge amount of new features is available so let’s directly dive into it them. Tooling New Wizards A JavaFX category to group all JavaFX-Wizards has … Continue reading
Find Classloader for a given OSGi-Bundle or Having fun with FXML in OSGi
So this is something I wanted serval times already and now since Equinox 3.7 it is available. You get get the classloader used by bundle very simple. My use case is that I have to pass an none OSGi-Aware lib … Continue reading
FXML and Google Guice
JavaFX comes with the possibility to define your UI using a declarative XML-Syntax instead of writing Java code. To react on user input the XML-Syntax allows you to call back into programm code. A simple example looks like this: The … Continue reading
e(fx)clipse – LivePreview for fxgraph
I’ve justed pushed something very cool to my e(fx)clipse git-repo. I’ve added a preview which gets updated while you are defining your JavaFX-UI using my fxgraph-DSL: It was really hard to implement but I had an example for the Xtext … Continue reading
JFace-Viewer and Eclipse Databinding with > 10.000 Objects
Inspired by a bugzilla-discussion where virtual support for the nebula grid. I thought I blog a bit about Eclipse Databinding when it comes to big datasets. The standard way used looks like this: Executing this code with the following item … Continue reading
Teneo, OSGi and Javaassist for proxy loading
Yesterday I’ve debugged to get javaassist working with teneo which gave us headaches in the past so we simply turned it off which isn’t really a problem to us but I simply wanted to know why it didn’t worked. As … Continue reading
e(fx)clipse 0.0.6 released
UPDATE Please download the latest version from efxclipse.org I’ve justed pushed the 0.0.6 release of my JavaFX 2.0 Tooling and Runtime for Eclipse named e(fx)clipse to my git-repo and you can download the p2 repo to your local hard drive … Continue reading
How to author fxml
JavaFX allows one to define an UI not only using the JVM-Language of your choice but also by describing the UI in an XML-Format which is turned into an object graph at runtime. The JavaFX samples are coming with an … Continue reading