public class TypeLicence { ////////////////////////////////////////////////// /* Type agrege de stockage des informations */ /* relatives a un licencie sportif */ static class Licence { String nom = ""; String prenom = ""; int numeroLicence = 0; String club = ""; char categorieAge = ' '; boolean sexe = true; }; ////////////////////////////////////////////////// }