in my Keyboardclass i have 3 difrent jTextareas (jTextareas1, jTextareas2, jTextareas3). Normaly i call them with keyboardwindow.jTextArea1.setText(); or keyboardwindow.jTextArea1.setBackground(); in my main.
But is there a way to use them in a loop in my main something like:
for(int n=1; n<=4; n++){
keyboardwindow.jTextAreai.setText();
}