- Timestamp:
- 10/10/12 12:12:06 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
DCWoRMS/trunk/src/schedframe/resources/computing/Core.java
r477 r495 3 3 import schedframe.resources.computing.description.ComputingResourceDescription; 4 4 import schedframe.resources.computing.profiles.energy.EnergyExtension; 5 import schedframe.resources.computing.profiles.energy.power.Power ProfileFactory;5 import schedframe.resources.computing.profiles.energy.power.PowerInterfaceFactory; 6 6 import schedframe.resources.computing.profiles.energy.power.ui.PowerInterface; 7 7 import schedframe.resources.units.CpuSpeed; … … 13 13 public Core (ComputingResourceDescription resDesc) { 14 14 super(resDesc); 15 PowerInterface pi = Power ProfileFactory.createPowerInterface(this, resDesc.getPowerProfile());15 PowerInterface pi = PowerInterfaceFactory.createPowerInterface(this, resDesc.getPowerProfile()); 16 16 accept(new EnergyExtension(pi, resDesc.getPowerProfile())); 17 17 }
Note: See TracChangeset
for help on using the changeset viewer.