1
0
mirror of https://github.com/twiglet/cs2j.git synced 2025-01-18 13:15:17 +01:00

fix some broken translations

This commit is contained in:
Kevin Glynn 2011-01-28 17:17:34 +01:00
parent 0d8f99a118
commit 403d42044f
3 changed files with 6 additions and 6 deletions

View File

@ -111,7 +111,7 @@
<Java>${this}.toArray(new ${TYPEOF_expr_TYPE}[0])</Java>
<Params>
<Param>
<Type>System.Object</Type>
<Type>System.Type</Type>
<Name>TYPEOF_expr</Name>
</Param>
</Params>
@ -172,7 +172,7 @@
<Java>new ArrayList(${collection})</Java>
<Params>
<Param>
<Type>System.ICollection</Type>
<Type>System.Collections.ICollection</Type>
<Name>collection</Name>
</Param>
</Params>

View File

@ -74,7 +74,7 @@
<Property>
<Imports />
<Java>${this}.values()</Java>
<Type>System.ICollection</Type>
<Type>System.Collections.ICollection</Type>
<Name>Values</Name>
<Get>${this}.values()</Get>
<Set>${this}.setValues(${value})</Set>

View File

@ -25,10 +25,10 @@ import RusticiSoftware.System.Xml.XmlWriter;
public interface IXmlSerializable {
public Object GetSchema() throws Exception;
public Object GetSchema() throws Throwable;
public void ReadXml(XmlReader reader) throws Exception;
public void ReadXml(XmlReader reader) throws Throwable;
public void WriteXml(XmlWriter writer) throws Exception;
public void WriteXml(XmlWriter writer) throws Throwable;
}