Try setting a LoadListener on your FXMLLoader and the endElement(Object
value) callback may give you what you are after.
Just out of curiosity, what's the use case?
On Sat, Jun 1, 2013 at 8:33 AM, Florian Brunner wrote:
> Hi Daniel,
>
> Thanks for your response.
>
> > When you say 'instance'
Hi Daniel,
Thanks for your response.
> When you say 'instance' what do you mean? A controller or a node or something
> else?
I'm looking for a way to get notified when a Node gets created.
Regards,
Florian
Am Donnerstag, 30. Mai 2013, 08.25:23 schrieb Daniel Zwolenski:
> When you say 'instance
When you say 'instance' what do you mean? A controller or a node or something
else?
A controller can be notified when it is initialized (and all the associated
nodes will be initialized by this point):
http://docs.oracle.com/javafx/2/api/javafx/fxml/Initializable.html
Does that give you the ho
Hi,
I'm experimenting with FXMLLoader. Is there a way to get notified, when an
instance gets created?
I tried to work with a wrapper class for BuilderFactory, like this:
public class WrapperBuilderFactory implements BuilderFactory {
private final BuilderFactory builderFactory;
public