#if !JAVA /* * TreeMap.cs * Copyright (c) 2009 kbinani * * This file is part of bocoree. * * bocoree is free software; you can redistribute it and/or * modify it under the terms of the BSD License. * * bocoree is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. */ //#define DICTIONARY_TEST using System; using System.Collections.Generic; using System.Runtime.Serialization; namespace bocoree.java.util { using boolean = Boolean; public interface Entry { } public interface Map { /// /// マップからマッピングをすべて削除します (任意のオペレーション)。 /// void clear(); /// /// マップが指定のキーのマッピングを保持する場合に true を返します。 /// /// /// boolean containsKey( Object key ); /// /// マップが 1 つまたは複数のキーと指定された値をマッピングしている場合に true を返します。 /// /// /// boolean containsValue( Object value ); /// /// このマップに含まれるマップの Set ビューを返します。 /// /// Set> entrySet(); /// /// 指定されたオブジェクトがこのマップと等しいかどうかを比較します。 /// /// /// boolean equals( Object o ); /// /// 指定されたキーがマップされている値を返します。 /// /// /// V get( Object key ); /// /// マップのハッシュコード値を返します。 /// /// int hashCode(); /// /// マップがキーと値のマッピングを保持しない場合に true を返します。 } /// /// boolean isEmpty(); } public interface Set { /// /// 指定された要素がセット内になかった場合、セットに追加します (任意のオペレーション)。 /// /// /// boolean add( E e ); /// /// 指定されたコレクションのすべての要素について、その要素がこのセット内にない場合、セットに追加します (任意のオペレーション)。 /// /// /// boolean addAll( Collection c ); /// /// セットからすべての要素を削除します (任意のオペレーション)。 /// void clear(); /// /// セットが、指定された要素を保持している場合に true を返します。 /// /// /// boolean contains( Object o ); /// /// 指定されたコレクションのすべての要素がセット内にある場合に true を返します。 /// /// /// boolean containsAll( Collection c ); /// /// 指定されたオブジェクトがセットと同じかどうかを比較します。 /// /// /// boolean equals( Object o ); /// /// セットのハッシュコード値を返します。 /// /// int hashCode(); /// /// セットが要素を 1 つも保持していない場合に true を返します。 /// /// boolean isEmpty(); /// /// セット内の各要素についての反復子を返します。 /// /// Iterator iterator(); /// /// 指定された要素がセット内にあった場合、セットから削除します (任意のオペレーション)。 /// /// /// boolean remove( Object o ); /// /// このセットから、指定されたコレクションに含まれる要素をすべて削除します (任意のオペレーション)。 /// /// /// boolean removeAll( Collection c ); /// /// セット内の要素のうち、指定されたコレクション内にある要素だけを保持します (任意のオペレーション)。 /// /// /// boolean retainAll( Collection c ); /// /// セット内の要素数 (そのカーディナリティ) を返します。 /// /// int size(); /// /// セット内のすべての要素が格納されている配列を返します。 /// /// Object[] toArray(); /// /// セット内のすべての要素を格納している配列を返します。 /// /// T[] toArray( T[] a ); } public interface Collection { } /*class TreeMapItem : Entry { public K key; public V value; public TreeMapItem( K k, V v ) { key = k; value = v; } } class TreeMapItemSet : Set> { private TreeMap m_dict; public TreeMapItemSet( TreeMap item ) { m_dict = item; } public T[] toArray( T[] arr ) { if ( typeof( T ) == typeof( Entry ) ) { int c = size(); TreeMapItem[] items = new TreeMapItem[c]; int i = 0; foreach ( K key in m_dict.Keys ) { items[i] = new TreeMapItem( key, m_dict[key] ); i++; } return (T[])(object)items; } else { return null; } } public Object[] toArray() { } public int size() { return m_dict.Count; } public bool retainAll( Collection> v ) { } public bool removeAll( Collection> v ) { } public bool remove( Object obj ) { } public Iterator iterator() { } public bool isEmpty() { return m_dict.Count <= 0; } public int hashCode() { return m_dict.hashCode(); } public bool equals( Object obj ) { return m_dict.equals( obj ); } public bool contains( Object obj ) { } public void clear() { m_dict.clear(); } public bool containsAll( Collection> v ) { } public bool addAll( Collection> v ) { } public bool add( Entry v ) { } }*/ [Serializable] #if DICTIONARY_TEST public class TreeMap { public V remove( Object key ) { return default( V ); } public Vector keySet() { return null; } public V get( K key ) { return default( V ); } public V put( K key, V value ) { return default( V ); } public bool containsKey( Object key ) { return false; } public void clear() { } public int size() { return 0; } } #else public class TreeMap : SortedDictionary/*, Map*/ { public TreeMap() : base() { } /*protected TreeMap( SerializationInfo info, StreamingContext context ) : base( info, context ) { }*/ public K lastKey() { if ( base.Count <= 0 ) { throw new ApplicationException( "NoSuchElementException" ); } else { K v = default( K ); foreach ( K key in base.Keys ) { v = key; } return v; } } public K firstKey() { if ( base.Count <= 0 ) { throw new ApplicationException( "NoSuchElementException" ); } else { foreach ( K key in base.Keys ) { return key; } throw new ApplicationException( "NoSuchElementException" ); } } public V remove( Object key ) { K k = (K)key; if ( base.ContainsKey( k ) ) { V old = base[k]; base.Remove( k ); return old; } else { base.Remove( k ); return default( V ); } } public Vector keySet() { return new Vector( base.Keys ); } public V get( Object key ) { return base[(K)key]; } public int size() { return base.Count; } public bool containsKey( Object key ) { return base.ContainsKey( (K)key ); } public bool containsValue( Object value ) { return base.ContainsValue( (V)value ); } public bool equals( Object obj ) { return base.Equals( obj ); } public void clear() { base.Clear(); } /*public Set> entrySet() { return new TreeMapItemSet( this ); }*/ public bool isEmpty() { return base.Count <= 0; } public int hashCode() { return base.GetHashCode(); } public V put( K key, V value ) { if ( base.ContainsKey( key ) ) { V old = base[key]; base[key] = value; return old; } else { base.Add( key, value ); return default( V ); } } } #endif } #endif