Rappel AffecterParametreMethode(NomModule : Caractere, NomTypeOuInterface : Caractere, NomMethode : Caractere, NomParametre : Caractere);
L'affectation effective s'effectue par l'appel à EcrireParametre.
Toutes les paramètres des méthodes qui sont ajoutées doivent être affectés par l'appel à cette méthode.
La valeur de retour doit suivre la convention de fonctionnement de l'énuméré RappelReponse.
/****************************************************************/
Rappel IIntegrationClient.AffecterParametreMethode(NomModule : Caractere, NomTypeOuInterface : Caractere, NomMethode : Caractere, NomParametre : Caractere)
/* Objet : Affecte les parametres de la methode. */
/****************************************************************/
Debut
Si NomModule=="MonModule" Alors
Si NomTypeOuInterface=="MonType" Alors
Si NomMethode=="MaMethode" Alors
Si NomParametre=="MonParametre" Alors
EcrireParametre("MaValeur");
Retourner RappelSucces;
Fin Si
Fin Si
Fin Si
Fin Si
Retourner RappelIgnore;
Fin Rappel
- | - | - | - | - | - | - | - | - |