package ld5_2.ontology;



/**
* Protege name: CarData
* @author ontology bean generator
* @version 2026/04/16, 00:12:37
*/
public interface CarDataIf extends jade.content.Concept {

   /**
   * Protege name: Engine
   */
   public void setEngine(String value);
   public String getEngine();

   /**
   * Protege name: Model
   */
   public void setModel(CarModel value);
   public CarModel getModel();

   /**
   * Protege name: VIN
   */
   public void setVIN(int value);
   public int getVIN();

   /**
   * Protege name: YearBuilt
   */
   public void setYearBuilt(int value);
   public int getYearBuilt();

   /**
   * Protege name: Color
   */
   public void setColor(String value);
   public String getColor();

   /**
   * Protege name: carPrice
   */
   public void setCarPrice(int value);
   public int getCarPrice();

   /**
   * Protege name: Owner
   */
   public void setOwner(Zmogus value);
   public Zmogus getOwner();

}
