Árvore de páginas

Versões comparadas

Chave

  • Esta linha foi adicionada.
  • Esta linha foi removida.
  • A formatação mudou.

...

Bloco de código
languagecpp
themeEclipse
titleexemplo1.tlpp
linenumberstrue
@annotation AnnotationExemplo
    nickname as char
@end
 
UserFunction function u_testeAnnotation(@AnnotationExemplo("oioi") parm1, @AnnotationExemplo("oioi") parm2) 
	conout("funcaoTesteAnnotation")
return
main function usoDeAnnotation()
	conout(Reflection.isAnnotationFunctionParamPresent("exemplo1.tlpp", "u_testeAnnotation", 1, "AnnotationExemplo"))
	conout(Reflection.isAnnotationFunctionParamPresent("exemplo1.tlpp", "u_testeAnnotation", 2, "AnnotationExemplo"))
	conout(Reflection.isAnnotationFunctionParamPresent("exemplo1.tlpp", "u_testeAnnotation", 1, "AnnotationNaoEncontrada"))
return

...