|
From: <ls...@us...> - 2007-06-10 19:44:28
|
Revision: 3244
http://jnode.svn.sourceforge.net/jnode/?rev=3244&view=rev
Author: lsantha
Date: 2007-06-10 12:44:27 -0700 (Sun, 10 Jun 2007)
Log Message:
-----------
Workaround for javac version resource.
Added Paths:
-----------
trunk/core/src/openjdk/vm/com/
trunk/core/src/openjdk/vm/com/sun/
trunk/core/src/openjdk/vm/com/sun/tools/
trunk/core/src/openjdk/vm/com/sun/tools/javac/
trunk/core/src/openjdk/vm/com/sun/tools/javac/resources/
trunk/core/src/openjdk/vm/com/sun/tools/javac/resources/version.java
Added: trunk/core/src/openjdk/vm/com/sun/tools/javac/resources/version.java
===================================================================
--- trunk/core/src/openjdk/vm/com/sun/tools/javac/resources/version.java (rev 0)
+++ trunk/core/src/openjdk/vm/com/sun/tools/javac/resources/version.java 2007-06-10 19:44:27 UTC (rev 3244)
@@ -0,0 +1,18 @@
+/*
+ * $Id$
+ */
+package com.sun.tools.javac.resources;
+
+import java.util.ListResourceBundle;
+
+public final class version extends ListResourceBundle {
+ private static final Object[][] contents = {
+ { "jdk", "$(JDK_VERSION)" },
+ { "full", "$(FULL_VERSION)" },
+ { "release", "$(RELEASE)" },
+ };
+
+ protected final Object[][] getContents() {
+ return contents;
+ }
+}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|