Procura e retorna uma Annotation em uma propriedade de um objeto.
Sintaxe
Reflection.getFunctionAnnotation( cSourceName, cFunctionName, cAnnotationName )
Parâmetros
Nome | Tipo | Descrição | Obrigatório | Referência |
---|---|---|---|---|
cSourceName | caractere | Indica o nome do fonte onde está a função que será procurado a Annotation. | X | |
cPropertyName | caractere | Indica o nome da função onde será procurada a Annotation. | X | |
cAnnotationName | caractere | Indica o nome da Annotation que será procurada. | X |
Retorno
Nome | Tipo | Descrição |
---|---|---|
jRet | JsonObject | Retorna o object Json caso encontre a Annotation na função e NIL caso não encontre. |
Exemplos
exemplo1.tlpp
@interface AnnotationExemplo nickname as char @end @AnnotationExemplo(nickname = "Company") function exemploAnnotation() return main function usoDeAnnotation() local oObj := MeuObjeto():New() local jRet if (Reflection.isAnnotationFunctionPresent("exemplo1.tlpp", "exemploAnnotation", "AnnotationExemplo")) jRet := Reflection.getFunctionAnnotation("exemplo1.tlpp", "exemploAnnotation","AnnotationExemplo") conout(jRet["NICKNAME"]) endif return
Resultado do Exemplo
Company
Abrangência
17.3.0.3
Veja também
Visão Geral
Import HTML Content
Conteúdo das Ferramentas
Tarefas