Á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")
class MeuObjeto
	public data data1
	public method new()
EndClass


main function usoDeAnnotation()
	local oObj := MeuObjeto():New()
	conout(Reflection.isAnnotationObjectPresent(oObj,"AnnotationExemplo"))
	conout(Reflection.isAnnotationObjectPresent(oObj,"Teste"))
return

...