Init
This commit is contained in:
17
src/java/network/chat/ChatObserver.java
Normal file
17
src/java/network/chat/ChatObserver.java
Normal 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 ();
|
||||
|
||||
// ========================================
|
||||
}
|
Reference in New Issue
Block a user