Revision 1274,
542 bytes
checked in by wojtekp, 11 years ago
(diff) |
|
-
Property svn:mime-type set to
text/plain
|
Line | |
---|
1 | package schedframe.resources.devices; |
---|
2 | |
---|
3 | import java.util.ArrayList; |
---|
4 | import java.util.List; |
---|
5 | |
---|
6 | import schedframe.resources.devices.description.DeviceDescription; |
---|
7 | |
---|
8 | public class Fan extends Device{ |
---|
9 | |
---|
10 | protected List<String> chilledResources; |
---|
11 | |
---|
12 | public Fan(DeviceDescription devDesc) { |
---|
13 | super(devDesc); |
---|
14 | this.chilledResources = new ArrayList<String>(); |
---|
15 | } |
---|
16 | |
---|
17 | public List<String> getChilledResources(){ |
---|
18 | return chilledResources; |
---|
19 | } |
---|
20 | |
---|
21 | public void setChilledResources(List<String> chilledResources) { |
---|
22 | this.chilledResources = chilledResources; |
---|
23 | } |
---|
24 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.