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

Upload New File

parent 8d4043c6
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 RelationGeneralData1 {
private int warType;
private String type_of_conflict;
public RelationGeneralData1(){
warType = 0;
type_of_conflict = "";
}
public int getWarType() {
return warType;
}
public void setWarType(int warType) {
this.warType = warType;
}
public String getType_of_conflict() {
return type_of_conflict;
}
public void setType_of_conflict(String type_of_conflict) {
this.type_of_conflict = type_of_conflict;
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment