source: DCWoRMS/branches/coolemall/src/schedframe/resources/devices/Fan.java @ 1274

Revision 1274, 542 bytes checked in by wojtekp, 11 years ago (diff)
  • Property svn:mime-type set to text/plain
Line 
1package schedframe.resources.devices;
2
3import java.util.ArrayList;
4import java.util.List;
5
6import schedframe.resources.devices.description.DeviceDescription;
7
8public 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.