public class Confidential { private String secret = ""; public Confidential(String text) { secret = text.toUpperCase(); } }