Delete Territorio.java
Bi-Rabittoh andronacomarco@gmail.com
Thu, 04 Apr 2019 12:56:24 +0200
D
siciliaguerrabot2020/Territorio.java
@@ -1,40 +0,0 @@
-/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ -package siciliaguerrabot2020; - -/** - * - * @author Bi-Rabittoh - */ -public class Territorio { - private final String nome; - private Comune proprietario; - private final Centroide pos; - - public Territorio(String nome, Comune proprietario, Centroide pos) { - this.nome = nome; - this.proprietario = proprietario; - this.pos = pos; - } - - public Comune getProprietario() { - return proprietario; - } - - public void setProprietario(Comune proprietario) { - this.proprietario = proprietario; - } - - public Centroide getPos() { - return pos; - } - - public String getNome() { - return nome; - } - - -}