Skip to content
Snippets Groups Projects
Commit 5698494c authored by Remi Poupard-Ramaut's avatar Remi Poupard-Ramaut
Browse files

doc + package + gitignoregit

parent 5b8d7e69
No related branches found
No related tags found
No related merge requests found
# Compiled class file
*.class
# Log file
*.log
# BlueJ files
*.ctxt
# Mobile Tools for Java (J2ME)
.mtj.tmp/
# Package Files #
*.jar
*.war
*.nar
*.ear
*.zip
*.tar.gz
*.rar
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*
replay_pid*
#la doc
doc/
.idea/
\ No newline at end of file
package devoo.tp07;
package fr.univlille.phonebook;
import java.util.InputMismatchException;
import java.util.Scanner;
......
package devoo.tp07;
package fr.univlille.phonebook;
import java.util.HashMap;
import java.util.Iterator;
......
package devoo.tp07;
package fr.univlille.phonebook;
/**
* @author Antoine Nongaillard, Fabien Delecroix
......
package devoo.tp07;
package fr.univlille.phonebook;
public class ULillePhoneNumber extends PhoneNumber{
public static final String U_LILLE_PREFIX = "3596";
public ULillePhoneNumber(String fiveDigits) {
super(PhoneNumber.FRANCE_CODE,
super(FRANCE_CODE,
Integer.valueOf(U_LILLE_PREFIX.substring(0, 1)),
Integer.valueOf(U_LILLE_PREFIX.substring(1, 3)),
Integer.valueOf(U_LILLE_PREFIX.substring(3, 4)+fiveDigits.substring(0, 1)),
......
package devoo.tp07;
package fr.univlille.phonebook;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.BeforeEach;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment