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>
|
||||
<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>
|
||||
|
@ -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>
|
||||
|
@ -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;
|
||||
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user