Á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
@interface@annotation 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

...