Problem with CardLayout and Panels
I am almost finished with this application I am writing, using swing components. I use a card layout to navigate through multiple JPanel objects I have. I created an object called OutlinePanel that extends JPanel. I have two of these in my application in my panel with the card layout. The first instance of OutlinePanel works great, but the second instance... doesn't work too well. For some reason, the second instance, when I get to it while running the application, does not respond to any of the code I change. I know this sounds crazy, but I haven't found a way to fix it.
So basically it is like this. My first OutlinePanel shows up looks fine, then another panel shows, then it shows the second OutlinePanel. And say I go change some stuff in OutlinePanel (ie the text of a JLabel on it), and I compile. It won't update in the second one, but it does in the first one. I have tried deleting all the class files, but it still does it.
Will someone please shed light on this for me. Thank you!

