X.java revision 3233:b5d08bc0d224
110015Speter/*
210015Speter * Copyright (c) 2008, 2015, Oracle and/or its affiliates. All rights reserved.
310015Speter * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
410015Speter *
510015Speter * This code is free software; you can redistribute it and/or modify it
610015Speter * under the terms of the GNU General Public License version 2 only, as
710015Speter * published by the Free Software Foundation.
810015Speter *
910015Speter * This code is distributed in the hope that it will be useful, but WITHOUT
1010015Speter * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
1110015Speter * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
1210015Speter * version 2 for more details (a copy is included in the LICENSE file that
1310015Speter * accompanied this code).
1410015Speter *
1510015Speter * You should have received a copy of the GNU General Public License version
1610015Speter * 2 along with this work; if not, write to the Free Software Foundation,
1710015Speter * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
1810015Speter *
1910015Speter * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2010015Speter * or visit www.oracle.com if you need additional information or have any
2110015Speter * questions.
2210015Speter */
2310015Speter
2410015Speterimport java.util.Collections;
2510015Speterimport java.util.Locale;
2610015Speterimport java.util.Set;
2710015Speter
2810015Speterimport jdk.javadoc.doclet.Doclet;
2910015Speterimport jdk.javadoc.doclet.Reporter;
3010015Speterimport jdk.javadoc.doclet.DocletEnvironment;
3110015Speter
3210015Speterpublic class X {
3310161Speter    public static boolean run(DocletEnvironment root) {
3410015Speter        System.out.println("X.start");
3510015Speter        return true;
3610015Speter    }
3710015Speter    public Set<Doclet.Option> getSupportedOptions() {
3810015Speter        return Collections.emptySet();
3910015Speter    }
4010015Speter
4110015Speter    public void init(Locale locale, Reporter reporter) {
4210015Speter        return;
4310015Speter    }
4410015Speter}
4510015Speter