gontard
gontard

Reputation: 29520

How to generate a builder class

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 ?

Upvotes: 7

Views: 273

Answers (1)

Alexander Kirov
Alexander Kirov

Reputation: 3654

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.

Upvotes: 2

Related Questions