01/10/2018, 08:24

Cho em hỏi cách gọi text area bên giao diện sang class.java với ạ

Các bác cho em hỏi , em có bài java swing e mắc ở chỗ làm thế nào để cái textarea bên giao diện để setCaretPosition

Tynk Huynk viết 10:25 ngày 01/10/2018

To use an instance variable of other class (not object), you need to set the variable to static and access it by its class
For example:

Public class mainGUI {
      private static JTextArea areaContent;
      
      static JTextArea getAreaContent(){
               return areaContent;
      }
 }


Public class FindGUI {
       private JTextArea textArea = mainGUI.getAreaContent();
}

P/s: Sorry, Unikey is broken, so I cant type Vietnamese, hope you get what I answer

Bài liên quan
0