Package com.mmoscene.h4j.habbohotel.messenger

Examples of com.mmoscene.h4j.habbohotel.messenger.Friend


            H4J.getLogger(Messenger.class.getName()).error(ex.getMessage());
        }
    }

    public Friend generateFriend(ResultSet set) {
        Friend friend = new Friend();

        try {
            friend.setId(set.getInt("id"));
            friend.setUsername(set.getString("username"));
            friend.setLook(set.getString("look"));
            friend.setMotto(set.getString("motto"));
        } catch(Exception ex) {
            H4J.getLogger(Messenger.class.getName()).error(ex.getMessage());
        }

        return friend;
View Full Code Here

TOP

Related Classes of com.mmoscene.h4j.habbohotel.messenger.Friend

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.