You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by dl...@apache.org on 2005/10/28 10:31:54 UTC

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

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)
     {