00001 /*! 00002 * @file PkgHelloWorld.java 00003 * 00004 * @brief Test class for checking if a packaged class can be 00005 * properly processed by the class loader. 00006 * 00007 * 00008 * @section Control 00009 * 00010 * \$URL: https://svn.apache.org/path/name/PkgHelloWorld.java $ \$Id: PkgHelloWorld.java 0 09/28/2005 dlydick $ 00011 * 00012 * Copyright 2005 The Apache Software Foundation 00013 * or its licensors, as applicable. 00014 * 00015 * Licensed under the Apache License, Version 2.0 ("the License"); 00016 * you may not use this file except in compliance with the License. 00017 * You may obtain a copy of the License at 00018 * 00019 * http://www.apache.org/licenses/LICENSE-2.0 00020 * 00021 * Unless required by applicable law or agreed to in writing, 00022 * software distributed under the License is distributed on an 00023 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, 00024 * either express or implied. 00025 * 00026 * See the License for the specific language governing permissions 00027 * and limitations under the License. 00028 * 00029 * @version \$LastChangedRevision: 0 $ 00030 * 00031 * @date \$LastChangedDate: 09/28/2005 $ 00032 * 00033 * @author \$LastChangedBy: dlydick $ 00034 * Original code contributed by Daniel Lydick on 09/28/2005. 00035 * 00036 * @section Reference 00037 * 00038 */ 00039 00040 package harmony.bootjvm.test; 00041 00042 /*! 00043 * @brief Simple hello world program, but in a package. 00044 * 00045 */ 00046 public class PkgHelloWorld 00047 { 00048 00049 public static void main(String[] args) 00050 { 00051 System.out.println("Hello, packaged world!"); 00052 System.exit(7); 00053 } 00054 00055 } /* END of harmony.bootjvm.test.PkgHelloWorld */ 00056 00057 00058 /* EOF */ 00059