Changeset 198


Ignore:
Timestamp:
03/26/12 12:31:02 (13 years ago)
Author:
wojtekp
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • xssim/trunk/src/test/rewolucja/resources/physical/factory/ResourceFactory.java

    r122 r198  
    33import test.rewolucja.resources.description.ExecResourceDescription; 
    44import test.rewolucja.resources.physical.base.ComputingResource; 
    5 import test.rewolucja.resources.physical.implementation.CPU; 
     5import test.rewolucja.resources.physical.implementation.Processor; 
    66import test.rewolucja.resources.physical.implementation.DataCenter; 
    77import test.rewolucja.resources.physical.implementation.Grid; 
     
    1515                        case DATA_CENTER: return new DataCenter(resDesc); 
    1616                        case COMPUTING_NODE: return ComputingNodeFactory.createComputingNode(resDesc); 
    17                         case CPU: return new CPU(resDesc); 
     17                        case CPU: return new Processor(resDesc); 
    1818                default: 
    1919                        return new ComputingResource(resDesc); 
Note: See TracChangeset for help on using the changeset viewer.