/**
 * All the main methods of this assignment must call the method
 * StudentInfo.display().
 * 
 * @author Lucia Moura
 */

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("*      Student must show their info here:                  *");
	System.out.println("*      Name, student id, ITI1121X                          *");
	System.out.println("*                                                          *");
	System.out.println("************************************************************");
	System.out.println();

    }

}
