I have a bunch of JInternalFrames that are need to be added to a JDesktopPane, all JIFs are related to each others, each JIF has a next button when I press the next button I want the current JIF to be replaced with a new one; that means the old one should be dispose. Now I wonder how to dispose the old JInternalFrame, I thought it would be nice If I could keep a single instance of a JIF and always check if its not nulll then dispose it, but this is not working for me.
you guys have any idea?