X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs-website;a=blobdiff_plain;f=vendor%2Fcaxy%2Fphp-htmldiff%2Flib%2FCaxy%2FHtmlDiff%2FTable%2FRowMatch.php;fp=vendor%2Fcaxy%2Fphp-htmldiff%2Flib%2FCaxy%2FHtmlDiff%2FTable%2FRowMatch.php;h=399292dd5989f7fe09aa3947f35c4aa5b569523a;hp=0000000000000000000000000000000000000000;hb=a2bd1bf0c2c1f1a17d188f4dc0726a45494cefae;hpb=57c063afa3f66b07c4bbddc2d6129a96d90f0aad diff --git a/vendor/caxy/php-htmldiff/lib/Caxy/HtmlDiff/Table/RowMatch.php b/vendor/caxy/php-htmldiff/lib/Caxy/HtmlDiff/Table/RowMatch.php new file mode 100644 index 000000000..399292dd5 --- /dev/null +++ b/vendor/caxy/php-htmldiff/lib/Caxy/HtmlDiff/Table/RowMatch.php @@ -0,0 +1,132 @@ +startInNew = $startInNew; + $this->startInOld = $startInOld; + $this->endInNew = $endInNew; + $this->endInOld = $endInOld; + $this->percentage = $percentage; + } + + /** + * @return int + */ + public function getStartInNew() + { + return $this->startInNew; + } + + /** + * @param int $startInNew + * + * @return RowMatch + */ + public function setStartInNew($startInNew) + { + $this->startInNew = $startInNew; + + return $this; + } + + /** + * @return int + */ + public function getStartInOld() + { + return $this->startInOld; + } + + /** + * @param int $startInOld + * + * @return RowMatch + */ + public function setStartInOld($startInOld) + { + $this->startInOld = $startInOld; + + return $this; + } + + /** + * @return int + */ + public function getEndInNew() + { + return $this->endInNew; + } + + /** + * @param int $endInNew + * + * @return RowMatch + */ + public function setEndInNew($endInNew) + { + $this->endInNew = $endInNew; + + return $this; + } + + /** + * @return int + */ + public function getEndInOld() + { + return $this->endInOld; + } + + /** + * @param int $endInOld + * + * @return RowMatch + */ + public function setEndInOld($endInOld) + { + $this->endInOld = $endInOld; + + return $this; + } +}