Module SDK

I’m developing a SDK module to add a component to the Vision module.
This component has a JTextField. What I want is when I write some text in this field, the Text property change to the text I wrote.
What I’ve done is that when I write text in the Text property, the text into JTextField change.

You might try adding a listener to the text field.

You also may want to do some reading about how text fields and Java Swing in general works.

docs.oracle.com/javase/tutorial … field.html