-
Notifications
You must be signed in to change notification settings - Fork 0
/
Sentence.php
executable file
·140 lines (115 loc) · 2.55 KB
/
Sentence.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
<?php
/**
* Created by PhpStorm.
* User: kirya
* Date: 24.10.16
* Time: 15:01
*/
class Sentence
{
const COMMON = 'common';
const DELETED = 'delete';
const EDITED = 'edit';
const ADDED = 'add';
private $originIndex;
private $type;
private $text;
private $diffIndex;
private $originText;
private $endSign = '.';
public static function createCompared(Sentence $sentence, $originIndex, $diffIndex, $type, Sentence $originText = null)
{
$endSign = $sentence->getEndSign();
if (isset($originText) and !isset($endSign)) {
$endSign = $originText->getEndSign();
}
$item = new self($sentence->getText(), $endSign);
$item->setType($type);
$item->setOriginIndex($originIndex);
$item->setDiffIndex($diffIndex);
$item->setOriginText(isset($originText) ? $originText->getText() . $endSign : '');
return $item;
}
public function __construct($text, $endSign)
{
$this->text = $text;
$this->endSign = $endSign;
}
/**
* @return mixed
*/
public function getOriginIndex()
{
return $this->originIndex;
}
/**
* @return mixed
*/
public function getType()
{
return $this->type;
}
/**
* @return mixed
*/
public function getText()
{
return $this->text;
}
/**
* @return mixed
*/
public function getDiffIndex()
{
return $this->diffIndex;
}
/**
* @return null
*/
public function getOriginText()
{
return $this->originText;
}
/**
* @param string $endSign
*/
public function setEndSign($endSign)
{
$this->endSign = $endSign;
}
/**
* @param mixed $originText
*/
public function setOriginText($originText)
{
$this->originText = $originText;
}
/**
* @param mixed $type
*/
public function setType($type)
{
$this->type = $type;
}
/**
* @param mixed $originIndex
*/
public function setOriginIndex($originIndex)
{
$this->originIndex = $originIndex;
}
/**
* @param mixed $diffIndex
*/
public function setDiffIndex($diffIndex)
{
$this->diffIndex = $diffIndex;
}
/**
* @return string
*/
public function getEndSign()
{
return $this->endSign;
}
}