I am going to have a lot of String text in my application. Therefore i thought to have all these Strings in 1 class. So that it would be easy to go and modify a String if there's a requirement to.
public class MyMessage {
static final String NAME = "JOE";
static final String AGE = "21";
......
}
And then access it in other classes like MyMessage.NAME and MyMessage.AGE.
1.) Is this approach correct ?
2.) I also found that, we could use property files to do so. Is this true? (And what is the best approach to do this property file or having static methods in a java class)

public. Also, a more appropriate approach would be to have constants in the class they logically correspond to. – Vulcan Dec 1 '12 at 18:16