test/tools/javadoc/sourceOption/SourceOption.java

Thu, 25 Aug 2011 17:18:25 -0700

author
schien
date
Thu, 25 Aug 2011 17:18:25 -0700
changeset 1067
f497fac86cf9
parent 554
9d9f26857129
child 2525
2eb010b6cb22
permissions
-rw-r--r--

Added tag jdk8-b02 for changeset b3c059de2a61

jjg@60 1 /*
ohair@554 2 * Copyright (c) 2006, 2008, Oracle and/or its affiliates. All rights reserved.
jjg@60 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
jjg@60 4 *
jjg@60 5 * This code is free software; you can redistribute it and/or modify it
jjg@60 6 * under the terms of the GNU General Public License version 2 only, as
jjg@60 7 * published by the Free Software Foundation.
jjg@60 8 *
jjg@60 9 * This code is distributed in the hope that it will be useful, but WITHOUT
jjg@60 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
jjg@60 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
jjg@60 12 * version 2 for more details (a copy is included in the LICENSE file that
jjg@60 13 * accompanied this code).
jjg@60 14 *
jjg@60 15 * You should have received a copy of the GNU General Public License version
jjg@60 16 * 2 along with this work; if not, write to the Free Software Foundation,
jjg@60 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
jjg@60 18 *
ohair@554 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
ohair@554 20 * or visit www.oracle.com if you need additional information or have any
ohair@554 21 * questions.
jjg@60 22 */
jjg@60 23
jjg@60 24 /*
jjg@60 25 * @test
jjg@60 26 * @bug 6507179
jjg@60 27 * @summary Ensure that "-source" option isn't ignored.
jjg@60 28 * @author Scott Seligman
jjg@60 29 */
jjg@60 30
jjg@60 31 import com.sun.javadoc.*;
jjg@60 32
jjg@60 33 public class SourceOption extends Doclet {
jjg@60 34
jjg@60 35 public static void main(String[] args) {
jjg@60 36 if (com.sun.tools.javadoc.Main.execute(
jjg@60 37 "javadoc",
jjg@60 38 "SourceOption",
jjg@140 39 SourceOption.class.getClassLoader(),
jjg@60 40 new String[] {"-source", "1.3", "p"}) != 0)
jjg@60 41 throw new Error("Javadoc encountered warnings or errors.");
jjg@60 42 }
jjg@60 43
jjg@60 44 public static boolean start(RootDoc root) {
jjg@60 45 root.classes(); // force parser into action
jjg@60 46 return true;
jjg@60 47 }
jjg@60 48 }

mercurial