package com.factory; /** * Created by sdmg15 on 18/03/17. */ public class PC extends Computer { private int ram; private double cpu; private int hdd; public PC(int ram,int hdd, double cpu){ this.ram = ram; this.hdd= hdd; this.cpu = cpu; } public String getRam(){ return this.ram; } public String getCpu(){ return this.cpu; } public String getHdd(){ return this.hdd; } }