FreeCBR
Class CBRResult

java.lang.Object
  extended by FreeCBR.CBRResult

public class CBRResult
extends java.lang.Object

This class contains results from CBR queries

Since:
1.0
Author:
Lars Johanson

Field Summary
 int caseNum
          Case number
 double matchPercent
          Percent match
 
Constructor Summary
CBRResult(int caseNum, double matchPercent)
          Creates a Result and initiates it
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

caseNum

public final int caseNum
Case number

Since:
1.0

matchPercent

public final double matchPercent
Percent match

Since:
1.0
Constructor Detail

CBRResult

public CBRResult(int caseNum,
                 double matchPercent)
Creates a Result and initiates it

Parameters:
caseNum - the case number to set
matchPercent - the percentage to set
Since:
1.0


Public Domain