Package ua.vydai.chat.server.view.interfaces

Examples of ua.vydai.chat.server.view.interfaces.ServerViewFactory


    public SimpleAwtServerView(ServerModel model) {
        super(model);
    }
   
    public static ServerViewFactory getFactory() {
        return new ServerViewFactory() {
            public ServerView createView(ServerModel model) {
                return new SimpleAwtServerView(model);
            }
        };
    }
View Full Code Here

TOP

Related Classes of ua.vydai.chat.server.view.interfaces.ServerViewFactory

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.