File tree Expand file tree Collapse file tree 3 files changed +35
-1
lines changed Expand file tree Collapse file tree 3 files changed +35
-1
lines changed Original file line number Diff line number Diff line change @@ -6,5 +6,5 @@ Display | Name | Github Profile | Portfolio
6
6
![ ] ( https://media.licdn.com/dms/image/C4D03AQGTLbALYjG82Q/profile-displayphoto-shrink_800_800/0/1580629728751?e=1701907200&v=beta&t=PEfw_qZfZA39rJRfo5_Pg4o_RmbPwdneiPX3ftNt9dA ) | Wendelin Wemhoener | [ Github] ( https://github.com/wendelinwemhoener/ ) | [ Portfolio] ( docs/team/wendelinwemhoener.md )
7
7
![ ] ( https://via.placeholder.com/100.png?text=Photo ) | Zhu Jingxi | [ Github] ( https://github.com/Cheezeblokz ) | [ Portfolio] ( docs/team/zhujingxi.md )
8
8
![ ] ( https://via.placeholder.com/100.png?text=Photo ) | Kherlen Bayasgalan | [ Github] ( https://github.com/Brian030601 ) | [ Portfolio] ( docs/team/kherlenbayasgalan.md )
9
- ![ ] ( https://via.placeholder.com/100.png?text=Photo ) | John Roe | [ Github] ( https://github.com/ ) | [ Portfolio] ( docs/team/johndoe .md )
9
+ ![ ] ( https://via.placeholder.com/100.png?text=Photo ) | Bang Junhyeong | [ Github] ( https://github.com/junhyeong0411 ) | [ Portfolio] ( docs/team/bangjunhyeong .md )
10
10
![ ] ( https://via.placeholder.com/100.png?text=Photo ) | Don Roe | [ Github] ( https://github.com/ ) | [ Portfolio] ( docs/team/johndoe.md )
Original file line number Diff line number Diff line change
1
+ # Bang Junhyeong - Project Portfolio Page
2
+
3
+ ## Overview
4
+
5
+
6
+ ### Summary of Contributions
Original file line number Diff line number Diff line change
1
+ package seedu .duke ;
2
+
3
+ import java .io .File ;
4
+ import java .io .FileNotFoundException ;
5
+ import java .io .FileWriter ;
6
+ import java .util .Scanner ;
7
+
8
+ /**
9
+ * storage for flashcards
10
+ * Flashcard implementation should be finished first
11
+ */
12
+ public class Storage {
13
+ // simply implemented for save & load first
14
+
15
+ protected String path ;
16
+
17
+ public Storage (String path ){
18
+ this .path = path ;
19
+ }
20
+
21
+
22
+ public void loadFlashcards () throws FileNotFoundException {
23
+
24
+ File f = new File (this .path );
25
+ Scanner s = new Scanner (f );
26
+
27
+ }
28
+ }
You can’t perform that action at this time.
0 commit comments