I need to execute this instruction:
jButton1.setBackground(Color.orange);
but , jButton1 comes by a variable that i recover from a Data Base.
String b="jButton1";
and now I have to execute :
***b + ".setBackground(Color.orange)" ***
But Eval function is not aplicable. How can I execute this String *** boton + ".setBackground(Color.orange)"*** as an instruction?