This commit is contained in:
François
2022-01-26 19:21:00 +01:00
parent 1ef30c2b17
commit 766904b714
576 changed files with 16833 additions and 1 deletions

View File

@ -0,0 +1,17 @@
package network.chat;
import java.util.Date;
/**
Modificaion de modèle qui peuvent être observé.
*/
public interface ChatObserver {
// ========================================
public void talk (ChatQuote quote);
public void renameSpeaker (String speaker);
public void chatModifiedChange (boolean modified);
public void clearChat ();
// ========================================
}