[Javamatch-cvs] javamatch/src/net/sourceforge/javamatch/engine MatchResult.java,1.2,1.3
Status: Pre-Alpha
Brought to you by:
iterson
From: Walter v. I. <it...@us...> - 2004-09-09 14:19:10
|
Update of /cvsroot/javamatch/javamatch/src/net/sourceforge/javamatch/engine In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24523/engine Modified Files: MatchResult.java Log Message: Added NotQuery, fix javadoc Index: MatchResult.java =================================================================== RCS file: /cvsroot/javamatch/javamatch/src/net/sourceforge/javamatch/engine/MatchResult.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** MatchResult.java 7 Sep 2004 09:41:06 -0000 1.2 --- MatchResult.java 9 Sep 2004 14:18:58 -0000 1.3 *************** *** 49,55 **** * If this MatchResult is full (filled with maxNumResultItems ResultItems), * and the matchValue is lower than the lowest stored matchValue, the ! * MatchResult will not be added. When the number of ResultItems grows over ! * maxNumResultItems, the last item will be removed ! * @param resultItem the result item to be added */ public void addResultItem(Object matchedObject, float matchValue) { --- 49,56 ---- * If this MatchResult is full (filled with maxNumResultItems ResultItems), * and the matchValue is lower than the lowest stored matchValue, the ! * matched object will not be added. When the number of ResultItems grows ! * over maxNumResultItems, the last item will be removed ! * @param matchedObject the object item to be added ! * @param matchValue indicates how good the object matches */ public void addResultItem(Object matchedObject, float matchValue) { |