How to generate a builder class
java, javafx-2
Solution
Builders are created using annotation processor and now, it is internal.
I've created an issue : http://javafx-jira.kenai.com/browse/RT-28553
which is for a tracking purpose and for a discussion.
Problem
I have developed in a library a custom javafx.animation.Transition. I want to provide the corresponding builder (like the `TranslateBuilder` for the `Translate` transformation). As you can see in the TranslateBuilder javadoc, the builder class is annotated by `@Generated(value="Generated by javafx.builder.processor.BuilderProcessor")`. Is it possible to use this processor ? If yes, how ?