"depot M315"

This commit is contained in:
JunkJumper
2020-05-01 22:28:41 +02:00
parent 91f5bce946
commit 16368c9c8b
125 changed files with 4506 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
package designPattern.grapheX;
/**
* Classe de sommets, toutes les propri<72>t<EFBFBD>s sont h<>rit<69>es de Identifiable.
*
* @author FMorain (morain@lix.polytechnique.fr)
* @author PChassignet (chassign@lix.polytechnique.fr)
* @version 2007.03.21
*/
public class Sommet extends Identifiable {
public Sommet(String nn) {
super(nn);
}
@Override
public String toString() {
return identifiant();
}
}