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:34:53 UTC

svn commit: r329156 - in /incubator/harmony/enhanced/trunk/sandbox/contribs/bootjvm/bootJVM: jvm/include/arch.h jvm/src/arch.h org/ org/apache/ org/apache/harmony/ org/apache/harmony/Copyright.java

Author: dlydick
Date: Fri Oct 28 01:34:30 2005
New Revision: 329156

URL: http://svn.apache.org/viewcvs?rev=329156&view=rev
Log:
Added strings to support 'getsvndata.sh', etc.

Added:
    incubator/harmony/enhanced/trunk/sandbox/contribs/bootjvm/bootJVM/jvm/include/arch.h
      - copied unchanged from r326484, incubator/harmony/enhanced/trunk/sandbox/contribs/bootjvm/bootJVM/jvm/src/arch.h
    incubator/harmony/enhanced/trunk/sandbox/contribs/bootjvm/bootJVM/org/
    incubator/harmony/enhanced/trunk/sandbox/contribs/bootjvm/bootJVM/org/apache/
    incubator/harmony/enhanced/trunk/sandbox/contribs/bootjvm/bootJVM/org/apache/harmony/
    incubator/harmony/enhanced/trunk/sandbox/contribs/bootjvm/bootJVM/org/apache/harmony/Copyright.java
Removed:
    incubator/harmony/enhanced/trunk/sandbox/contribs/bootjvm/bootJVM/jvm/src/arch.h

Added: incubator/harmony/enhanced/trunk/sandbox/contribs/bootjvm/bootJVM/org/apache/harmony/Copyright.java
URL: http://svn.apache.org/viewcvs/incubator/harmony/enhanced/trunk/sandbox/contribs/bootjvm/bootJVM/org/apache/harmony/Copyright.java?rev=329156&view=auto
==============================================================================
--- incubator/harmony/enhanced/trunk/sandbox/contribs/bootjvm/bootJVM/org/apache/harmony/Copyright.java (added)
+++ incubator/harmony/enhanced/trunk/sandbox/contribs/bootjvm/bootJVM/org/apache/harmony/Copyright.java Fri Oct 28 01:34:30 2005
@@ -0,0 +1,71 @@
+/*!
+ * @file Copyright.java
+ *
+ * @brief Copyright text for Apache Harmony project.
+ *
+ * Contains the copyright text needed for all Java programs.
+ *
+ *
+ * @section Control
+ *
+ * \$URL: https://svn.apache.org/repos/asf/incubator/harmony/enhanced/trunk/sandbox/contribs/bootjvm/bootJVM/org/apache/harmony/Copyright.java $
+ *
+ * \$Id: Copyright.java 326505 2005-10-19 09:35:33Z dlydick $
+ *
+ * Copyright 2005 The Apache Software Foundation
+ * or its licensors, as applicable.
+ *
+ * Licensed under the Apache License, Version 2.0 ("the License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
+ * either express or implied.
+ *
+ * See the License for the specific language governing permissions
+ * and limitations under the License.
+ *
+ * @version \$LastChangedRevision: 326505 $
+ *
+ * @date \$LastChangedDate: 2005-10-19 04:35:33 -0500 (Wed, 19 Oct 2005) $
+ *
+ * @author Apache Software Foundation \$LastChangedBy: dlydick $
+ *
+ * @section Reference
+ *
+ */
+package org.apache.harmony;
+
+/*!
+ * @brief Copyright message for this file @e itself, meaningless
+ * outside of the context of this file.
+ *
+ */
+class localPackageVisibleCopyright
+{
+    static final String copyright =
+"\0$URL: https://svn.apache.org/repos/asf/incubator/harmony/enhanced/trunk/sandbox/contribs/bootjvm/bootJVM/org/apache/harmony/Copyright.java $ " +
+"$Id: Copyright.java 326505 2005-10-19 09:35:33Z dlydick $ " +
+        Copyright.copyrightText;
+
+} /* END of localPackageVisibleCopyright */
+
+
+/*!
+ * @brief Copyright text, Java edition
+ *
+ */
+public interface Copyright
+{
+    public static final String copyrightText =
+"Copyright 2005 The Apache Software Foundation or its licensors, as applicable.";
+
+
+} /* END of Copyright */
+
+
+/* EOF */