/CSharpFactoryVS2010/CSharpFactory/ProjectModel/Comments/CommentInfo.cs

# · C# · 239 lines · 96 code · 19 blank · 124 comment · 1 complexity · 1295499775dfb9f26460e3b964f55a26 MD5 · raw file

  1. using CSharpFactory.Collections;
  2. using CSharpFactory.ParserFiles;
  3. using CSharpSyntaxParser=CSharpFactory.ParserFiles.CSharpSyntaxParser;
  4. namespace CSharpFactory.ProjectModel
  5. {
  6. // ==================================================================================
  7. /// <summary>
  8. /// This abstract class a C# comment.
  9. /// </summary>
  10. // ==================================================================================
  11. public abstract class CommentInfo: LanguageElement
  12. {
  13. #region Private fields
  14. /// <summary>Start line position of this comment.</summary>
  15. protected int _StartLine;
  16. /// <summary>Start column position of this comment.</summary>
  17. protected int _StartColumn;
  18. /// <summary>Ending line position of this comment.</summary>
  19. protected int _EndLine;
  20. /// <summary>Ending column position of this comment.</summary>
  21. protected int _EndColumn;
  22. /// <summary>Text information within this comment.</summary>
  23. protected string _Text;
  24. #endregion
  25. #region Lifecycle methods
  26. // --------------------------------------------------------------------------------
  27. /// <summary>
  28. /// Creates a new comment instance.
  29. /// </summary>
  30. /// <param name="token">Start token of the comment.</param>
  31. /// <param name="parser">Parser used by the comment</param>
  32. /// <param name="endLine">Ending line.</param>
  33. /// <param name="endColumn">Ending column.</param>
  34. /// <param name="text">Comment text.</param>
  35. // --------------------------------------------------------------------------------
  36. protected CommentInfo(ParserFiles.Token token, CSharpSyntaxParser parser, int endLine,
  37. int endColumn, string text): base(token, parser)
  38. {
  39. _EndLine = endLine;
  40. _EndColumn = endColumn;
  41. _Text = text;
  42. }
  43. #endregion
  44. #region Public properties
  45. // --------------------------------------------------------------------------------
  46. /// <summary>
  47. /// Gets or sets the line where #endregion directive starts.
  48. /// </summary>
  49. // --------------------------------------------------------------------------------
  50. public new int EndLine
  51. {
  52. get { return _EndLine; }
  53. }
  54. // --------------------------------------------------------------------------------
  55. /// <summary>
  56. /// Gets or sets the column where #endregion directive starts.
  57. /// </summary>
  58. // --------------------------------------------------------------------------------
  59. public new int EndColumn
  60. {
  61. get { return _EndColumn; }
  62. }
  63. // --------------------------------------------------------------------------------
  64. /// <summary>
  65. /// Gets the text of the comment excluding the comment mark tokens.
  66. /// </summary>
  67. // --------------------------------------------------------------------------------
  68. public virtual string Text
  69. {
  70. get { return _Text; }
  71. }
  72. // --------------------------------------------------------------------------------
  73. /// <summary>
  74. /// Gets the flag indicating if this comment has a documentation comment within
  75. /// its body or not.
  76. /// </summary>
  77. // --------------------------------------------------------------------------------
  78. public virtual bool HasDocumentation
  79. {
  80. get { return false; }
  81. }
  82. #endregion
  83. }
  84. // ==================================================================================
  85. /// <summary>
  86. /// This class a C# line comment.
  87. /// </summary>
  88. // ==================================================================================
  89. public sealed class LineComment : CommentInfo
  90. {
  91. // --------------------------------------------------------------------------------
  92. /// <summary>
  93. /// Creates a new comment instance.
  94. /// </summary>
  95. /// <param name="token">Start token of the comment.</param>
  96. /// <param name="parser">Parser used by the comment</param>
  97. /// <param name="endLine">Ending line.</param>
  98. /// <param name="endColumn">Ending column.</param>
  99. /// <param name="text">Comment text.</param>
  100. // --------------------------------------------------------------------------------
  101. public LineComment(ParserFiles.Token token, CSharpSyntaxParser parser, int endLine,
  102. int endColumn, string text)
  103. :
  104. base(token, parser, endLine, endColumn, text)
  105. {
  106. }
  107. }
  108. // ==================================================================================
  109. /// <summary>
  110. /// This class a C# block comment.
  111. /// </summary>
  112. // ==================================================================================
  113. public sealed class BlockComment : CommentInfo
  114. {
  115. // --------------------------------------------------------------------------------
  116. /// <summary>
  117. /// Creates a new comment instance.
  118. /// </summary>
  119. /// <param name="token">Start token of the comment.</param>
  120. /// <param name="parser">Parser used by the comment</param>
  121. /// <param name="endLine">Ending line.</param>
  122. /// <param name="endColumn">Ending column.</param>
  123. /// <param name="text">Comment text.</param>
  124. // --------------------------------------------------------------------------------
  125. public BlockComment(ParserFiles.Token token, CSharpSyntaxParser parser, int endLine,
  126. int endColumn, string text)
  127. : base(token, parser, endLine, endColumn, text)
  128. {
  129. }
  130. }
  131. // ==================================================================================
  132. /// <summary>
  133. /// This class represents a C# XML comment line.
  134. /// </summary>
  135. // ==================================================================================
  136. public sealed class XmlCommentLine : CommentInfo
  137. {
  138. // --------------------------------------------------------------------------------
  139. /// <summary>
  140. /// Creates a new comment instance.
  141. /// </summary>
  142. /// <param name="token">Start token of the comment.</param>
  143. /// <param name="parser">Parser used by the comment</param>
  144. /// <param name="endLine">Ending line.</param>
  145. /// <param name="endColumn">Ending column.</param>
  146. /// <param name="text">Comment text.</param>
  147. // --------------------------------------------------------------------------------
  148. public XmlCommentLine(ParserFiles.Token token, CSharpSyntaxParser parser, int endLine,
  149. int endColumn, string text)
  150. : base(token, parser, endLine, endColumn, text)
  151. {
  152. }
  153. // --------------------------------------------------------------------------------
  154. /// <summary>
  155. /// Gets the flag indicating if this comment has a documentation comment within
  156. /// its body or not.
  157. /// </summary>
  158. // --------------------------------------------------------------------------------
  159. public override bool HasDocumentation
  160. {
  161. get { return true; }
  162. }
  163. }
  164. // ==================================================================================
  165. /// <summary>
  166. /// This class represents a C# XML block comment.
  167. /// </summary>
  168. // ==================================================================================
  169. public sealed class XmlBlockComment : CommentInfo
  170. {
  171. // --------------------------------------------------------------------------------
  172. /// <summary>
  173. /// Creates a new comment instance.
  174. /// </summary>
  175. /// <param name="token">Start token of the comment.</param>
  176. /// <param name="parser">Parser used by the comment</param>
  177. /// <param name="endLine">Ending line.</param>
  178. /// <param name="endColumn">Ending column.</param>
  179. /// <param name="text">Comment text.</param>
  180. // --------------------------------------------------------------------------------
  181. public XmlBlockComment(Token token, CSharpSyntaxParser parser, int endLine,
  182. int endColumn, string text)
  183. : base(token, parser, endLine, endColumn, text)
  184. {
  185. }
  186. // --------------------------------------------------------------------------------
  187. /// <summary>
  188. /// Gets the flag indicating if this comment has a documentation comment within
  189. /// its body or not.
  190. /// </summary>
  191. // --------------------------------------------------------------------------------
  192. public override bool HasDocumentation
  193. {
  194. get { return true; }
  195. }
  196. }
  197. // ==================================================================================
  198. /// <summary>
  199. /// This class represents a collection of comment information.
  200. /// </summary>
  201. // ==================================================================================
  202. public class CommentInfoCollection : ImmutableCollection<CommentInfo>
  203. {
  204. // --------------------------------------------------------------------------------
  205. /// <summary>
  206. /// Gets the flag indicating if this block has a documentation comment within
  207. /// its body or not.
  208. /// </summary>
  209. // --------------------------------------------------------------------------------
  210. public bool HasDocumentation
  211. {
  212. get
  213. {
  214. foreach (CommentInfo comment in this)
  215. if (comment.HasDocumentation) return true;
  216. return false;
  217. }
  218. }
  219. }
  220. }