208N/A/*
553N/A * Copyright (c) 2008, 2009, Oracle and/or its affiliates. All rights reserved.
208N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
208N/A *
208N/A * This code is free software; you can redistribute it and/or modify it
208N/A * under the terms of the GNU General Public License version 2 only, as
208N/A * published by the Free Software Foundation.
208N/A *
208N/A * This code is distributed in the hope that it will be useful, but WITHOUT
208N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
208N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
208N/A * version 2 for more details (a copy is included in the LICENSE file that
208N/A * accompanied this code).
208N/A *
208N/A * You should have received a copy of the GNU General Public License version
208N/A * 2 along with this work; if not, write to the Free Software Foundation,
208N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
208N/A *
553N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
553N/A * or visit www.oracle.com if you need additional information or have any
553N/A * questions.
208N/A */
208N/A
208N/Aimport com.sun.javadoc.*;
208N/A
208N/Apublic class X {
208N/A public static boolean start(RootDoc root) {
208N/A System.out.println("X.start");
208N/A return true;
208N/A }
208N/A}