I have to develop an application similar to JConsole. As of now, I have created a form using Swing and have been able to retrieve all the log files. I am not getting how to go about linking these two. Could any one give me a hint please?
Printable View
I have to develop an application similar to JConsole. As of now, I have created a form using Swing and have been able to retrieve all the log files. I am not getting how to go about linking these two. Could any one give me a hint please?
how to go about linking these two
Define some methods in the class that has the data that the GUI class can call to do what it needs to do. The GUI class would need a reference to the class with the data so it can call its method.