Changeset 1318 for DCWoRMS/branches/coolemall/src/schedframe/resources/computing/profiles/energy/airthroughput
- Timestamp:
- 03/31/14 16:01:59 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
DCWoRMS/branches/coolemall/src/schedframe/resources/computing/profiles/energy/airthroughput/AirThroughputInterfaceFactory.java
r1207 r1318 6 6 import schedframe.resources.computing.profiles.energy.airthroughput.ui.ComputingResourceAirThroughputInterface; 7 7 import schedframe.resources.devices.PhysicalResource; 8 import schedframe.resources.devices. PhysicalResourceAirThroughputInterface;8 import schedframe.resources.devices.DeviceAirThroughputInterface; 9 9 import schedframe.resources.devices.coolemall.FanAirThroughputInterface; 10 10 … … 16 16 AirThroughputInterface airThroughputInterface = null; 17 17 if(resource.getType().getName().equals(StandardResourceType.CRAH.getName())) 18 airThroughputInterface = new PhysicalResourceAirThroughputInterface(resource, atp);18 airThroughputInterface = new DeviceAirThroughputInterface(resource, atp); 19 19 else if(resource.getType().getName().equals(StandardResourceType.Fan.getName())) 20 20 airThroughputInterface = new FanAirThroughputInterface(resource, atp); … … 24 24 airThroughputInterface = new FanAirThroughputInterface(resource, atp); 25 25 else if(resource.getType().getName().equals(StandardResourceType.CoolingDevice.getName())) 26 airThroughputInterface = new PhysicalResourceAirThroughputInterface(resource, atp);26 airThroughputInterface = new DeviceAirThroughputInterface(resource, atp); 27 27 else 28 28 airThroughputInterface = new ComputingResourceAirThroughputInterface((ComputingResource)resource, atp);
Note: See TracChangeset
for help on using the changeset viewer.