Class CoverageRange


  • public class CoverageRange
    extends java.lang.Object
    Coverage data for a source range.
    • Constructor Summary

      Constructors 
      Constructor Description
      CoverageRange​(java.lang.Integer startOffset, java.lang.Integer endOffset, java.lang.Integer count)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.Integer getCount()
      Collected execution count of the source range.
      java.lang.Integer getEndOffset()
      JavaScript script source offset for the range end.
      java.lang.Integer getStartOffset()
      JavaScript script source offset for the range start.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • CoverageRange

        public CoverageRange​(java.lang.Integer startOffset,
                             java.lang.Integer endOffset,
                             java.lang.Integer count)
    • Method Detail

      • getStartOffset

        public java.lang.Integer getStartOffset()
        JavaScript script source offset for the range start.
      • getEndOffset

        public java.lang.Integer getEndOffset()
        JavaScript script source offset for the range end.
      • getCount

        public java.lang.Integer getCount()
        Collected execution count of the source range.