Package net.sourceforge.pmd.stat
Class DataPoint
- java.lang.Object
-
- net.sourceforge.pmd.stat.DataPoint
-
- All Implemented Interfaces:
java.lang.Comparable<DataPoint>
@Deprecated public class DataPoint extends java.lang.Object implements java.lang.Comparable<DataPoint>
Deprecated.seeStatisticalRuleDatapoint used for rules that deal with metrics.- Since:
- Aug 8, 2002
- Author:
- David Dixon-Peugh
-
-
Constructor Summary
Constructors Constructor Description DataPoint()Deprecated.Constructor for DataPoint.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description intcompareTo(DataPoint rhs)Deprecated.Compares this data point with the given datapoint.java.lang.StringgetMessage()Deprecated.NodegetNode()Deprecated.doublegetScore()Deprecated.voidsetMessage(java.lang.String message)Deprecated.voidsetNode(Node node)Deprecated.voidsetScore(double score)Deprecated.
-
-
-
Method Detail
-
compareTo
public int compareTo(DataPoint rhs)
Deprecated.Compares this data point with the given datapoint.- Specified by:
compareToin interfacejava.lang.Comparable<DataPoint>- Parameters:
rhs- the other data point- Returns:
- 0 if equal; a value less than 0 if this point's score is smaller than the other data point; a value greater than 0 if this point's score is greater than the other data point.
-
getNode
public Node getNode()
Deprecated.
-
setNode
public void setNode(Node node)
Deprecated.
-
getMessage
public java.lang.String getMessage()
Deprecated.
-
setMessage
public void setMessage(java.lang.String message)
Deprecated.
-
getScore
public double getScore()
Deprecated.
-
setScore
public void setScore(double score)
Deprecated.
-
-