Examples of ItemStatDetail


Examples of org.encuestame.utils.web.stats.ItemStatDetail

     * @param survey
     * @return
     */
    public static final ItemStatDetail convertSurveyToItemDetailBean(
            final Survey survey) {
        final ItemStatDetail itemDetail = new ItemStatDetail();
        itemDetail.setItemId(survey.getSid());
        itemDetail.setDate(survey.getCreateDate());
        return itemDetail;
    }
View Full Code Here

Examples of org.encuestame.utils.web.stats.ItemStatDetail

     *
     * @param hit
     * @return
     */
    public static final ItemStatDetail convertHitsToItemDetailBean(final Hit hit) {
        final ItemStatDetail itemDetail = new ItemStatDetail();
        itemDetail.setItemId(1L); //by default one hit is one vote
        itemDetail.setDate(hit.getHitDate());
        return itemDetail;
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.