I have a window with 3 separate JSplitPanes. I've made three of the applications separately; hence they have everything inside of them including things like action listeners.
I've now created a 4th class where I have just called the other classes as objects and put them inside the pane.
Is this complying the MVC standards I should be using? Or do I effectively have to start again and have a different data structure? If so how would you suggest I structure it? Have all the 'layout' stuff in one class, all the 'data structure' stuff in another and one more with all the 'calculations' hence stuff like the action listeners?