1 
2 import doxygen_alias.*;
3 import java.util.HashMap;
4 
5 public class doxygen_alias_runme {
6   static {
7     try {
8       System.loadLibrary("doxygen_alias");
9     } catch (UnsatisfiedLinkError e) {
10       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);
11       System.exit(1);
12     }
13   }
14 
main(String argv[])15   public static void main(String argv[])
16   {
17     CommentParser.parse("doxygen_alias");
18 
19     HashMap<String, String> wantedComments = new HashMap<String, String>();
20     wantedComments.put("doxygen_alias.doxygen_alias.make_something()",
21       "     A function returning something.<br>\n" +
22       " <br>\n" +
23       "     @return A new object which may be null.\n" +
24       "");
25 
26     System.exit(CommentParser.check(wantedComments));
27   }
28 }
29