Show / Hide Table of Contents

Class BugMatcherBase

Represents the base class for a duplicate checking bug matcher.

Inheritance
object
BugMatcherBase
SimpleRatioBugMatcher
WeightedRatioBugMatcher
Implements
IBugMatcher
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Phoenix.Aruba
Assembly: Phoenix.Plugin.Aruba.dll
Syntax
public abstract class BugMatcherBase : IBugMatcher

Properties

View Source

MatchingFunction

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 Source

CalculateAndStoreConfidence(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.

Implements

IBugMatcher
  • View Source
In this article
Back to top Generated by DocFX