001: // 1 sample java file for testing comment settings in jAnalyzer
002: package org.infozone.tools.janalyzer;
003:
004: // 2
005: import koala.dynamicjava.tree.*;
006:
007: // 3
008: public final class MassiveComments {
009: // 4
010: public JavaCodeOutput() {
011: // 5
012: method();
013: // 6
014: method();
015: // 7
016: }
017:
018: // 8
019: public final Object method(Parameter one) {
020: // 9
021: try {
022: // 10
023: if (cond) {
024: // 11
025: method6();
026: // 12
027: method6b();
028: // 13
029: }
030: // 14
031: else if (cond2) {
032: // 15
033: method();
034: // 16
035: }
036: // 17
037: else {
038: // 18
039: method();
040: // 19
041: }
042: // 20
043: }
044: // 21
045: catch (exception e) {
046: // 22
047: method();
048: // 23
049: method();
050: // 24
051:
052: }
053: // 25
054: finally {
055: // 26
056: method();
057: // 27
058: method();
059: // 28
060: }
061: // 29
062: switch (cond) {
063: // 30
064: case A:
065: // 31
066: method();
067: // 32
068: method();
069: // 33
070: default:
071: // 34
072: method();
073: // 35
074: method();
075: // 36
076: }
077: // 37
078: while (cond) {
079: // 38
080: method();
081: // 39
082: method();
083: // 40
084:
085: }
086: // 41
087: do {
088: // 42
089: method();
090: // 43
091: method();
092: // 44
093:
094: } while (cond);
095: // 45 left, 46
096: for (;;) {
097: // 47
098: method();
099: // 48
100: method();
101: // 49
102:
103: }
104: // 50
105: addActionListener(new ActionListener() {
106: // 51
107: public void actionPerformed(ActionEvent e) {
108: // 52
109: method();
110: // 53
111: }
112: // 54
113: });
114: // 55
115: }
116: // 56
117: }
118: // 57
|