/** * @author Chuck Caplan * */ public class Private { private int intPrivate = 42; private String strPrivate = "This is the String strPrivate."; private void voidPrivate() { System.out.println("Method voidPrivate was just called."); } }