Advertisement
Guest User

Untitled

a guest
Apr 19th, 2014
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.49 KB | None | 0 0
  1. # The directory in which the "top-most" package for all example code
  2. # resides. For example, if
  3. # C:\java_code\my\package\examples\AnExample.java
  4. # set this to "C:\java_code\" (and if this happens to be the JVM's
  5. # working directory, it could also be set to the empty string.)
  6. example_code_base_directory=
  7. # For classes whose source code is stored on disk with less directories
  8. # than in their package name. For example, if your example class is
  9. # com.github.xbn.insertexample.examples.AnExample
  10. # but stored on disk as
  11. # C:\java_code\xbn\insertexample\examples\AnExample.java
  12. # set this to "com.github". If the directories exactly match
  13. # the package names, set this to the empty string.
  14. package_root_not_used_on_disk=com.github
  15.  
  16. # Diagnostics.
  17. # - "off": No debugging
  18. # - "minimal": A small amount of debugging per taglet call
  19. # - "verbose": A large amount of debugging per taglet call
  20. debugging_level=verbose
  21. # - "console": Output is via System.out
  22. # - If not console (and debugging is not off), this must be the
  23. # absolute or relative path to a writeable file.
  24. debugging_destination=console
  25.  
  26. # The directory which to prepend to all below template file values.
  27. # May be the empty-string
  28. default_template_directory=
  29. # Default gap templates used when not otherwise specified in an output
  30. # processor function. All are required, must exist, and be readable.
  31. #
  32. # The values may be one of the following, which are searched for
  33. # in order:
  34. # -1- A file name, which exists in the same directory as this
  35. # configuration file.
  36. # -2- A relative path, which exists off of the directory from which
  37. # the JVM was invoked.
  38. # -3- An absolute path.
  39. default_source_code_template=source_code_template.txt
  40. default_output_template=output_template.txt
  41. default_file_text_template=file_text_template.txt
  42.  
  43.  
  44. # The characters that surround gap names. If not provided, defaults to
  45. # IxcConstants.DEFAULT_GAP_START_CHAR and DEFAULT_GAP_END_CHAR
  46. gap_name_prefix_character=%
  47. gap_name_postfix_character=%
  48.  
  49. # If templates must have only those gaps as specified by the IXC project
  50. # (no extra) set this to "forbidden". Otherwise, "allowed"
  51. extra_gaps_in_templates=forbidden
  52. # Is it okay for the gaps in a template to remain unfilled?
  53. # Must be "OK", "BAD", or the empty string (not provided). If not
  54. # provided, defaults to IxcConstants.DEFAULT_UNFILLED_GAPS_ARE.
  55. # If extra_gaps_in_templates is "forbidden", this is ignored.
  56. unfilled_gaps_are=
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement