Skip to content
Snippets Groups Projects
Commit aa2ee6b1 authored by albruiz's avatar albruiz
Browse files

cosas

parent 947a5c5b
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;
/**
* Mediador que contiene la informacion general sobre los conflictos belicos
* @author Alberto
*/
public class GeneralData {
private String warName;
private String warType;
private int startYear1;
private int startYear2;
private int endYear1;
private int endYear2;
private int duration;
private double deadTot;
private double targettedTot;
private double deadPer;
public GeneralData(){
warName = "";
warType = "";
startYear1 = 0;
startYear2 = 0;
endYear1 = 0;
endYear2 = 0;
duration = 0;
deadTot = 0.0;
targettedTot = 0.0;
deadPer = 0.0;
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment