Package chat

Examples of chat.ChatForm


  public ChatTab()
  {
    super();
    setLayout(new BorderLayout());

    form = new ChatForm(this, new FeedListener(), "Global channel");
    new MessageSender();
  }
View Full Code Here


  {
    super();
    setLayout(new BorderLayout());

    this.session = session;
    form = new ChatForm(this, new FeedListener(), session.getNickname());
  }
View Full Code Here

TOP

Related Classes of chat.ChatForm

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.