This commit is contained in:
jfrijters 2005-05-13 11:41:32 +00:00
Родитель 69c0e68de3
Коммит 61f2aed901
11 изменённых файлов: 3203 добавлений и 3199 удалений

Просмотреть файл

@ -49,7 +49,7 @@ using System.Runtime.CompilerServices;
// You can specify all the values or you can default the Revision and Build Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("0.14.0.1")]
[assembly: AssemblyVersion("0.15.*")]
//
// In order to sign your assembly you must specify a key to use. Refer to the

Разница между файлами не показана из-за своего большого размера Загрузить разницу

Просмотреть файл

@ -1,6 +1,6 @@
<?xml version="1.0"?>
<project name="IKVM.GNU.Classpath.dll" default="IKVM.GNU.Classpath.dll">
<property name="Classpath.dir" value="${nant.project.basedir}/../../classpath-0.15" />
<property name="Classpath.dir" value="${nant.project.basedir}/../../classpath" />
<property name="pathsep" value=":" />
<property overwrite="false" name="signoption" value="" />
<property name="jikes.compiler" value="true" />
@ -37,7 +37,7 @@
</target>
<target name="IKVM.GNU.Classpath.dll" depends="classes">
<exec program="${nant.project.basedir}/../bin/ikvmc.exe" useruntimeengine="true" commandline="-version:0.14.0.1 ${signoption} -opt:fields -out:IKVM.GNU.Classpath.dll -remap:map.xml -exclude:exclude.lst -target:library -recurse:./*.class -recurse:${Classpath.dir}/*.class -recurse:${Classpath.dir}/resource/*.properties mscorlib.jar System.jar System.Xml.jar -resource:lib/security/classpath.security=classpath.security" />
<exec program="${nant.project.basedir}/../bin/ikvmc.exe" useruntimeengine="true" commandline="-version:0.15.* ${signoption} -opt:fields -out:IKVM.GNU.Classpath.dll -remap:map.xml -exclude:exclude.lst -target:library -recurse:./*.class -recurse:${Classpath.dir}/*.class -recurse:${Classpath.dir}/resource/*.properties mscorlib.jar System.jar System.Xml.jar -resource:lib/security/classpath.security=classpath.security" />
<copy file="IKVM.GNU.Classpath.dll" tofile="../bin/IKVM.GNU.Classpath.dll.new" />
<if propertytrue="nant.platform.win32">
<call target="peverify-classpath"/>

Просмотреть файл

@ -45,7 +45,7 @@ public interface Configuration
{
// TODO
String CLASSPATH_HOME = "";
String CLASSPATH_VERSION = "0.15";
String CLASSPATH_VERSION = "0.15+cvs";
/**

Просмотреть файл

@ -205,7 +205,9 @@ public final class Constructor
public String toString()
{
StringBuffer sb = new StringBuffer();
Modifier.toString(getModifiers(), sb).append(' ');
Modifier.toString(getModifiers(), sb);
if (sb.length() > 0)
sb.append(' ');
sb.append(getDeclaringClass().getName()).append('(');
Class[] c = getParameterTypes();
if (c.length > 0)

Просмотреть файл

@ -251,7 +251,9 @@ public final class Method extends AccessibleObject implements Member
public String toString()
{
StringBuffer sb = new StringBuffer();
Modifier.toString(getModifiers(), sb).append(' ');
Modifier.toString(getModifiers(), sb);
if (sb.length() > 0)
sb.append(' ');
classToString(sb, getReturnType());
sb.append(' ');
sb.append(getDeclaringClass().getName()).append('.');

Просмотреть файл

@ -49,7 +49,7 @@ using System.Runtime.CompilerServices;
// You can specify all the values or you can default the Revision and Build Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("0.14.0.1")]
[assembly: AssemblyVersion("0.15.*")]
//
// In order to sign your assembly you must specify a key to use. Refer to the

Просмотреть файл

@ -49,7 +49,7 @@ using System.Runtime.CompilerServices;
// You can specify all the values or you can default the Revision and Build Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("0.14.0.1")]
[assembly: AssemblyVersion("0.15.*")]
//
// In order to sign your assembly you must specify a key to use. Refer to the

Просмотреть файл

@ -49,7 +49,7 @@ using System.Runtime.CompilerServices;
// You can specify all the values or you can default the Revision and Build Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("0.14.0.1")]
[assembly: AssemblyVersion("0.15.*")]
//
// In order to sign your assembly you must specify a key to use. Refer to the

Просмотреть файл

@ -23,7 +23,7 @@
*/
.assembly JVM
{
.ver 0:14:0:1
.ver 0:15:0:0
}
.module JVM.DLL

Просмотреть файл

@ -30,7 +30,7 @@ using System.Runtime.CompilerServices;
// associated with an assembly.
//
[assembly: AssemblyTitle("IKVM.NET")]
[assembly: AssemblyDescription("JVM for .NET")]
[assembly: AssemblyDescription("JVM for Mono and .NET")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("IKVM.NET")]
@ -49,7 +49,7 @@ using System.Runtime.CompilerServices;
// You can specify all the values or you can default the Revision and Build Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("0.14.0.1")]
[assembly: AssemblyVersion("0.15.*")]
//
// In order to sign your assembly you must specify a key to use. Refer to the