Package org.encuestame.utils.web.stats

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


     *
     * @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

Related Classes of org.encuestame.utils.web.stats.ItemStatDetail

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.