PageRenderTime 4ms CodeModel.GetById 0ms RepoModel.GetById 0ms app.codeStats 0ms

/jrat.xml

http://testability-explorer.googlecode.com/
XML | 54 lines | 16 code | 13 blank | 25 comment | 0 complexity | 8b9d9e1c1e0a716dee07c703ba562ece MD5 | raw file
Possible License(s): Apache-2.0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <jrat>
  3. <!-- ********************************************************************
  4. ** Java Runtime Analysis Toolkit Configuration **
  5. ** sample, default configuration file - modify as need **
  6. ** Author : Jeff Drost **
  7. ********************************************************************* -->
  8. <settings>
  9. <property name="httpServerEnabled" value="true"/>
  10. </settings>
  11. <!--
  12. A profile defines a set of handlers and the criteria that must
  13. be satisfied in order for a method to be monitored with those handlers.
  14. In a single configuration file you can have multiple profile.
  15. -->
  16. <profile name="my code">
  17. <criteria>
  18. <!--
  19. A profile's handlers are used if any of the includes are
  20. satisfied and none of the excludes are.
  21. ( includeA or includeB... ) and ( not( excludeA or excludeB... ) )
  22. -->
  23. <!--
  24. <include className="*" methodName="*" signature="*"/>
  25. <exclude className="*" methodName="*" signature="*"/>
  26. -->
  27. <include/>
  28. </criteria>
  29. <handlers>
  30. <!--
  31. The Tree Method Handler is the general purpose included method handler,
  32. but you can choose to write your own. Simply implement MethodHandlerFactory
  33. and get ready to receieve runtime events.
  34. -->
  35. <handler factory="org.shiftone.jrat.provider.tree.TreeMethodHandlerFactory">
  36. <property name="outputFile" value="my_code_tree.jrat"/>
  37. </handler>
  38. </handlers>
  39. </profile>
  40. </jrat>