| 1 | <?php |
||
| 19 | class FileStandalone extends AbstractModel |
||
| 20 | { |
||
| 21 | /** |
||
| 22 | * Focus point Y. |
||
| 23 | * |
||
| 24 | * @var int |
||
| 25 | * @DatabaseField(type="int") |
||
| 26 | */ |
||
| 27 | protected $focusPointY; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * Focus point X. |
||
| 31 | * |
||
| 32 | * @var int |
||
| 33 | * @DatabaseField(type="int") |
||
| 34 | */ |
||
| 35 | protected $focusPointX; |
||
| 36 | |||
| 37 | /** |
||
| 38 | * @var string |
||
| 39 | * @DatabaseField(type="string") |
||
| 40 | */ |
||
| 41 | protected $relativeFilePath; |
||
| 42 | |||
| 43 | /** |
||
| 44 | * Get Y. |
||
| 45 | * |
||
| 46 | * @return int |
||
| 47 | */ |
||
| 48 | public function getFocusPointY() |
||
| 52 | |||
| 53 | /** |
||
| 54 | * Set Y. |
||
| 55 | * |
||
| 56 | * @param int $focusPointY |
||
| 57 | */ |
||
| 58 | public function setFocusPointY($focusPointY) |
||
| 62 | |||
| 63 | /** |
||
| 64 | * Get X. |
||
| 65 | * |
||
| 66 | * @return int |
||
| 67 | */ |
||
| 68 | public function getFocusPointX() |
||
| 72 | |||
| 73 | /** |
||
| 74 | * Set X. |
||
| 75 | * |
||
| 76 | * @param int $focusPointX |
||
| 77 | */ |
||
| 78 | public function setFocusPointX($focusPointX) |
||
| 82 | } |
||
| 83 |