Created
July 28, 2012 12:09
-
-
Save donatasnicequestion/3193048 to your computer and use it in GitHub Desktop.
Simple Chat listener model for the ADF active Chat sample * described in a blog @see http://donatas.nicequestion.com
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.nicequestion.donatas.chat.model; | |
import java.beans.PropertyChangeListener; | |
public interface ChatListener extends PropertyChangeListener { | |
public void setUsername(String username); | |
public String getUsername(); | |
public boolean isAlive(); | |
public void setAlive(boolean alive); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment