Package org.apache.roller.pojos

Examples of org.apache.roller.pojos.StatCount


                Object[] row = (Object[])it.next();
                Integer hits = (Integer)row[0];
                String websiteId = (String)row[1];
                String websiteName = (String)row[2];
                String websiteHandle = (String)row[3];
                result.add(new StatCount(
                    websiteId,
                    websiteHandle,
                    websiteName,
                    "statCount.weblogDayHits",
                    hits.longValue()));             
View Full Code Here

TOP

Related Classes of org.apache.roller.pojos.StatCount

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.