Skip to content

Commit

Permalink
Add Class Marin
Browse files Browse the repository at this point in the history
  • Loading branch information
11214775 authored and 11214775 committed Feb 10, 2014
1 parent c8eab7f commit 167e11a
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions src/org/simo/Modeles/Marin.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
package org.simo.Modeles;

public class Marin {

private String nom;
private String prenom;
private int age;
private int salaire;
public String getNom() {
return nom;
}
public void setNom(String nom) {
this.nom = nom;
}
public String getPrenom() {
return prenom;
}
public void setPrenom(String prenom) {
this.prenom = prenom;
}
public int getAge() {
return age;
}
public void setAge(int age) {
this.age = age;
}
public int getSalaire() {
return salaire;
}
public void setSalaire(int salaire) {
this.salaire = salaire;
}



}

0 comments on commit 167e11a

Please sign in to comment.