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

153 lines
4.2 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.Xml.XmlNode</Name>
<Java>XmlNode</Java>
<Imports>
<Import>RusticiSoftware.System.Xml.XmlNode</Import>
</Imports>
<Inherits>
<Type>System.Object</Type>
</Inherits>
<Constructors>
<Constructor>
<Java>new XmlNode()</Java>
</Constructor>
</Constructors>
<Properties>
<Property>
<Type>System.Xml.XmlAttributeCollection</Type>
<Name>Attributes</Name>
<Get>${this}.getAttributes()</Get>
</Property>
<Property>
<Type>System.Xml.XmlNodeList</Type>
<Name>ChildNodes</Name>
<Get>${this}.getChildNodes()</Get>
</Property>
<Property>
<Type>System.Xml.XmlNode</Type>
<Name>FirstChild</Name>
<Get>${this}.getFirstChild()</Get>
</Property>
<Property>
<Type>System.String</Type>
<Name>InnerText</Name>
<Get>${this}.getInnerText()</Get>
</Property>
<Property>
<Type>System.String</Type>
<Name>InnerXml</Name>
<Get>${this}.getInnerXml()</Get>
<Set>${this}.setInnerXml(${value})</Set>
</Property>
<Property>
<Type>System.String</Type>
<Name>LocalName</Name>
<Get>${this}.getLocalName()</Get>
</Property>
<Property>
<Type>System.String</Type>
<Name>Name</Name>
<Get>${this}.getName()</Get>
</Property>
<Property>
<Type>System.String</Type>
<Name>NamespaceURI</Name>
<Get>${this}.getNamespaceURI()</Get>
</Property>
<Property>
<Type>System.Xml.XmlNode</Type>
<Name>NextSibling</Name>
<Get>${this}.getNextSibling()</Get>
</Property>
<Property>
<Type>System.String</Type>
<Name>OuterXml</Name>
<Get>${this}.getOuterXml()</Get>
</Property>
<Property>
<Type>System.Xml.XmlDocument</Type>
<Name>OwnerDocument</Name>
<Get>${this}.getOwnerDocument()</Get>
</Property>
<Property>
<Type>System.Xml.XmlNode</Type>
<Name>ParentNode</Name>
<Get>${this}.getParentNode()</Get>
</Property>
<Property>
<Type>System.Xml.XmlNodeType</Type>
<Name>NodeType</Name>
<Get>${this}.getNodeType()</Get>
</Property>
</Properties>
<Methods>
<Method>
<Return>System.Xml.XmlNode</Return>
<Name>AppendChild</Name>
<Params>
<Param>
<Type>System.Xml.XmlNode</Type>
<Name>child</Name>
</Param>
</Params>
<Java>${this}.appendChild(${child})</Java>
</Method>
<Method>
<Return>System.Xml.XmlNode</Return>
<Name>InsertBefore</Name>
<Params>
<Param>
<Type>System.Xml.XmlNode</Type>
<Name>newChild</Name>
</Param>
<Param>
<Type>System.Xml.XmlNode</Type>
<Name>refChild</Name>
</Param>
</Params>
<Java>${this}.insertBefore(${newChild}, ${refChild})</Java>
</Method>
<Method>
<Return>System.Xml.XmlNode</Return>
<Name>RemoveChild</Name>
<Params>
<Param>
<Type>System.Xml.XmlNode</Type>
<Name>child</Name>
</Param>
</Params>
<Java>${this}.removeChild(${child})</Java>
</Method>
<Method>
<Return>System.Void</Return>
<Name>RemoveAll</Name>
<Java>${this}.removeAll()</Java>
</Method>
<Method>
<Return>System.Xml.XmlNodeList</Return>
<Name>SelectNodes</Name>
<Params>
<Param>
<Type>System.String</Type>
<Name>xpath</Name>
</Param>
</Params>
<Java>${this}.selectNodes(${xpath})</Java>
</Method>
<Method>
<Return>System.Xml.XmlNode</Return>
<Name>SelectSingleNode</Name>
<Params>
<Param>
<Type>System.String</Type>
<Name>xpath</Name>
</Param>
</Params>
<Java>${this}.selectSingleNode(${xpath})</Java>
</Method>
</Methods>
</Class>