siciliaguerrabot2020/Calendario/Mese.java (view raw)
1/*
2 * To change this license header, choose License Headers in Project Properties.
3 * To change this template file, choose Tools | Templates
4 * and open the template in the editor.
5 */
6package siciliaguerrabot2020.Calendario;
7
8/**
9 *
10 * @author Marco
11 */
12class Mese {
13 private final String nome_mese;
14 private final int n_giorni;
15
16 public Mese(String nome, int n_giorni) {
17 this.nome_mese = nome;
18 this.n_giorni = n_giorni;
19 }
20
21 public String getNome_mese() {
22 return nome_mese;
23 }
24
25 public int getN_giorni() {
26 return n_giorni;
27 }
28
29
30}