Á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
titletest_doc_getFunctionsByAnnotation.tlpp
linenumberstrue
#include "tlpp-core.th"

function u_testGetFunctionsByAnnotation()
	local aRet := {} as array

	aRet := Reflection.getFunctionsByAnnotation("AnnotationExemplo", "namespaceGetFunctionsByAnnotation.*" )

	if(valType(aRet) == 'A' .and. len(aRet) > 0)
		aEval(aRet,{|x| aEval(x,{|y| conout(y)})})
	else
		conout('Nao foi possivel encontrar a Annotation com os parametros solicitados')
	endif

return

...