blob: dda20b8176b8b472e60e3f440baae8e254582ffd (
plain) (
blame)
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
|
package com.ufund.api.ufundapi;
import java.util.ArrayList;
public class CupboardFileDao {
private ArrayList<Need> needs;
private final String filePath;
public CupboardFileDao(String filepath) {
this.filePath = filepath;
}
public ArrayList<Need> getNeeds() {
return needs;
}
public String getFilePath() {
return filePath;
}
public void addNeed(Need need) {
needs.add(need);
}
}
|