package ld5_2.ontology;


import ld5_2.ontology.*;

/**
* Protege name: CarData
* @author ontology bean generator
* @version 2026/04/16, 00:12:37
*/
public class CarData implements CarDataIf {

  private static final long serialVersionUID = -5895757859747330689L;

  private String _internalInstanceName = null;

  public CarData() {
    this._internalInstanceName = "";
  }

  public CarData(String instance_name) {
    this._internalInstanceName = instance_name;
  }

  public String toString() {
    return _internalInstanceName;
  }

   /**
   * Protege name: Engine
   */
   private String engine;
   public void setEngine(String value) { 
    this.engine=value;
   }
   public String getEngine() {
     return this.engine;
   }

   /**
   * Protege name: Model
   */
   private CarModel model;
   public void setModel(CarModel value) { 
    this.model=value;
   }
   public CarModel getModel() {
     return this.model;
   }

   /**
   * Protege name: VIN
   */
   private int viN;
   public void setVIN(int value) { 
    this.viN=value;
   }
   public int getVIN() {
     return this.viN;
   }

   /**
   * Protege name: YearBuilt
   */
   private int yearBuilt;
   public void setYearBuilt(int value) { 
    this.yearBuilt=value;
   }
   public int getYearBuilt() {
     return this.yearBuilt;
   }

   /**
   * Protege name: Color
   */
   private String color;
   public void setColor(String value) { 
    this.color=value;
   }
   public String getColor() {
     return this.color;
   }

   /**
   * Protege name: carPrice
   */
   private int carPrice;
   public void setCarPrice(int value) { 
    this.carPrice=value;
   }
   public int getCarPrice() {
     return this.carPrice;
   }

   /**
   * Protege name: Owner
   */
   private Zmogus owner;
   public void setOwner(Zmogus value) { 
    this.owner=value;
   }
   public Zmogus getOwner() {
     return this.owner;
   }

}
