- Timestamp:
- 06/18/14 12:21:39 (11 years ago)
- Location:
- DCWoRMS/branches/coolemall/src/schedframe/resources/computing/profiles/energy
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
DCWoRMS/branches/coolemall/src/schedframe/resources/computing/profiles/energy/airthroughput/ui/AirThroughputInterface.java
r1207 r1380 16 16 public boolean supportAirThroughputState(AirThroughputStateName powerState); 17 17 18 public List<AirThroughputState> getSupportedAirThroughputStates() throws NoSuchFieldException;18 public List<AirThroughputState> getSupportedAirThroughputStates(); 19 19 20 20 public double getAirFlow(AirThroughputStateName state) throws NoSuchFieldException; -
DCWoRMS/branches/coolemall/src/schedframe/resources/computing/profiles/energy/airthroughput/ui/ComputingResourceAirThroughputInterface.java
r1207 r1380 53 53 } 54 54 55 public List<AirThroughputState> getSupportedAirThroughputStates() throws NoSuchFieldException{55 public List<AirThroughputState> getSupportedAirThroughputStates() { 56 56 List<AirThroughputState> airThroughputStates = new ArrayList<AirThroughputState>(); 57 57 for(AirThroughputState airFlowState: airThroughputProfile.getAirThroughputStates()){ -
DCWoRMS/branches/coolemall/src/schedframe/resources/computing/profiles/energy/power/ui/PowerInterface.java
r477 r1380 16 16 public boolean supportPowerState(PowerStateName powerState); 17 17 18 public List<PowerState> getSupportedPowerStates() throws NoSuchFieldException;18 public List<PowerState> getSupportedPowerStates(); 19 19 20 20 public double getPowerConsumption(PowerStateName state) throws NoSuchFieldException;
Note: See TracChangeset
for help on using the changeset viewer.