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

134 lines
3.9 KiB
XML
Raw Normal View History

2011-04-13 14:48:49 +02:00
<?xml version="1.0" encoding="utf-8"?>
2011-03-02 21:42:53 +01:00
<!--
This file is
Copyright 2007,2008,2009,2010 Rustici Software, LLC
2011-03-22 08:50:05 +01:00
Copyright 2010,2011 Kevin Glynn (kevin.glynn@twigletsoftware.com)
2011-03-02 21:42:53 +01:00
-->
<Class xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="urn:www.twigletsoftware.com:schemas:txtemplate:1:0">
<Imports>
<Import>java.util.HashMap</Import>
</Imports>
<Java>HashMap*[${K},${V}]*</Java>
<Name>System.Collections.Generic.Dictionary</Name>
<TypeParams>
<Name>K</Name>
<Name>V</Name>
</TypeParams>
<Uses />
<Inherits>
2011-04-13 14:48:49 +02:00
<Type>System.Collections.Generic.IDictionary*[K,V]*</Type>
2011-03-02 21:42:53 +01:00
<!-- <Type>IList<T>, ICollection<T>,
IEnumerable<T>, IList, ICollection, IEnumerable</Type> -->
</Inherits>
<Iterable>
<ElementType>KeyValuePair*[K,V]*</ElementType>
<Java>${expr}.entrySet()</Java>
</Iterable>
<Methods>
<Method>
<Imports />
<Java>${this:16}.put(${key}, ${value})</Java>
<Params>
<Param>
<Type>K</Type>
<Name>key</Name>
</Param>
<Param>
<Type>V</Type>
<Name>value</Name>
</Param>
</Params>
<Name>Add</Name>
<Return>System.Void</Return>
</Method>
<Method>
<Imports />
<Java>${this:16}.clear()</Java>
<Params />
<Name>Clear</Name>
<Return>System.Void</Return>
</Method>
<Method>
<Imports />
<Java>${this:16}.containsKey(${key})</Java>
<Params>
<Param>
<Type>K</Type>
<Name>key</Name>
</Param>
</Params>
<Name>ContainsKey</Name>
<Return>System.Boolean</Return>
</Method>
<Method>
<Imports />
<Java>${this:16}.containsValue(${value})</Java>
<Params>
<Param>
<Type>V</Type>
<Name>value</Name>
</Param>
</Params>
<Name>ContainsValue</Name>
<Return>System.Boolean</Return>
</Method>
<Method>
<Imports />
<Java>${this:16}.remove(${key})</Java>
<Params>
<Param>
<Type>System.Object</Type>
<Name>key</Name>
</Param>
</Params>
<Name>Remove</Name>
<!-- in java actually returns the value removed -->
<Return>System.Boolean</Return>
</Method>
</Methods>
<Properties>
<Property>
<Imports />
<Java>${this:16}.size()</Java>
<Type>System.Int32</Type>
<Name>Count</Name>
<Get>${this:16}.size()</Get>
</Property>
2011-03-11 11:07:41 +01:00
<Property>
<Imports />
<Type>System.Collections.Generic.KeyCollection*[K]*</Type>
<Name>Keys</Name>
<Get>${this:16}.keySet()</Get>
</Property>
2011-03-02 21:42:53 +01:00
</Properties>
<Events />
<Indexers>
<Indexer>
<Imports />
<Params>
<Param>
<Type>System.Object</Type>
<Name>key</Name>
</Param>
</Params>
<Type>V</Type>
<Get>${this:16}.get(${key})</Get>
<Set>${this:16}.put(${key}, ${value})</Set>
</Indexer>
</Indexers>
<Constructors>
<Constructor>
<Imports />
<Java>new HashMap*[${K},${V}]*()</Java>
<Params />
</Constructor>
</Constructors>
<Fields />
<Casts />
<UnaryOps />
<BinaryOps />
2011-03-18 17:40:02 +01:00
<Signature xmlns="http://www.w3.org/2000/09/xmldsig#"><SignedInfo><CanonicalizationMethod Algorithm="http://www.w3.org/TR/2001/REC-xml-c14n-20010315" /><SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha1" /><Reference URI=""><Transforms><Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature" /></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" /><DigestValue>ML6jbIZs/ik4yWfziynQvP4LtCU=</DigestValue></Reference></SignedInfo><SignatureValue>E9VFCuB/ZJDhNyfkNNuxFaWnabSU1QpeJDrHMAM6waIvI86niOzp8kXbkDGG+354nT2qwPJogqtEHWwXVidin2b+aIWnaHx1p2u0BGrmovE5Ws6ffHFftdw0TNe2jXRU6GBDh6Y3tFoBJKQeNOapU/PPo1k6+BqbL7LSNfzxOX4=</SignatureValue></Signature></Class>