why dont u just remove the protection, if u need it?
How should I do this?
The MouseInfo class is part of the greenfoot API. I have no access on this classes so I can't change it.
dl the source, remove protection, recompile
If you do as erdelf suggests, your game will be incompatible with the Gallery and anyone else's installation of (standard) Greenfoot. Access to non-public methods is faulted by Java whenever it loads a class.
There's no particular reason why the constructor for MouseInfo is package private, but it was never intended that anyone would subclass MouseInfo and I don't understand why you need to do so?
I'd suggest making your own class (eg MyMouseInfo) which doesn't subclass MouseInfo but mirrors its functionality, and copying the values from MouseInfo (if that is available) into it, or setting the values specifically if in full screen mode.