forked from francklinSIMO/TP_M2_2014
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- 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.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} | ||
|
||
|
||
|
||
} |