1
0
mirror of https://github.com/twiglet/cs2j.git synced 2025-01-18 13:15:17 +01:00
2010-08-26 12:13:37 +02:00

109 lines
2.8 KiB
XML
Executable File

<?xml version="1.0" encoding="utf-8"?>
<Class xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="file://C:/Documents%20and%20Settings/kevin.glynn/My%20Documents/CS2JLibrary/Translation.xsd"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<Name>System.Char</Name>
<Java>char</Java>
<Inherits>
<Type>System.IComparable</Type>
<Type>System.IFormattable</Type>
<Type>System.IConvertible</Type>
</Inherits>
<Properties>
<Property>
<Name>MinValue</Name>
<Type>System.Char</Type>
<Get>Character.MIN_VALUE</Get>
</Property>
<Property>
<Name>MaxValue</Name>
<Type>System.Char</Type>
<Get>Character.MAX_VALUE</Get>
</Property>
</Properties>
<Methods>
<Method>
<Return>System.String</Return>
<Name>ToString</Name>
<Java>String.valueOf(${this})</Java>
</Method>
<Method>
<Return>System.Boolean</Return>
<Name>IsDigit</Name>
<Params>
<Param>
<Type>System.Char</Type>
<Name>ch</Name>
</Param>
</Params>
<Java>Character.isDigit(${ch})</Java>
</Method>
<Method>
<Return>System.Boolean</Return>
<Name>IsLetter</Name>
<Params>
<Param>
<Type>System.Char</Type>
<Name>ch</Name>
</Param>
</Params>
<Java>Character.isLetter(${ch})</Java>
</Method>
<Method>
<Return>System.Boolean</Return>
<Name>IsUpper</Name>
<Params>
<Param>
<Type>System.Char</Type>
<Name>ch</Name>
</Param>
</Params>
<Java>Character.isUpperCase(${ch})</Java>
</Method>
<Method>
<Return>System.Boolean</Return>
<Name>IsLower</Name>
<Params>
<Param>
<Type>System.Char</Type>
<Name>ch</Name>
</Param>
</Params>
<Java>Character.isLowerCase(${ch})</Java>
</Method>
<Method>
<Return>System.Boolean</Return>
<Name>IsWhiteSpace</Name>
<Params>
<Param>
<Type>System.Char</Type>
<Name>ch</Name>
</Param>
</Params>
<Java>Character.isWhitespace(${ch})</Java>
</Method>
<Method>
<Return>System.Char</Return>
<Name>ToUpper</Name>
<Params>
<Param>
<Type>System.Char</Type>
<Name>ch</Name>
</Param>
</Params>
<Java>Character.toUpperCase(${ch})</Java>
</Method>
<Method>
<Return>System.Char</Return>
<Name>ToLower</Name>
<Params>
<Param>
<Type>System.Char</Type>
<Name>ch</Name>
</Param>
</Params>
<Java>Character.toLowerCase(${ch})</Java>
</Method>
</Methods>
</Class>