@@ -1,6 +1,6 @@ | |||||
/* | /* | ||||
* Written by : Bin Hong Lee | * Written by : Bin Hong Lee | ||||
* Last edited : 5/31/2016 | |||||
* Last edited : 6/8/2016 | |||||
*/ | */ | ||||
import java.util.*; | import java.util.*; | ||||
@@ -51,4 +51,17 @@ class BookFactory | |||||
throw new NullPointerException(); | throw new NullPointerException(); | ||||
} | } | ||||
public void update(Book newBook) | |||||
{ | |||||
for (int i = 0; i < books.size(); i++) | |||||
{ | |||||
Book temp = books.get(i); | |||||
if(temp.getId() == newBook.getId()) | |||||
{ | |||||
books.set(i, newBook); | |||||
} | |||||
} | |||||
} | |||||
} | } |
@@ -1,6 +1,6 @@ | |||||
/* | /* | ||||
* Written by : Bin Hong Lee | * Written by : Bin Hong Lee | ||||
* Last edited : 6/6/2016 | |||||
* Last edited : 6/7/2016 | |||||
*/ | */ | ||||
import java.util.*; | import java.util.*; | ||||