1 package net.sf.cantina; 2 3 import java.util.Locale; 4 5 /*** 6 * @author Stephane JAIS 7 */ 8 public interface DocumentSearchResult 9 { 10 public String getDocumentId(); 11 public Locale getLocale(); 12 public float getScore(); 13 }