-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLayout1.java
65 lines (46 loc) · 2.45 KB
/
Layout1.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
//MAIN CLASS
import java.io.IOException;
public class Layout1
{
public void space()
{
System.out.print("\n\n*************************************************************************************\n");
System.out.print("\n\n\n\n\n\n\n\n");
System.out.print("\n\n*************************************************************************************\n");
}
public static void title()
{
Typing_effect_test T2 = new Typing_effect_test();
System.out.print("\n\n*************************************************************************************\n\n");
T2.displayString("\t\t //===========\\\\ \\\\================// //===========\\\\ \n");
T2.displayString("\t\t || || || \n");
T2.displayString("\t\t || || || \n");
T2.displayString("\t\t || || || \n");
T2.displayString("\t\t \\\\==========\\\\ || || //=====\\\\ \n");
T2.displayString("\t\t || || || || \n");
T2.displayString("\t\t || || || || \n");
T2.displayString("\t\t || || \\\\============|| \n");
T2.displayString("\t\t ===========// || ||\n");
T2.displayString("\n\t\t\tSCHEDULE TRACKER AND GENERATOR USING SCRUM");
System.out.print("\n\n*************************************************************************************\n");
}
public static void main(String[] Args)
{
clrscr(); //Clears the terminal screen
Scrum_Framework Scrum1 = new Scrum_Framework();
title();
Scrum1.Login(); //INPUT PHASE 1
Scrum1.Display_Prod_Backlog(); //SCRUM FRAMEWORK (PHASE 2)
main(Args); //Entire code recurses based on user preference
}
public static void clrscr()
{
//Clears Screen in java
try {
if (System.getProperty("os.name").contains("Windows"))
new ProcessBuilder("cmd", "/c", "cls").inheritIO().start().waitFor();
else
Runtime.getRuntime().exec("clear");
} catch (InterruptedException | IOException ignored) {}
}
}