1 26 27 29 package de.nava.informa.search; 30 31 import de.nava.informa.core.ItemIF; 32 33 38 public class ItemResult { 39 40 private ItemIF item; 41 private float score; 42 43 public ItemResult(ItemIF item, float score) { 44 this.item = item; 45 this.score = score; 46 } 47 48 public ItemIF getItem() { 49 return item; 50 } 51 52 public float getScore() { 53 return score; 54 } 55 56 } 57 | Popular Tags |