/* * 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; } }