mirror of
https://git.femboyfinancial.jp/james/lipsync.git
synced 2024-11-22 10:42:03 -08:00
9de5d2e51e
git-svn-id: http://svn.sourceforge.jp/svnroot/lipsync@18 b1f601f4-4f45-0410-8980-aecacb008692
92 lines
1.9 KiB
C#
92 lines
1.9 KiB
C#
/*
|
|
* ValuePair.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.
|
|
*/
|
|
#if JAVA
|
|
package org.kbinani;
|
|
#else
|
|
using System;
|
|
|
|
namespace bocoree {
|
|
#endif
|
|
|
|
#if JAVA
|
|
public class ValuePair<K extends Comparable<K>, V> implements Comparable<ValuePair<K, V>>{
|
|
#else
|
|
public class ValuePair<K, V> : IComparable<ValuePair<K, V>> where K : IComparable {
|
|
#endif
|
|
private K m_key;
|
|
private V m_value;
|
|
|
|
public ValuePair() {
|
|
}
|
|
|
|
public ValuePair( K key_, V value_ ) {
|
|
m_key = key_;
|
|
m_value = value_;
|
|
}
|
|
|
|
public int compareTo( ValuePair<K, V> item ) {
|
|
#if JAVA
|
|
return m_key.compareTo( item.m_key );
|
|
#else
|
|
return m_key.CompareTo( item.m_key );
|
|
#endif
|
|
}
|
|
|
|
#if !JAVA
|
|
public int CompareTo( ValuePair<K, V> item ){
|
|
return compareTo( item );
|
|
}
|
|
#endif
|
|
|
|
public K getKey() {
|
|
return m_key;
|
|
}
|
|
|
|
public void setKey( K value ) {
|
|
m_key = value;
|
|
}
|
|
|
|
public V getValue() {
|
|
return m_value;
|
|
}
|
|
|
|
public void setValue( V v ) {
|
|
m_value = v;
|
|
}
|
|
|
|
#if !JAVA
|
|
public K Key {
|
|
get {
|
|
return getKey();
|
|
}
|
|
set {
|
|
setKey( value );
|
|
}
|
|
}
|
|
|
|
public V Value {
|
|
get {
|
|
return getValue();
|
|
}
|
|
set {
|
|
setValue( value );
|
|
}
|
|
}
|
|
#endif
|
|
}
|
|
|
|
#if !JAVA
|
|
}
|
|
#endif
|