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