commit 7adae6c268c298c45a7f08b566342763132c22bf Author: La Programmatrice Verde Date: Thu Sep 25 11:00:13 2025 +0200 Aggiunti dati base Auto diff --git a/src/eserciziogarage/Auto.java b/src/eserciziogarage/Auto.java new file mode 100644 index 0000000..a2856a3 --- /dev/null +++ b/src/eserciziogarage/Auto.java @@ -0,0 +1,24 @@ +/* + * Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license + * Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template + */ +package eserciziogarage; + +/** + * + * @author Verde + */ +public class Auto { + String targa; + public Auto(String p_targa){ + this.targa = p_targa; + } + + public String GetTarga(){ + return this.targa; + } + + public void SetTarga(String p_targa){ + this.targa = p_targa; + } +}