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:
parent
0d8f99a118
commit
403d42044f
@ -111,7 +111,7 @@
|
|||||||
<Java>${this}.toArray(new ${TYPEOF_expr_TYPE}[0])</Java>
|
<Java>${this}.toArray(new ${TYPEOF_expr_TYPE}[0])</Java>
|
||||||
<Params>
|
<Params>
|
||||||
<Param>
|
<Param>
|
||||||
<Type>System.Object</Type>
|
<Type>System.Type</Type>
|
||||||
<Name>TYPEOF_expr</Name>
|
<Name>TYPEOF_expr</Name>
|
||||||
</Param>
|
</Param>
|
||||||
</Params>
|
</Params>
|
||||||
@ -172,7 +172,7 @@
|
|||||||
<Java>new ArrayList(${collection})</Java>
|
<Java>new ArrayList(${collection})</Java>
|
||||||
<Params>
|
<Params>
|
||||||
<Param>
|
<Param>
|
||||||
<Type>System.ICollection</Type>
|
<Type>System.Collections.ICollection</Type>
|
||||||
<Name>collection</Name>
|
<Name>collection</Name>
|
||||||
</Param>
|
</Param>
|
||||||
</Params>
|
</Params>
|
||||||
|
@ -74,7 +74,7 @@
|
|||||||
<Property>
|
<Property>
|
||||||
<Imports />
|
<Imports />
|
||||||
<Java>${this}.values()</Java>
|
<Java>${this}.values()</Java>
|
||||||
<Type>System.ICollection</Type>
|
<Type>System.Collections.ICollection</Type>
|
||||||
<Name>Values</Name>
|
<Name>Values</Name>
|
||||||
<Get>${this}.values()</Get>
|
<Get>${this}.values()</Get>
|
||||||
<Set>${this}.setValues(${value})</Set>
|
<Set>${this}.setValues(${value})</Set>
|
||||||
|
@ -25,10 +25,10 @@ import RusticiSoftware.System.Xml.XmlWriter;
|
|||||||
|
|
||||||
public interface IXmlSerializable {
|
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;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user