src/share/classes/com/sun/tools/javadoc/DocletInvoker.java

changeset 912
5e6c661891da
parent 798
4868a36f6fd8
child 1116
d830d28fc72e
equal deleted inserted replaced
911:4ee7de0684f5 912:5e6c661891da
1 /* 1 /*
2 * Copyright (c) 1998, 2010, Oracle and/or its affiliates. All rights reserved. 2 * Copyright (c) 1998, 2011, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 * 4 *
5 * This code is free software; you can redistribute it and/or modify it 5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as 6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation. Oracle designates this 7 * published by the Free Software Foundation. Oracle designates this
29 29
30 import static com.sun.javadoc.LanguageVersion.*; 30 import static com.sun.javadoc.LanguageVersion.*;
31 31
32 import com.sun.tools.javac.util.List; 32 import com.sun.tools.javac.util.List;
33 33
34 import java.net.*; 34 import java.io.File;
35 import java.lang.reflect.Method; 35 import java.lang.reflect.Method;
36 import java.lang.reflect.Modifier; 36 import java.lang.reflect.Modifier;
37 import java.lang.reflect.InvocationTargetException; 37 import java.lang.reflect.InvocationTargetException;
38 38 import java.net.URL;
39 import java.io.File; 39 import java.net.URLClassLoader;
40 import java.io.IOException; 40
41 import java.util.StringTokenizer;
42 41
43 /** 42 /**
44 * Class creates, controls and invokes doclets. 43 * Class creates, controls and invokes doclets.
45 * @author Neal Gafter (rewrite) 44 * @author Neal Gafter (rewrite)
46 */ 45 */

mercurial