@@ -12,58 +12,58 @@ |
||
| 12 | 12 | { |
| 13 | 13 | use MediaObjectTrait; |
| 14 | 14 | |
| 15 | - private $_caption; |
|
| 15 | + private $_caption; |
|
| 16 | 16 | |
| 17 | - public function setCaption($caption) |
|
| 18 | - { |
|
| 19 | - $this->_caption = $caption; |
|
| 20 | - return $this; |
|
| 21 | - } |
|
| 17 | + public function setCaption($caption) |
|
| 18 | + { |
|
| 19 | + $this->_caption = $caption; |
|
| 20 | + return $this; |
|
| 21 | + } |
|
| 22 | 22 | |
| 23 | - public function getCaption() |
|
| 24 | - { |
|
| 25 | - return $this->_caption; |
|
| 26 | - } |
|
| 23 | + public function getCaption() |
|
| 24 | + { |
|
| 25 | + return $this->_caption; |
|
| 26 | + } |
|
| 27 | 27 | |
| 28 | - private $_exifData; |
|
| 28 | + private $_exifData; |
|
| 29 | 29 | |
| 30 | - public function setExifData(PropertyValue $propertyValue) |
|
| 31 | - { |
|
| 32 | - $this->_exifData = $propertyValue; |
|
| 30 | + public function setExifData(PropertyValue $propertyValue) |
|
| 31 | + { |
|
| 32 | + $this->_exifData = $propertyValue; |
|
| 33 | 33 | |
| 34 | - return $this; |
|
| 35 | - } |
|
| 34 | + return $this; |
|
| 35 | + } |
|
| 36 | 36 | |
| 37 | - public function getExifData() |
|
| 38 | - { |
|
| 39 | - return $this->_exifData; |
|
| 40 | - } |
|
| 37 | + public function getExifData() |
|
| 38 | + { |
|
| 39 | + return $this->_exifData; |
|
| 40 | + } |
|
| 41 | 41 | |
| 42 | - private $_representativeOfPage; |
|
| 42 | + private $_representativeOfPage; |
|
| 43 | 43 | |
| 44 | - public function setRepresentativeOfPage($representativeOfPage) |
|
| 45 | - { |
|
| 46 | - $this->_representativeOfPage = $representativeOfPage; |
|
| 44 | + public function setRepresentativeOfPage($representativeOfPage) |
|
| 45 | + { |
|
| 46 | + $this->_representativeOfPage = $representativeOfPage; |
|
| 47 | 47 | |
| 48 | - return $this; |
|
| 49 | - } |
|
| 48 | + return $this; |
|
| 49 | + } |
|
| 50 | 50 | |
| 51 | - public function getRepresentativeOfPage() |
|
| 52 | - { |
|
| 53 | - return $this->_representativeOfPage; |
|
| 54 | - } |
|
| 51 | + public function getRepresentativeOfPage() |
|
| 52 | + { |
|
| 53 | + return $this->_representativeOfPage; |
|
| 54 | + } |
|
| 55 | 55 | |
| 56 | - private $_thumbnail; |
|
| 56 | + private $_thumbnail; |
|
| 57 | 57 | |
| 58 | - public function setThumbnail(ImageObject $imageObject) |
|
| 59 | - { |
|
| 60 | - $this->_thumbnail = $imageObject; |
|
| 58 | + public function setThumbnail(ImageObject $imageObject) |
|
| 59 | + { |
|
| 60 | + $this->_thumbnail = $imageObject; |
|
| 61 | 61 | |
| 62 | - return $this; |
|
| 63 | - } |
|
| 62 | + return $this; |
|
| 63 | + } |
|
| 64 | 64 | |
| 65 | - public function getThumbnail() |
|
| 66 | - { |
|
| 67 | - return $this->_thumbnail; |
|
| 68 | - } |
|
| 65 | + public function getThumbnail() |
|
| 66 | + { |
|
| 67 | + return $this->_thumbnail; |
|
| 68 | + } |
|
| 69 | 69 | } |
| 70 | 70 | \ No newline at end of file |
@@ -12,11 +12,11 @@ |
||
| 12 | 12 | { |
| 13 | 13 | use ImageObjectTrait; |
| 14 | 14 | |
| 15 | - /** |
|
| 16 | - * @inheritdoc |
|
| 17 | - */ |
|
| 18 | - public function typeDefintion() |
|
| 19 | - { |
|
| 20 | - return 'ImageObject'; |
|
| 21 | - } |
|
| 15 | + /** |
|
| 16 | + * @inheritdoc |
|
| 17 | + */ |
|
| 18 | + public function typeDefintion() |
|
| 19 | + { |
|
| 20 | + return 'ImageObject'; |
|
| 21 | + } |
|
| 22 | 22 | } |
| 23 | 23 | \ No newline at end of file |
@@ -10,19 +10,19 @@ |
||
| 10 | 10 | */ |
| 11 | 11 | interface ImageObjectInterface extends MediaObjectInterface |
| 12 | 12 | { |
| 13 | - public function setCaption($caption); |
|
| 13 | + public function setCaption($caption); |
|
| 14 | 14 | |
| 15 | - public function getCaption(); |
|
| 15 | + public function getCaption(); |
|
| 16 | 16 | |
| 17 | - public function setExifData(PropertyValue $propertyValue); |
|
| 17 | + public function setExifData(PropertyValue $propertyValue); |
|
| 18 | 18 | |
| 19 | - public function getExifData(); |
|
| 19 | + public function getExifData(); |
|
| 20 | 20 | |
| 21 | - public function setRepresentativeOfPage($representativeOfPage); |
|
| 21 | + public function setRepresentativeOfPage($representativeOfPage); |
|
| 22 | 22 | |
| 23 | - public function getRepresentativeOfPage(); |
|
| 23 | + public function getRepresentativeOfPage(); |
|
| 24 | 24 | |
| 25 | - public function setThumbnail(ImageObject $imageObject); |
|
| 25 | + public function setThumbnail(ImageObject $imageObject); |
|
| 26 | 26 | |
| 27 | - public function getThumbnail(); |
|
| 27 | + public function getThumbnail(); |
|
| 28 | 28 | } |
| 29 | 29 | \ No newline at end of file |
@@ -10,31 +10,31 @@ |
||
| 10 | 10 | */ |
| 11 | 11 | interface PropertyValueInterface extends ThingInterface |
| 12 | 12 | { |
| 13 | - public function setMaxValue($maxValue); |
|
| 13 | + public function setMaxValue($maxValue); |
|
| 14 | 14 | |
| 15 | - public function getMaxValue(); |
|
| 15 | + public function getMaxValue(); |
|
| 16 | 16 | |
| 17 | - public function setMeasurementTechnique($measurementTechnique); |
|
| 17 | + public function setMeasurementTechnique($measurementTechnique); |
|
| 18 | 18 | |
| 19 | - public function getMeasurementTechnique(); |
|
| 19 | + public function getMeasurementTechnique(); |
|
| 20 | 20 | |
| 21 | - public function setMinValue($minValue); |
|
| 21 | + public function setMinValue($minValue); |
|
| 22 | 22 | |
| 23 | - public function getMinValue(); |
|
| 23 | + public function getMinValue(); |
|
| 24 | 24 | |
| 25 | - public function setPropertyID($propertyID); |
|
| 25 | + public function setPropertyID($propertyID); |
|
| 26 | 26 | |
| 27 | - public function getPropertyID(); |
|
| 27 | + public function getPropertyID(); |
|
| 28 | 28 | |
| 29 | - public function setUnitCode($unitCode); |
|
| 29 | + public function setUnitCode($unitCode); |
|
| 30 | 30 | |
| 31 | - public function getUnitCode(); |
|
| 31 | + public function getUnitCode(); |
|
| 32 | 32 | |
| 33 | - public function setUnitText($uniText); |
|
| 33 | + public function setUnitText($uniText); |
|
| 34 | 34 | |
| 35 | - public function getUnitText(); |
|
| 35 | + public function getUnitText(); |
|
| 36 | 36 | |
| 37 | - public function setValue($value); |
|
| 37 | + public function setValue($value); |
|
| 38 | 38 | |
| 39 | - public function getValue(); |
|
| 39 | + public function getValue(); |
|
| 40 | 40 | } |
| 41 | 41 | \ No newline at end of file |
@@ -10,103 +10,103 @@ |
||
| 10 | 10 | */ |
| 11 | 11 | trait PropertyValueTrait |
| 12 | 12 | { |
| 13 | - use ThingTrait; |
|
| 13 | + use ThingTrait; |
|
| 14 | 14 | |
| 15 | - private $_maxValue; |
|
| 15 | + private $_maxValue; |
|
| 16 | 16 | |
| 17 | - public function setMaxValue($maxValue) |
|
| 18 | - { |
|
| 19 | - $this->_maxValue = $maxValue; |
|
| 17 | + public function setMaxValue($maxValue) |
|
| 18 | + { |
|
| 19 | + $this->_maxValue = $maxValue; |
|
| 20 | 20 | |
| 21 | - return $this; |
|
| 22 | - } |
|
| 21 | + return $this; |
|
| 22 | + } |
|
| 23 | 23 | |
| 24 | - public function getMaxValue() |
|
| 25 | - { |
|
| 26 | - return $this->_maxValue; |
|
| 27 | - } |
|
| 24 | + public function getMaxValue() |
|
| 25 | + { |
|
| 26 | + return $this->_maxValue; |
|
| 27 | + } |
|
| 28 | 28 | |
| 29 | - private $_minValue; |
|
| 29 | + private $_minValue; |
|
| 30 | 30 | |
| 31 | - public function setMinValue($minValue) |
|
| 32 | - { |
|
| 33 | - $this->_minValue = $minValue; |
|
| 31 | + public function setMinValue($minValue) |
|
| 32 | + { |
|
| 33 | + $this->_minValue = $minValue; |
|
| 34 | 34 | |
| 35 | - return $this; |
|
| 36 | - } |
|
| 35 | + return $this; |
|
| 36 | + } |
|
| 37 | 37 | |
| 38 | - public function getMinValue() |
|
| 39 | - { |
|
| 40 | - return $this->_minValue; |
|
| 41 | - } |
|
| 38 | + public function getMinValue() |
|
| 39 | + { |
|
| 40 | + return $this->_minValue; |
|
| 41 | + } |
|
| 42 | 42 | |
| 43 | - private $_measurementTechnique; |
|
| 43 | + private $_measurementTechnique; |
|
| 44 | 44 | |
| 45 | - public function setMeasurementTechnique($measurementTechnique) |
|
| 46 | - { |
|
| 47 | - $this->_measurementTechnique = $measurementTechnique; |
|
| 45 | + public function setMeasurementTechnique($measurementTechnique) |
|
| 46 | + { |
|
| 47 | + $this->_measurementTechnique = $measurementTechnique; |
|
| 48 | 48 | |
| 49 | - return $this; |
|
| 50 | - } |
|
| 49 | + return $this; |
|
| 50 | + } |
|
| 51 | 51 | |
| 52 | - public function getMeasurementTechnique() |
|
| 53 | - { |
|
| 54 | - return $this->_measurementTechnique; |
|
| 55 | - } |
|
| 52 | + public function getMeasurementTechnique() |
|
| 53 | + { |
|
| 54 | + return $this->_measurementTechnique; |
|
| 55 | + } |
|
| 56 | 56 | |
| 57 | - private $_propertyId; |
|
| 57 | + private $_propertyId; |
|
| 58 | 58 | |
| 59 | - public function setPropertyID($propertyID) |
|
| 60 | - { |
|
| 61 | - $this->_propertyId = $propertyID; |
|
| 59 | + public function setPropertyID($propertyID) |
|
| 60 | + { |
|
| 61 | + $this->_propertyId = $propertyID; |
|
| 62 | 62 | |
| 63 | - return $this; |
|
| 64 | - } |
|
| 63 | + return $this; |
|
| 64 | + } |
|
| 65 | 65 | |
| 66 | - public function getPropertyID() |
|
| 67 | - { |
|
| 68 | - return $this->_propertyId; |
|
| 69 | - } |
|
| 66 | + public function getPropertyID() |
|
| 67 | + { |
|
| 68 | + return $this->_propertyId; |
|
| 69 | + } |
|
| 70 | 70 | |
| 71 | - private $_unitCode; |
|
| 71 | + private $_unitCode; |
|
| 72 | 72 | |
| 73 | - public function setUnitCode($unitCode) |
|
| 74 | - { |
|
| 75 | - $this->_unitCode = $unitCode; |
|
| 73 | + public function setUnitCode($unitCode) |
|
| 74 | + { |
|
| 75 | + $this->_unitCode = $unitCode; |
|
| 76 | 76 | |
| 77 | - return $this; |
|
| 78 | - } |
|
| 77 | + return $this; |
|
| 78 | + } |
|
| 79 | 79 | |
| 80 | - public function getUnitCode() |
|
| 81 | - { |
|
| 82 | - return $this->_unitCode; |
|
| 83 | - } |
|
| 80 | + public function getUnitCode() |
|
| 81 | + { |
|
| 82 | + return $this->_unitCode; |
|
| 83 | + } |
|
| 84 | 84 | |
| 85 | - private $_unitText; |
|
| 85 | + private $_unitText; |
|
| 86 | 86 | |
| 87 | - public function setUnitText($uniText) |
|
| 88 | - { |
|
| 89 | - $this->_unitText = $uniText; |
|
| 87 | + public function setUnitText($uniText) |
|
| 88 | + { |
|
| 89 | + $this->_unitText = $uniText; |
|
| 90 | 90 | |
| 91 | - return $this; |
|
| 92 | - } |
|
| 91 | + return $this; |
|
| 92 | + } |
|
| 93 | 93 | |
| 94 | - public function getUnitText() |
|
| 95 | - { |
|
| 96 | - return $this->_unitText; |
|
| 97 | - } |
|
| 94 | + public function getUnitText() |
|
| 95 | + { |
|
| 96 | + return $this->_unitText; |
|
| 97 | + } |
|
| 98 | 98 | |
| 99 | - private $_value; |
|
| 99 | + private $_value; |
|
| 100 | 100 | |
| 101 | - public function setValue($value) |
|
| 102 | - { |
|
| 103 | - $this->_value = $value; |
|
| 101 | + public function setValue($value) |
|
| 102 | + { |
|
| 103 | + $this->_value = $value; |
|
| 104 | 104 | |
| 105 | - return $this; |
|
| 106 | - } |
|
| 105 | + return $this; |
|
| 106 | + } |
|
| 107 | 107 | |
| 108 | - public function getValue() |
|
| 109 | - { |
|
| 110 | - return $this->_value; |
|
| 111 | - } |
|
| 108 | + public function getValue() |
|
| 109 | + { |
|
| 110 | + return $this->_value; |
|
| 111 | + } |
|
| 112 | 112 | } |
| 113 | 113 | \ No newline at end of file |
@@ -12,11 +12,11 @@ |
||
| 12 | 12 | { |
| 13 | 13 | use PropertyValueTrait; |
| 14 | 14 | |
| 15 | - /** |
|
| 16 | - * @inheritdoc |
|
| 17 | - */ |
|
| 18 | - public function typeDefintion() |
|
| 19 | - { |
|
| 20 | - return 'PropertyValue'; |
|
| 21 | - } |
|
| 15 | + /** |
|
| 16 | + * @inheritdoc |
|
| 17 | + */ |
|
| 18 | + public function typeDefintion() |
|
| 19 | + { |
|
| 20 | + return 'PropertyValue'; |
|
| 21 | + } |
|
| 22 | 22 | } |
| 23 | 23 | \ No newline at end of file |