Skip to content

Instantly share code, notes, and snippets.

@NicolasHov
Last active December 30, 2016 16:57
Show Gist options
  • Save NicolasHov/9ff2e98b4ceb622c1a6f26990d10c7f4 to your computer and use it in GitHub Desktop.
Save NicolasHov/9ff2e98b4ceb622c1a6f26990d10c7f4 to your computer and use it in GitHub Desktop.
Fichier presentation UML
public class MaClasse{
public int y;
private int x;
protected int z;
public static void MaMethodePublique(){
//...
}
private static void MaMethodePrivee(){
//...
}
protected static void MaMethodeProtegee(){
//...
}
}
class Personnage{
private String nom;
private int taille;
}
class Heros extends Personnage{
private String pouvoir;
public void superPouvoir(){
//...
}
}
class Sujet{
//....
}
class Message{
//....
}
class Destinataires{
//....
}
class Email{
private
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment