Return-Path: Delivered-To: apmail-incubator-harmony-commits-archive@www.apache.org Received: (qmail 64228 invoked from network); 28 Oct 2005 08:32:16 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 28 Oct 2005 08:32:16 -0000 Received: (qmail 21800 invoked by uid 500); 28 Oct 2005 08:32:15 -0000 Delivered-To: apmail-incubator-harmony-commits-archive@incubator.apache.org Received: (qmail 21760 invoked by uid 500); 28 Oct 2005 08:32:15 -0000 Mailing-List: contact harmony-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: harmony-dev@incubator.apache.org Delivered-To: mailing list harmony-commits@incubator.apache.org Received: (qmail 21749 invoked by uid 99); 28 Oct 2005 08:32:15 -0000 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.29) with SMTP; Fri, 28 Oct 2005 01:32:15 -0700 Received: (qmail 64098 invoked by uid 65534); 28 Oct 2005 08:31:55 -0000 Message-ID: <20051028083155.64097.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r329155 - in /incubator/harmony/enhanced/trunk/sandbox/contribs/bootjvm/bootJVM/test/src: HelloWorld.java harmony/bootjvm/test/MainArgs.java harmony/bootjvm/test/PkgHelloWorld.java Date: Fri, 28 Oct 2005 08:31:54 -0000 To: harmony-commits@incubator.apache.org From: dlydick@apache.org X-Mailer: svnmailer-1.0.5 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: dlydick Date: Fri Oct 28 01:31:39 2005 New Revision: 329155 URL: http://svn.apache.org/viewcvs?rev=329155&view=rev Log: Added strings to support 'getsvndata.sh', etc. Modified: incubator/harmony/enhanced/trunk/sandbox/contribs/bootjvm/bootJVM/test/src/HelloWorld.java incubator/harmony/enhanced/trunk/sandbox/contribs/bootjvm/bootJVM/test/src/harmony/bootjvm/test/MainArgs.java incubator/harmony/enhanced/trunk/sandbox/contribs/bootjvm/bootJVM/test/src/harmony/bootjvm/test/PkgHelloWorld.java Modified: incubator/harmony/enhanced/trunk/sandbox/contribs/bootjvm/bootJVM/test/src/HelloWorld.java URL: http://svn.apache.org/viewcvs/incubator/harmony/enhanced/trunk/sandbox/contribs/bootjvm/bootJVM/test/src/HelloWorld.java?rev=329155&r1=329154&r2=329155&view=diff ============================================================================== --- incubator/harmony/enhanced/trunk/sandbox/contribs/bootjvm/bootJVM/test/src/HelloWorld.java (original) +++ incubator/harmony/enhanced/trunk/sandbox/contribs/bootjvm/bootJVM/test/src/HelloWorld.java Fri Oct 28 01:31:39 2005 @@ -40,12 +40,20 @@ * */ +import org.apache.harmony.Copyright.*; + /*! * @brief Simple hello world program. * */ public class HelloWorld { + /* Please see 'jvm/include/arch.h' for corresponding 'C' defns */ + private static final String copyright = +"\0$URL$ " + +"$Id$ " + + org.apache.harmony.Copyright.copyrightText; + public static void main(String[] args) { Modified: incubator/harmony/enhanced/trunk/sandbox/contribs/bootjvm/bootJVM/test/src/harmony/bootjvm/test/MainArgs.java URL: http://svn.apache.org/viewcvs/incubator/harmony/enhanced/trunk/sandbox/contribs/bootjvm/bootJVM/test/src/harmony/bootjvm/test/MainArgs.java?rev=329155&r1=329154&r2=329155&view=diff ============================================================================== --- incubator/harmony/enhanced/trunk/sandbox/contribs/bootjvm/bootJVM/test/src/harmony/bootjvm/test/MainArgs.java (original) +++ incubator/harmony/enhanced/trunk/sandbox/contribs/bootjvm/bootJVM/test/src/harmony/bootjvm/test/MainArgs.java Fri Oct 28 01:31:39 2005 @@ -41,12 +41,20 @@ package harmony.bootjvm.test; +import org.apache.harmony.Copyright.*; + /*! * @brief Test ability of main() to recognize args[] array. * */ public class MainArgs { + /* Please see 'jvm/include/arch.h' for corresponding 'C' defns */ + private static final String copyright = +"\0$URL$ " + +"$Id$ " + + org.apache.harmony.Copyright.copyrightText; + public static void main(String[] args) { Modified: incubator/harmony/enhanced/trunk/sandbox/contribs/bootjvm/bootJVM/test/src/harmony/bootjvm/test/PkgHelloWorld.java URL: http://svn.apache.org/viewcvs/incubator/harmony/enhanced/trunk/sandbox/contribs/bootjvm/bootJVM/test/src/harmony/bootjvm/test/PkgHelloWorld.java?rev=329155&r1=329154&r2=329155&view=diff ============================================================================== --- incubator/harmony/enhanced/trunk/sandbox/contribs/bootjvm/bootJVM/test/src/harmony/bootjvm/test/PkgHelloWorld.java (original) +++ incubator/harmony/enhanced/trunk/sandbox/contribs/bootjvm/bootJVM/test/src/harmony/bootjvm/test/PkgHelloWorld.java Fri Oct 28 01:31:39 2005 @@ -42,12 +42,19 @@ package harmony.bootjvm.test; +import org.apache.harmony.Copyright.*; + /*! * @brief Simple hello world program, but in a package. * */ public class PkgHelloWorld { + /* Please see 'jvm/include/arch.h' for corresponding 'C' defns */ + private static final String copyright = +"\0$URL$ " + +"$Id$ " + + org.apache.harmony.Copyright.copyrightText; public static void main(String[] args) {