Package Control

Examples of Control.Message


    if(!contacts.contains(contact)){
     
      /*
       * Testdaten f�r das incoming pane und das outgoing
       */
        Message message1 = new Message("Hi, das ist ein Test, um das incoming pane " +
            "mal darzustellen", true, new Contact(
            "333", ChatProvider.ICQ, Status.Invisible, "Felix", "felix"),
            new Date(new Date().getTime() - 1300));
        Message message2 = new Message("Das ist aber ein toller Test", false, new Contact(
            "333", ChatProvider.ICQ, Status.Invisible, "Julia", "felix"),
            new Date(new Date().getTime() - 800));
        Message message3 = new Message("Vor allem weil bei einem abstand von kleiner einer minute " +
            "mein text noch hinter dem anderen angezeigt wird, ohne den Header", false, new Contact(
            "333", ChatProvider.ICQ, Status.Invisible, "Julia", "felix"),
            new Date());
       
        ArrayList<Message> messages = new ArrayList<Message>();
View Full Code Here

TOP

Related Classes of Control.Message

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.