public Object clone() {
   Computer object = new Computer();
   object.description = this.description;
   object.serNum = this.serNum;
   return object;
 }