hi!
is it possible make swing ui components in some way public static?
for example:
after building in matisse, this is exception from code:
…
//GEN-BEGIN:variables
// Variables declaration – do not modify
private javax.swing.JButton jButton1;
private javax.swing.JButton jButton2;
private javax.swing.JLabel jLabel1;
…
but i would like this have in this way:
…
//GEN-BEGIN:variables
// Variables declaration – do not modify
public static javax.swing.JButton jButton1;
public static javax.swing.JButton jButton2;
public static javax.swing.JLabel jLabel1;
…
or is there any other right way to modify swing ui component from another class?
class1(where are ui components) <- class2(i would like for example append(text) to textArea)
any help?
sorry for my english…