You are here

class WordCount in GlobalLink Connect for Drupal 7.7

Hierarchy

Expanded class hierarchy of WordCount

File

gl_ws/glc/model/WordCount.inc.php, line 2

View source
class WordCount {
  public $golden;

  // int
  public $exact_100;

  // int
  public $fuzzy;

  // int
  public $repetitions;

  // int
  public $nomatch;

  // int
  public $total;

  // int
  function __construct($_golden, $_exact_100, $_repetitions, $_nomatch, $_total) {
    $this->golden = $_golden;
    $this->exact_100 = $_exact_100;
    $this->fuzzy = $_total - $_golden - $_exact_100 - $_repetitions - $_nomatch;
    $this->repetitions = $_repetitions;
    $this->nomatch = $_nomatch;
    $this->total = $_total;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
WordCount::$exact_100 public property
WordCount::$fuzzy public property
WordCount::$golden public property
WordCount::$nomatch public property
WordCount::$repetitions public property
WordCount::$total public property
WordCount::__construct function