summaryrefslogtreecommitdiff
path: root/Examples/test-suite/java/doxygen_misc_constructs_runme.java
blob: 7c0928a7a6f7ea6932303e3befbe8eb327e29300 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125

import doxygen_misc_constructs.*;
import com.sun.javadoc.*;
import java.util.HashMap;

public class doxygen_misc_constructs_runme {
  static {
    try {
      System.loadLibrary("doxygen_misc_constructs");
    } catch (UnsatisfiedLinkError e) {
      System.err.println("Native code library failed to load. See the chapter on Dynamic Linking Problems in the SWIG Java documentation for help.\n" + e);
      System.exit(1);
    }
  }
  
  public static void main(String argv[]) 
  {
    /*
      Here we are using internal javadoc tool, it accepts the name of the class as paramterer,
      and calls the start() method of that class with parsed information.
    */
	commentParser parser = new commentParser();
    com.sun.tools.javadoc.Main.execute("doxygen_misc_constructs runtime test",
	"commentParser", new String[]{"-quiet", "doxygen_misc_constructs"});

    HashMap<String, String> wantedComments = new HashMap<String, String>();
    
    wantedComments.put("doxygen_misc_constructs.doxygen_misc_constructs.getConnection()",
    		" \n" +
    		" \n" +
    		" This class manages connection. \n" +
    		" \n" +
    		"");
    wantedComments.put("doxygen_misc_constructs.doxygen_misc_constructs.getAddress(doxygen_misc_constructs.SWIGTYPE_p_int, int)",
    		" Returns address of file line. \n" +
    		" \n" +
    		" @param fileName name of the file, where the source line is located \n" +
    		" @param line line number \n" +
    		" {@link Connection::getId()  }<br> \n" +
    		" \n" +
    		"");
    wantedComments.put("doxygen_misc_constructs.doxygen_misc_constructs.getG_zipCode()",
    		" Tag endlink must be recognized also when it is the last token \n" +
    		" in the commment. \n" +
    		" \n" +
    		" {@link Connection::getId()  }<br> \n" +
    		" {@link debugIdeTraceProfilerCoverageSample.py Python example.  }\n" +
    		" \n" +
    		"");
    wantedComments.put("doxygen_misc_constructs.doxygen_misc_constructs.setG_zipCode(int)",
    		" Tag endlink must be recognized also when it is the last token \n" +
    		" in the commment. \n" +
    		" \n" +
    		" {@link Connection::getId()  }<br> \n" +
    		" {@link debugIdeTraceProfilerCoverageSample.py Python example.  }\n" +
    		" \n" +
    		"");
    wantedComments.put("doxygen_misc_constructs.doxygen_misc_constructs.getG_counter()",
    		" Tag endlink must be recognized also when followed by nonspace charater. \n" +
    		" \n" +
    		" {@link Connection::getId()  }<br> \n" +
    		" \n" +
    		"");
    wantedComments.put("doxygen_misc_constructs.doxygen_misc_constructs.waitTime(int)",
    		" Determines how long the <code>isystem.connect</code> should wait for running \n" +
    		" instances to respond. Only one of <code>lfWaitXXX</code> flags from IConnect::ELaunchFlags \n" +
    		" may be specified. \n" +
    		" \n" +
    		"");
    wantedComments.put("doxygen_misc_constructs.CConnectionConfig",
    		" This class contains information for connection to winIDEA. Its methods \n" +
    		" return reference to self, so we can use it like this: \n" +
    		" <pre> \n" +
    		" CConnectionConfig config = new CConnectionConfig(); \n" +
    		" config.discoveryPort(5534).dllPath(\"C: \\ yWinIDEA \\ onnect.dll\").id(\"main\"); \n" +
    		" </pre> \n" +
    		" \n" +
    		" All parameters are optional. Set only what is required, default values are \n" +
    		" used for unspecified parameters. \n" +
    		" <p> \n" +
    		" \n" +
    		" {@link advancedWinIDEALaunching.py Python example.  }<br> \n" +
    		" \n" +
    		"");
    wantedComments.put("doxygen_misc_constructs.doxygen_misc_constructs.getAddress(doxygen_misc_constructs.SWIGTYPE_p_int, int, boolean)",
    		" Returns address of file line. \n" +
    		" \n" +
    		" @param fileName name of the file, where the source line is located \n" +
    		" @param line line number \n" +
    		" @param isGetSize if set, for every object location both address and size are returned \n" +
    		" \n" +
    		" {@link Connection::getId()  }<br> \n" +
    		" \n" +
    		"");
    wantedComments.put("doxygen_misc_constructs.doxygen_misc_constructs.setG_counter(char)",
    		" Tag endlink must be recognized also when followed by nonspace charater. \n" +
    		" \n" +
    		" {@link Connection::getId()  }<br> \n" +
    		" \n" +
    		"");

    wantedComments.put("doxygen_misc_constructs.ClassWithNestedEnum",
    		" Class description.\n" +
    		" \n");

    wantedComments.put("doxygen_misc_constructs.ClassWithNestedEnum.ENested",
    		" Enum description.\n" +
    		" \n");

    wantedComments.put("doxygen_misc_constructs.ClassWithNestedEnum.ENested.ONE",
    		" desc of one\n" +
    		" \n");

    wantedComments.put("doxygen_misc_constructs.ClassWithNestedEnum.ENested.TWO",
    		" desc of two\n" +
    		" \n");

    wantedComments.put("doxygen_misc_constructs.ClassWithNestedEnum.ENested.THREE",
    		" desc of three\n" +
    		" \n");

    // and ask the parser to check comments for us
    System.exit(parser.check(wantedComments));
  }
}