File tree Expand file tree Collapse file tree 1 file changed +14
-0
lines changed
src/org/opensolaris/opengrok/analysis/plain Expand file tree Collapse file tree 1 file changed +14
-0
lines changed Original file line number Diff line number Diff line change 36
36
/**
37
37
*
38
38
* @author Lubos Kosco
39
+ *
40
+ * This class should abstract all analysers that deal with source code.
41
+ * Source code is specific that it has definitions and references.
42
+ * Source code has custom xref generators, depending on symbols.
43
+ * This class should mark the classes that can provide defs and refs.
44
+ * NOTE: SymbolTokenizer gets set for #1376 in PlainAnalyzer::analyze
45
+ * and not part of this class anymore due to changes in lucene 6 .
46
+ *
47
+ * Anything shared just for source code analyzers should be here,
48
+ * also all interfaces for source code analyzer should start here.
49
+ *
50
+ * Any child is forced to provide necessary xref and symbol tokenizers,
51
+ * if it fails to do so it will automatically behave like PlainAnalyzer.
52
+ *
39
53
*/
40
54
public abstract class AbstractSourceCodeAnalyzer extends PlainAnalyzer {
41
55
You can’t perform that action at this time.
0 commit comments