checking while retrieving data in a static class
I have a static class which stores some system messages,
normally i'll call it by using:
if(success)
System.out.println(MyMessage.message01);
else
System.out.println(MyMessage.message02);
now my system want to support two languages, english and japanese
what should i do by not touching the calling method (like the example above), and do checking at the MyMessage static class?
if it wasnt a static class i think it can be easily solved by doing a checking at class construct....
any idea? thanks a lot

