I have an issue with my java application. I already read some questions here and none of them helped me. The issue is that I am trying to change text in my textbox which is defined this way:
public java.awt.TextField param1;
After that I want to load parametre from xml file (I am able to get parametre value), then set it in the textfield.
BP_evolution.gui.param1.setText(xsr.getText()); //xsr is XMLStreamReader
BP_evolution.gui.param1.repaint();
Where am I wrong with my code, please?
Thanks for the answer! Martin