package factoryMethod.amd; import factoryMethod.Processor; public class AMDSempron extends Processor { int L2Cache = 512; public AMDSempron(int freq, int bus, int num, int l2) { super(freq, bus); L2Cache = l2; } public int getL2Cache() { return L2Cache; } }