| 1234567891011121314151617181920212223242526272829303132333435 |
- /*
- * $Id$
- */
- package org.sphx.api;
- import java.util.*;
- /**
- * Matched document information, as in search result.
- */
- public class SphinxMatch
- {
- /** Matched document ID. */
- public long docId;
- /** Matched document weight. */
- public int weight;
- /** Matched document attribute values. */
- public ArrayList attrValues;
- /** Trivial constructor. */
- public SphinxMatch ( long docId, int weight )
- {
- this.docId = docId;
- this.weight = weight;
- this.attrValues = new ArrayList();
- }
- }
- /*
- * $Id$
- */
|