|
@@ -33,6 +33,15 @@ class Section { |
|
|
|
|
|
|
|
|
class Lab { |
|
|
class Lab { |
|
|
|
|
|
|
|
|
|
|
|
public Lab(int lN) { |
|
|
|
|
|
String title = String.format("|Starting Lab %s|", lN); |
|
|
|
|
|
this._labNumber = lN; |
|
|
|
|
|
|
|
|
|
|
|
System.out.println("*".repeat(title.length())); |
|
|
|
|
|
System.out.println(title); |
|
|
|
|
|
System.out.println("*".repeat(title.length())); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
private int _labNumber; |
|
|
private int _labNumber; |
|
|
public Section currentSection; |
|
|
public Section currentSection; |
|
|
|
|
|
|
|
@@ -52,15 +61,6 @@ class Lab { |
|
|
System.out.println("-".repeat(title.length())); |
|
|
System.out.println("-".repeat(title.length())); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
public Lab(int lN) { |
|
|
|
|
|
String title = String.format("|Starting Lab %s|", lN); |
|
|
|
|
|
this._labNumber = lN; |
|
|
|
|
|
|
|
|
|
|
|
System.out.println("*".repeat(title.length())); |
|
|
|
|
|
System.out.println(title); |
|
|
|
|
|
System.out.println("*".repeat(title.length())); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public int getLabNumber() { |
|
|
public int getLabNumber() { |
|
|
return this._labNumber; |
|
|
return this._labNumber; |
|
|
} |
|
|
} |
|
|