Skip to content
Snippets Groups Projects
Commit 8d4043c6 authored by marruiz's avatar marruiz :space_invader:
Browse files

ghña

parent a5420521
Branches
No related tags found
No related merge requests found
/*
* 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 saii.dominio;
/**
*
* @author Agapormis
*/
public class ReligionData {
private int year;
private String country;
private String religionName;
private double religionNamePer;
private double numberPeople;
public ReligionData(){
year = 0;
country = "";
religionName = "";
religionNamePer = 0.0;
numberPeople = 0;
}
public int getYear() {
return year;
}
public void setYear(int year) {
this.year = year;
}
public String getCountry() {
return country;
}
public void setCountry(String country) {
this.country = country;
}
public String getReligionName() {
return religionName;
}
public void setReligionName(String religionName) {
this.religionName = religionName;
}
public double getReligionNamePer() {
return religionNamePer;
}
public void setReligionNamePer(double religionNamePer) {
this.religionNamePer = religionNamePer;
}
public double getNumberPeople() {
return numberPeople;
}
public void setNumberPeople(double numberPeople) {
this.numberPeople = numberPeople;
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment