Class BugMatcherBase
Represents the base class for a duplicate checking bug matcher.
Implements
Inherited Members
Namespace: Phoenix.Aruba
Assembly: Phoenix.Plugin.Aruba.dll
Syntax
public abstract class BugMatcherBase : IBugMatcher
Properties
View SourceMatchingFunction
Gets the scoring function that should be used to perform string matching.
Declaration
protected abstract BugMatcherBase.ScoringFunction MatchingFunction { get; }
Property Value
Type | Description |
---|---|
BugMatcherBase.ScoringFunction |
Methods
View SourceCalculateAndStoreConfidence(DupeCheckBugInfo, Dictionary<string, string>)
Calculates how close of a match the bug
is to the one being filed. This function will change the confidence match property of bug
.
Declaration
public void CalculateAndStoreConfidence(DupeCheckBugInfo bug, Dictionary<string, string> fieldValues)
Parameters
Type | Name | Description |
---|---|---|
DupeCheckBugInfo | bug | The bug to match against the one being filed. |
Dictionary<string, string> | fieldValues | The current values of the fields of the bug being filed. |