| @@ 11-67 (lines=57) @@ | ||
| 8 | * |
|
| 9 | * XSD Type: TOnAction |
|
| 10 | */ |
|
| 11 | class TOnActionType |
|
| 12 | { |
|
| 13 | ||
| 14 | /** |
|
| 15 | * @property string $action |
|
| 16 | */ |
|
| 17 | private $action = null; |
|
| 18 | ||
| 19 | /** |
|
| 20 | * @property \MetadataV3\edm\TDocumentationType $documentation |
|
| 21 | */ |
|
| 22 | private $documentation = null; |
|
| 23 | ||
| 24 | /** |
|
| 25 | * Gets as action |
|
| 26 | * |
|
| 27 | * @return string |
|
| 28 | */ |
|
| 29 | public function getAction() |
|
| 30 | { |
|
| 31 | return $this->action; |
|
| 32 | } |
|
| 33 | ||
| 34 | /** |
|
| 35 | * Sets a new action |
|
| 36 | * |
|
| 37 | * @param string $action |
|
| 38 | * @return self |
|
| 39 | */ |
|
| 40 | public function setAction($action) |
|
| 41 | { |
|
| 42 | $this->action = $action; |
|
| 43 | return $this; |
|
| 44 | } |
|
| 45 | ||
| 46 | /** |
|
| 47 | * Gets as documentation |
|
| 48 | * |
|
| 49 | * @return \MetadataV3\edm\TDocumentationType |
|
| 50 | */ |
|
| 51 | public function getDocumentation() |
|
| 52 | { |
|
| 53 | return $this->documentation; |
|
| 54 | } |
|
| 55 | ||
| 56 | /** |
|
| 57 | * Sets a new documentation |
|
| 58 | * |
|
| 59 | * @param \MetadataV3\edm\TDocumentationType $documentation |
|
| 60 | * @return self |
|
| 61 | */ |
|
| 62 | public function setDocumentation(\MetadataV3\edm\TDocumentationType $documentation) |
|
| 63 | { |
|
| 64 | $this->documentation = $documentation; |
|
| 65 | return $this; |
|
| 66 | } |
|
| 67 | } |
|
| 68 | ||
| @@ 11-67 (lines=57) @@ | ||
| 8 | * |
|
| 9 | * XSD Type: TReferenceType |
|
| 10 | */ |
|
| 11 | class TReferenceTypeType |
|
| 12 | { |
|
| 13 | ||
| 14 | /** |
|
| 15 | * @property string $type |
|
| 16 | */ |
|
| 17 | private $type = null; |
|
| 18 | ||
| 19 | /** |
|
| 20 | * @property \MetadataV3\edm\TDocumentationType $documentation |
|
| 21 | */ |
|
| 22 | private $documentation = null; |
|
| 23 | ||
| 24 | /** |
|
| 25 | * Gets as type |
|
| 26 | * |
|
| 27 | * @return string |
|
| 28 | */ |
|
| 29 | public function getType() |
|
| 30 | { |
|
| 31 | return $this->type; |
|
| 32 | } |
|
| 33 | ||
| 34 | /** |
|
| 35 | * Sets a new type |
|
| 36 | * |
|
| 37 | * @param string $type |
|
| 38 | * @return self |
|
| 39 | */ |
|
| 40 | public function setType($type) |
|
| 41 | { |
|
| 42 | $this->type = $type; |
|
| 43 | return $this; |
|
| 44 | } |
|
| 45 | ||
| 46 | /** |
|
| 47 | * Gets as documentation |
|
| 48 | * |
|
| 49 | * @return \MetadataV3\edm\TDocumentationType |
|
| 50 | */ |
|
| 51 | public function getDocumentation() |
|
| 52 | { |
|
| 53 | return $this->documentation; |
|
| 54 | } |
|
| 55 | ||
| 56 | /** |
|
| 57 | * Sets a new documentation |
|
| 58 | * |
|
| 59 | * @param \MetadataV3\edm\TDocumentationType $documentation |
|
| 60 | * @return self |
|
| 61 | */ |
|
| 62 | public function setDocumentation(\MetadataV3\edm\TDocumentationType $documentation) |
|
| 63 | { |
|
| 64 | $this->documentation = $documentation; |
|
| 65 | return $this; |
|
| 66 | } |
|
| 67 | } |
|
| 68 | ||