Skip to content

Instantly share code, notes, and snippets.

@donatasnicequestion
Created July 28, 2012 12:09
Show Gist options
  • Save donatasnicequestion/3193048 to your computer and use it in GitHub Desktop.
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
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