Package org.compass.core

Examples of org.compass.core.CompassHit.data()


    {
        int count = Math.min(500, hits.length());
        List results = new ArrayList(count);
        for (int i=0; i < count; i++) {
            CompassHit hit = hits.hit(i);
            Object thinObj = hit.data();
            // ToDo:  PERFORMANCE!  This should be done in a batch fetch
            Object pk = context.getPrimaryKey(thinObj);
            Object fullObj = context.find(thinObj.getClass(), pk);
            results.add(fullObj);
        }
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.