Package wblog.domain

Examples of wblog.domain.User


                        while (rs.next()) {
                            Comment comment = new Comment();
                            comment.id = rs.getLong("Comment.id");
                            comment.content = rs.getString("content");
                            comment.postDate = rs.getTimestamp("postDate");
                            comment.author = new User();
                            comment.author.id = rs.getString("User.id");
                            comment.author.name = rs.getString("User.name");
                            comment.author.tags = rs.getString("User.tags");
                            list.add(comment);
                        }
View Full Code Here


                            article.content = rs.getString("content");
                            article.postDate = rs.getTimestamp("postDate");
                            article.tags = rs.getString("tags");
                            article.view = rs.getInt("view");
                            article.commentCount = rs.getInt("commentCount");
                            article.author = new User();
                            article.author.id = rs.getString("User.id");
                            article.author.name = rs.getString("User.name");
                            article.author.tags = rs.getString("User.tags");
                            list.add(article);
                        }
View Full Code Here

TOP

Related Classes of wblog.domain.User

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.