I'm trying to create a JOptionPane with yes and no options asking whether the person wishes to go into full screen mode or not. When the person clicks on yes, full screen mode should be set, but it's not. If I were to click on no, then it would do the correct thing. When I click on yes, it goes straight to normal screen. I'm not sure why and everything seems correct. Here's the Main class.
And the GameFrame constructor.
The isFullScreen boolean has a setter and getter for it, so that's where setFullScreen(boolean isFullScreen) comes into play. I don't see anything wrong with it if I'm setting the boolean to make it full screen or not and then setting the display mode for it. Help is appreciated. Thanks.
Are you sure it's the JOptionPane that isn't working? Try adding some System.out.println statements in your if-else block. My guess is that the error is located elsewhere (like GameFrame.runFullScreen).
Josh Rodrigues wrote:I fixed it. Seems like it wouldn't take the setter method:
Great!
Your posts sounds like you're not quite sure why this is. It's because a local variable always hides or "shadows" a member variable of the same name; what your first version is doing is assigning the value of the parameter to the parameter itself. Using the class name -- or "this" in a setter for an instance variable -- is always necessary if you use the same name for the parameter as for the member variable.