KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > contineo > core > text > lili > Weighter


1 /*
2  * Created on 30.10.2004
3  */

4 package org.contineo.core.text.lili;
5
6 /**
7  * @author Michael Scholz
8  * @version 1.0
9  */

10 public interface Weighter {
11     
12     /**
13      * Weights a given trigram.
14      * @param trigram
15      * @return
16      */

17     public int getWeight(String JavaDoc trigram);
18 }
19
Popular Tags