- java.lang.Object
-
- view.CommonView
-
public class CommonView extends java.lang.Object
TheCommonView
class provides utility methods for displaying UI interfaces in console.
-
-
Field Summary
Fields Modifier and Type Field Description private static java.util.Scanner
sc
Scanner
object to get input from user
-
Constructor Summary
Constructors Modifier Constructor Description private
CommonView()
Private constructor to prevent instantiation of the class
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static void
pressEnterToContinue()
Prompts the user to press the "Enter" key to continue with the application.static void
printLine()
Prints a line of '=' to separate textstatic void
printNavbar(java.lang.String path)
Prints the navigation bar with the given path.static void
printStartUpScreen()
Prints the start up screen for Camp Application and Management System (CAMS)
-
-
-
Method Detail
-
printStartUpScreen
public static void printStartUpScreen()
Prints the start up screen for Camp Application and Management System (CAMS)
-
printNavbar
public static void printNavbar(java.lang.String path)
Prints the navigation bar with the given path.- Parameters:
path
- the path to be displayed in the navigation bar
-
pressEnterToContinue
public static void pressEnterToContinue()
Prompts the user to press the "Enter" key to continue with the application.
-
printLine
public static void printLine()
Prints a line of '=' to separate text
-
-