the application I am working on uses Netbeans modules, the problem I am having is that I have a Jtable in one module that I would like to update its contents from another module.
The module with the table in it acts as a data panel, where information can be selected and then plotted as graph using JfreeChart, the next modules handles the creation of the chart, when the data is being put into series to be plotted I am doing some analysis, simple stuff average error, STD etc but would like said information to be displayed in the Jtable which is part of the first module i spoke of.
So my question is, is there any way to access this Jtable from another Netbeans module and if so what is the best way to go about doing this ?
Thanks in advance.