mirror of
https://github.com/twiglet/cs2j.git
synced 2025-01-18 13:15:17 +01:00
127 lines
3.5 KiB
XML
Executable File
127 lines
3.5 KiB
XML
Executable File
<?xml version="1.0" encoding="utf-8"?>
|
|
<Class xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:noNamespaceSchemaLocation="../Translation.xsd"
|
|
>
|
|
<!-- <Class xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:noNamespaceSchemaLocation="file://C:/Documents%20and%20Settings/kevin.glynn/My%20Documents/CS2JLibrary/Translation.xsd"
|
|
> -->
|
|
<Name>System.Console</Name>
|
|
<Properties>
|
|
<Property>
|
|
<Type>System.IO.TextWriter</Type>
|
|
<Name>Out</Name>
|
|
<Get>System.out</Get>
|
|
</Property>
|
|
</Properties>
|
|
<Methods>
|
|
<Method>
|
|
<Return>System.Void</Return>
|
|
<Name>Write</Name>
|
|
<Params>
|
|
<Param>
|
|
<Type>System.Object</Type>
|
|
<Name>arg</Name>
|
|
</Param>
|
|
</Params>
|
|
<Java>System.out.print(${arg})</Java>
|
|
</Method>
|
|
<Method>
|
|
<Return>System.Void</Return>
|
|
<Name>Write</Name>
|
|
<Params>
|
|
<Param>
|
|
<Type>System.String</Type>
|
|
<Name>fmt</Name>
|
|
</Param>
|
|
<Param>
|
|
<Type>System.Object</Type>
|
|
<Name>arg</Name>
|
|
</Param>
|
|
</Params>
|
|
<Imports>
|
|
<Import>RusticiSoftware.System.*</Import>
|
|
</Imports>
|
|
<Java>System.out.printf(ConsoleSupport.CSFmtStrToJFmtStr(${fmt}), ${arg})</Java>
|
|
</Method>
|
|
<Method>
|
|
<Return>System.Void</Return>
|
|
<Name>Write</Name>
|
|
<Params>
|
|
<Param>
|
|
<Type>System.String</Type>
|
|
<Name>fmt</Name>
|
|
</Param>
|
|
<Param>
|
|
<Type>System.Object</Type>
|
|
<Name>arg1</Name>
|
|
</Param>
|
|
<Param>
|
|
<Type>System.Object</Type>
|
|
<Name>arg2</Name>
|
|
</Param>
|
|
</Params>
|
|
<Imports>
|
|
<Import>RusticiSoftware.System.*</Import>
|
|
</Imports>
|
|
<Java>System.out.printf(ConsoleSupport.CSFmtStrToJFmtStr(${fmt}), ${arg1}, ${arg2})</Java>
|
|
</Method>
|
|
<Method>
|
|
<Return>System.Void</Return>
|
|
<Name>WriteLine</Name>
|
|
<Params>
|
|
</Params>
|
|
<Java>System.out.println()</Java>
|
|
</Method>
|
|
<Method>
|
|
<Return>System.Void</Return>
|
|
<Name>WriteLine</Name>
|
|
<Params>
|
|
<Param>
|
|
<Type>System.Object</Type>
|
|
<Name>arg</Name>
|
|
</Param>
|
|
</Params>
|
|
<Java>System.out.println(${arg})</Java>
|
|
</Method>
|
|
<Method>
|
|
<Return>System.Void</Return>
|
|
<Name>WriteLine</Name>
|
|
<Params>
|
|
<Param>
|
|
<Type>System.String</Type>
|
|
<Name>fmt</Name>
|
|
</Param>
|
|
<Param>
|
|
<Type>System.Object</Type>
|
|
<Name>arg</Name>
|
|
</Param>
|
|
</Params>
|
|
<Imports>
|
|
<Import>RusticiSoftware.System.*</Import>
|
|
</Imports>
|
|
<Java>System.out.printf(ConsoleSupport.CSFmtStrToJFmtStr(${fmt}) + "\\n", ${arg})</Java>
|
|
</Method>
|
|
<Method>
|
|
<Return>System.Void</Return>
|
|
<Name>WriteLine</Name>
|
|
<Params>
|
|
<Param>
|
|
<Type>System.String</Type>
|
|
<Name>fmt</Name>
|
|
</Param>
|
|
<Param>
|
|
<Type>System.Object</Type>
|
|
<Name>arg1</Name>
|
|
</Param>
|
|
<Param>
|
|
<Type>System.Object</Type>
|
|
<Name>arg2</Name>
|
|
</Param>
|
|
</Params>
|
|
<Imports>
|
|
<Import>RusticiSoftware.System.*</Import>
|
|
</Imports>
|
|
<Java>System.out.printf(ConsoleSupport.CSFmtStrToJFmtStr(${fmt}) + "\\n", ${arg1}, ${arg2})</Java>
|
|
</Method>
|
|
</Methods>
|
|
</Class> |