"depot M213"
This commit is contained in:
32
TDUML/journey/Trajet.java
Executable file
32
TDUML/journey/Trajet.java
Executable file
@ -0,0 +1,32 @@
|
||||
package journey;
|
||||
|
||||
public class Trajet {
|
||||
private String nom;
|
||||
private Integer nombrePoints;
|
||||
private int tabDistance[];
|
||||
|
||||
public int getTabDistance[]() {
|
||||
|
||||
return this.tabDistance[];
|
||||
}
|
||||
|
||||
public void setTabDistance[](final int value) {
|
||||
this.tabDistance[] = value;
|
||||
}
|
||||
|
||||
public String getNom() {
|
||||
return this.nom;
|
||||
}
|
||||
|
||||
public void setNom(final String value) {
|
||||
this.nom = value;
|
||||
}
|
||||
|
||||
public Integer getNombrePoints() {
|
||||
return this.nombrePoints;
|
||||
}
|
||||
|
||||
public void sommeDistance() {
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user