aswi2021mr-proper-gitlab/application/model/Word.php @ b9ed6a80
1 |
<?php
|
---|---|
2 |
class Word { |
3 |
public $id; |
4 |
public $context; |
5 |
public $date; |
6 |
public $description; |
7 |
public $description2; |
8 |
public $description3; |
9 |
public $ending; |
10 |
public $finished; |
11 |
public $namedentity; |
12 |
public $position1; |
13 |
public $position2; |
14 |
public $positiondetail; |
15 |
public $word; |
16 |
public $lemma; |
17 |
public $tag; |
18 |
|
19 |
function __construct($id, $context, $date, $description, $description2, $description3, $ending, $finished, $namedentity, $position1, $position2, $positiondetail, $word, $lemma, $tag) |
20 |
{
|
21 |
$this->id = $id; |
22 |
$this->context = $context; |
23 |
$this->date = $date; |
24 |
$this->description = $description; |
25 |
$this->description2 = $description2; |
26 |
$this->description3 = $description3; |
27 |
$this->ending = $ending; |
28 |
$this->finished = $finished; |
29 |
$this->namedentity = $namedentity; |
30 |
$this->position1 = $position1; |
31 |
$this->position2 = $position2; |
32 |
$this->positiondetail = $positiondetail; |
33 |
$this->word = $word; |
34 |
$this->lemma = $lemma; |
35 |
$this->tag = $tag; |
36 |
}
|
37 |
}
|
- « Předchozí
- 1
- 2
- 3
- 4
- Další »