1 | /* |
2 | * Created on Sep 12, 2004 |
3 | * |
4 | * TODO To change the template for this generated file go to |
5 | * Window - Preferences - Java - Code Style - Code Templates |
6 | */ |
7 | package biz.xsoftware.buildtemplate; |
8 | |
9 | /** |
10 | * @author Dean Hiller |
11 | * |
12 | * TODO To change the template for this generated type comment go to |
13 | * Window - Preferences - Java - Code Style - Code Templates |
14 | */ |
15 | public class FileBean { |
16 | |
17 | private String name; |
18 | private long lastMod; |
19 | |
20 | public FileBean(String name, long lastMod) { |
21 | this.name = name; |
22 | this.lastMod = lastMod; |
23 | } |
24 | |
25 | |
26 | /** |
27 | * @return Returns the lastMod. |
28 | */ |
29 | public long getLastMod() { |
30 | return lastMod; |
31 | } |
32 | /** |
33 | * @return Returns the name. |
34 | */ |
35 | public String getName() { |
36 | return name; |
37 | } |
38 | } |