Package com.stepan.domain

Examples of com.stepan.domain.Message


        public void actionPerformed(ActionEvent e){
            Object source = e.getSource();
            if (source == textF || source == send){     // add data to messages
                if(textF.getText().trim().length() > 0){
                    messages.add(
                            new Message(textF.getText(), getCurrentUserName()));
                    textF.setText("");
                    showMessages();
                }
            }       
            if (source == quit || source == mi2){       // quit
View Full Code Here

TOP

Related Classes of com.stepan.domain.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.