public class StudentInfo { /** Displays the student information: student name, id, section, * etc. You must fill this information inside the box. */ public static void display() { System.out.println( "************************************************************" ); System.out.println( "* *" ); System.out.println( "* *" ); System.out.println( "* *" ); System.out.println( "* *" ); System.out.println( "************************************************************" ); System.out.println(); } }