I can not understand the problem of my attempt to code, but in the Main class area.getText (na.l) does not work;
public class Main { public static void main(String[] args) { Na na = new Na(); JFrame kl = new JFrame(); JTextArea area = new JTextArea(); area.getText (na.l); /* тут (na.l) подчеркивается красным, а при наведении курсора пишет это предложение. */ } } class Na { Main maiin = new Main(); String l = "Rain"; }