class WordCount in GlobalLink Connect for Drupal 7.7
Hierarchy
- class \WordCount
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
| Name   | Modifiers | Type | Description | Overrides | 
|---|---|---|---|---|
| WordCount:: | public | property | ||
| WordCount:: | public | property | ||
| WordCount:: | public | property | ||
| WordCount:: | public | property | ||
| WordCount:: | public | property | ||
| WordCount:: | public | property | ||
| WordCount:: | function | 
