- Timestamp:
- 10/10/12 12:12:06 (13 years ago)
- Location:
- DCWoRMS/trunk/src/schedframe/resources/computing/profiles/energy/power/ui
- Files:
-
- 3 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
DCWoRMS/trunk/src/schedframe/resources/computing/profiles/energy/power/ui/ComputingNodePowerInterface.java
r477 r495 10 10 import schedframe.resources.computing.profiles.energy.power.StandardPowerStateName; 11 11 12 public class ComputingNodePowerInterface extends AbstractPowerInterface{12 public class ComputingNodePowerInterface extends ComputingResourcePowerInterface{ 13 13 14 14 public static long START_TIME = 600000; -
DCWoRMS/trunk/src/schedframe/resources/computing/profiles/energy/power/ui/ComputingResourcePowerInterface.java
r477 r495 17 17 import schedframe.resources.computing.profiles.energy.power.StandardPowerStateName; 18 18 19 public abstract class AbstractPowerInterface implements PowerInterface{19 public class ComputingResourcePowerInterface implements PowerInterface{ 20 20 21 21 protected PowerStateName currentPowerState; … … 23 23 protected ComputingResource resource; 24 24 25 public AbstractPowerInterface(ComputingResource resource, PowerProfile powerProfile){25 public ComputingResourcePowerInterface(ComputingResource resource, PowerProfile powerProfile){ 26 26 this.resource = resource; 27 27 this.powerProfile = powerProfile; -
DCWoRMS/trunk/src/schedframe/resources/computing/profiles/energy/power/ui/DataCenterPowerInterface.java
r477 r495 7 7 import schedframe.resources.computing.profiles.energy.power.StandardPowerStateName; 8 8 9 public class DataCenterPowerInterface extends AbstractPowerInterface{9 public class DataCenterPowerInterface extends ComputingResourcePowerInterface{ 10 10 11 12 13 14 11 public DataCenterPowerInterface(ComputingResource resource, PowerProfile pp){ 15 12 super(resource, pp); -
DCWoRMS/trunk/src/schedframe/resources/computing/profiles/energy/power/ui/ProcessorPowerInterface.java
r494 r495 1 1 package schedframe.resources.computing.profiles.energy.power.ui; 2 2 3 import gridsim.dcworms.DCWormsTags;4 3 5 4 import java.util.Map; … … 16 15 import schedframe.resources.units.StandardResourceUnitName; 17 16 18 public class ProcessorPowerInterface extends AbstractPowerInterface {17 public class ProcessorPowerInterface extends ComputingResourcePowerInterface { 19 18 20 19 protected PState currentPState;
Note: See TracChangeset
for help on using the changeset viewer.