// (c) Tuomas J. Lukka package gzz.index; /** A searchable index. * This is an interface which is used to represent indices, * for example * */ public interface Index { Set getMatches(Object o); }