JMenu extending class behaves weird
I have extended JMenu and overwritten getText and setText to get proper Locale dependent behaviour and to enforce future users to use locale independent programming.
Due to that the text you enter into settext and get from getText is not the text that ought to be displayed.
Now my problem is that somewhere during displaying my getText method is called and the result is written to the supers setText. therefore the not to be displayed string appears. (I checked that returning a constant string via getText, that apeared nowhere else in my programm and it got written on all the menues)
Any idea how to fix that or what i did wrong?

