| 1 | <?php |
||
| 14 | class TAnonymousFunctionExpressionType extends IsOK |
||
| 15 | { |
||
| 16 | use GExpressionTrait; |
||
| 17 | |||
| 18 | public function __construct() |
||
| 22 | |||
| 23 | /** |
||
| 24 | * @property \AlgoWeb\ODataMetadata\MetadataV3\edm\TFunctionParameterType[] $parameters |
||
| 25 | */ |
||
| 26 | private $parameters = null; |
||
| 27 | |||
| 28 | /** |
||
| 29 | * Adds as parameter |
||
| 30 | * |
||
| 31 | * @return self |
||
| 32 | * @param \AlgoWeb\ODataMetadata\MetadataV3\edm\TFunctionParameterType $parameter |
||
| 33 | */ |
||
| 34 | public function addToParameters(TFunctionParameterType $parameter) |
||
| 39 | |||
| 40 | /** |
||
| 41 | * isset parameters |
||
| 42 | * |
||
| 43 | * @param scalar $index |
||
| 44 | * @return boolean |
||
| 45 | */ |
||
| 46 | public function issetParameters($index) |
||
| 50 | |||
| 51 | /** |
||
| 52 | * unset parameters |
||
| 53 | * |
||
| 54 | * @param scalar $index |
||
| 55 | * @return void |
||
| 56 | */ |
||
| 57 | public function unsetParameters($index) |
||
| 61 | |||
| 62 | /** |
||
| 63 | * Gets as parameters |
||
| 64 | * |
||
| 65 | * @return \AlgoWeb\ODataMetadata\MetadataV3\edm\TFunctionParameterType[] |
||
| 66 | */ |
||
| 67 | public function getParameters() |
||
| 71 | |||
| 72 | /** |
||
| 73 | * Sets a new parameters |
||
| 74 | * |
||
| 75 | * @param \AlgoWeb\ODataMetadata\MetadataV3\edm\TFunctionParameterType[] $parameters |
||
| 76 | * @return self |
||
| 77 | */ |
||
| 78 | public function setParameters(array $parameters) |
||
| 83 | |||
| 84 | public function isOK(&$msg = null) |
||
| 91 | } |
||
| 92 |