1
我使用QDox解析器來分析.java文件,我想在課程開始之前獲得註釋的行號。不幸的是,我沒有用DocDepag類的QDox解析器得到它。我只得到命名標籤但沒有行號。QDox解析器:在課前獲得評論的行號
Sample類:
1 /*
2 * Sample class
3 *
4 *
5 */
6
7 package org.example.package;
8
9 /**
10 * Looking for the beginning and end of this comment
11 */
12 public class Value {
13 ...
14 }
我所尋找的是提取最前面的註釋的端部的方法。
在這個例子中:管線9和線11